配置文件加载位置
2020-02-20 本文已影响0人
桑鱼nicoo
spring boot 启动会扫描以下位置的application.properties或者appliation.yml文件作为Spring Boot的默认配置文件,并且优先级按照从高到低的顺序,所有位置的文件都会被加载,高优先级配置内容会覆盖低优先级配置内容:
-file:./config/
-file:./
-classpath:/config
-classpath:/
配置项目的访问路径
server.port=8081
# 配置项目的访问路径
server.servlet.context-path=/boot02
@RestController
public class HelloController {
@RequestMapping("/hello")
public String hello(){
return "hello";
}
}