ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
SpringBoot 默认会扫描如下位置的配置文件作为它的配置: ``` ProjectName/config/application.properties ProjectName/application.properties resources/config/application.properties resources/application.properties ``` <br/> 如果想更改配置文件的位置和名称则需要做如下工作。 **1. 更改`application.properties`的默认位置** 我将`resources/application.properties`更改为`resources/config/custom-config.properties`。 ```properties server.port=9090 ``` **2. 在启动类上标注注解`@PropertySource`找到配置文件** ```java @SpringBootApplication @PropertySource(value={"classpath:/config/custom-config.properties"}, encoding="UTF-8") public class BootApplication { public static void main(String[] args) { SpringApplication.run(Boot02Application.class, args); } } ``` **3. 启动项目测试一下看端口是不是9090** ``` # 端口为9090说明更改配置文件成功了 TomcatWebServer : Tomcat started on port(s): 9090 (http) with context path '' ```