博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
加载自定义的配置文件
阅读量:6073 次
发布时间:2019-06-20

本文共 2463 字,大约阅读时间需要 8 分钟。

hot3.png

加载自定义的properties文件<br>

remote.properties

remote.uploadFilesUrl=/resource/files/  remote.uploadPicUrl=/resource/pic/
  • 方式一

    @ConfigurationProperties(prefix = "remote", ignoreUnknownFields = false)@PropertySource("classpath:remote.properties")@Componentpublic class RemoteProperties {private String uploadFilesUrl;private String uploadPicUrl;}
    @RestControllerpublic class TestService{   @Autowired   RemoteProperties remoteProperties;   public void test(){       String str = remoteProperties.getUploadFilesUrl();       System.out.println(str);   }}
  • 方式二

    @ConfigurationProperties(prefix = "remote", ignoreUnknownFields = false)@PropertySource("classpath:remote.properties")@Configurationpublic class RemoteProperties {private String uploadFilesUrl;private String uploadPicUrl;}
    @RestControllerpublic class TestService{  @Autowired  RemoteProperties remoteProperties;  public void test(){      String str = remoteProperties.getUploadFilesUrl();      System.out.println(str);  }}
  • 方式三

    @ConfigurationProperties(prefix = "remote", ignoreUnknownFields = false)@PropertySource("classpath:remote.properties")public class RemoteProperties {private String uploadFilesUrl;private String uploadPicUrl;}
    @EnableConfigurationProperties(RemoteProperties.class)@RestControllerpublic class TestService{  @Autowired  RemoteProperties remoteProperties;  public void test(){      String str = remoteProperties.getUploadFilesUrl();      System.out.println(str);  }}
  • 方式四

    @PropertySource("classpath:remote.properties")@Configurationpublic class RemoteProperties {  @Value("${remote.uploadFilesUrl}")    private String uploadFilesUrl;  @Value("${remote.uploadPicUrl}")    private String uploadPicUrl;  @Bean  public  PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer() {     return new PropertySourcesPlaceholderConfigurer();  }}
    @RestControllerpublic class TestService{   @Autowired   RemoteProperties remoteProperties;   public void test(){       String str = remoteProperties.getUploadFilesUrl();       System.out.println(str);   }}

    该方式一般只用于SpringMVC中<br> @ConfigurationProperties(prefix = "remote", ignoreUnknownFields = false)该注解用于绑定属性。prefix用来选择属性的前缀,也就是在remote.properties文件中的"remote",ignoreUnknownFields是用来告诉SpringBoot在有属性不能匹配到声明的域时抛出异常。<br> @PropertySource("classpath:remote.properties") 配置文件路径<br>

加载自定义的xml文件

@Configuration@ImportResource(locations={"classpath:application-bean.xml"})publicclass ConfigClass {}

转载于:https://my.oschina.net/chenbkit/blog/1613300

你可能感兴趣的文章
tomcat多应用之间如何共享jar
查看>>
Flex前后台交互,service层调用后台服务的简单封装
查看>>
技术汇之物联网设备网关技术架构设计
查看>>
OSX10.11 CocoaPods 升级总结
查看>>
深入浅出Netty
查看>>
3.使用maven创建java web项目
查看>>
笔记本搜索不到某一AP广播的SSID,信道的原因
查看>>
基于Spring MVC的异常处理及日志管理
查看>>
MediaBrowserService 音乐播放项目《IT蓝豹》
查看>>
MySQL入门12-数据类型
查看>>
Windows Azure 保留已存在的虚拟网络外网IP(云服务)
查看>>
修改字符集
查看>>
HackTheGame 攻略 - 第四关
查看>>
js删除数组元素
查看>>
带空格文件名的处理(find xargs grep ..etc)
查看>>
华为Access、Hybrid和Trunk的区别和设置
查看>>
centos使用docker下安装mysql并配置、nginx
查看>>
关于HTML5的理解
查看>>
需要学的东西
查看>>
Internet Message Access Protocol --- IMAP协议
查看>>