spring boot external config

后端 未结 5 1115
清歌不尽
清歌不尽 2020-12-30 04:59

I am trying to load an external properties file into my spring boot app. initially I used @PropertySource in the config class. but now I want to remove this annotation so th

5条回答
  •  有刺的猬
    2020-12-30 05:44

    spring.config.name=spring  
    spring.config.location=classpath:/config/
    

    in side the config folder spring.properties file is available, while running the server the this properties file is not loading

提交回复
热议问题