美文网首页
配置文件加载位置

配置文件加载位置

作者: 桑鱼nicoo | 来源:发表于2020-02-20 11:10 被阅读0次

    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";
        }
    }
    

    相关文章

      网友评论

          本文标题:配置文件加载位置

          本文链接:https://www.haomeiwen.com/subject/hhqjfhtx.html