-
使用@ConfigurationProperties(prefix="gril")注解,可以把配置文件中gril对应的配置注入进来。
同时也要在GirlProperties类上加上@Component注解,这样GirlProperties类才能纳入spring IOC容器的管理之中。
查看全部 -
在配置文件中直接引用配置文件中定义的量
查看全部 -
使用@Value注解可以注入在配置文件配置的值
语法格式
@Value(${param})
查看全部 -
application.yml
yml格式的配置文件,比propertie格式的配置文件,内容更简洁。
推荐使用 yml格式的配置文件!
查看全部 -
server.context-path=/gril
加入该配置,则项目访问url在端口号后面增加 /gril
查看全部 -
另一种启动程序的方式
mvn install
java -jar girl-0.0.1-SNAPSHOT.jar
查看全部 -
mvn spring-boot:run
查看全部 -
在非window系统下删除 .mvn 文件、mvnw文件以及 mvnw.cmd文件
查看全部 -
# @RequestParam
@RequestMapping(value ="/say",method = RequestMethod.GET)
public String say(@RequestParam(value = "id",required = false,defaultValue = "0") Integer myId){查看全部 -
#@PathVariable 作用
@RequestMapping(value ="/say/{id}",method = RequestMethod.GET)
public String say(@PathVariable("id") Integer id){查看全部 -
# URL注解
查看全部 -
# 使用{ }集合
@RequestMapping(value ={"/hello","/hi"}
# @RequestMapping("/hello")
叠加URL效果
查看全部 -
@Controller+@ResponseBody = @RestController
查看全部 -
@RequestMapping通过URL访问到我们写的方法
@Controller通过浏览器访问到。。。?
查看全部 -
application.yml//
spring:
profiles:
active: devapplication-prod.yml//
server:
port: 8081
context-path: /girl
girl:
cupSize: F
age: 18application-dev.yml//
server:
port: 8082
context-path: /girl
girl:
cupSize: B
age: 18查看全部
举报