在SpringBoot下读取自定义properties配置文件的方法
SpringBoot工程默认读取application.properties配置文件。如果需要自定义properties文件,如何读取呢? 一、在resource中新建.properties文件 在resource目录下新建一个config文件夹,然后新建一个.properties文件放在该文件夹下。如图remote.properties所示 二、编写配置文件 1 2 remote.uploadFilesUrl=/resource/files/ remote.uploadPicUrl=/resource/pic/ 三、新建一个配置类RemoteProperties.java 1 2 3 4 5 6 7 8 9 @Configuration @ConfigurationProperties (prefix = "remote" , ignoreUnknownFields = false ) @PropertySource ( "classpath:config/remote.properties" ) @Data @Component public class RemoteProperties { private String uploadFilesUrl; private String uploadPicUrl; } 其中 @Configuration 表明这是一个配置类