项目下载地址:http://download.csdn.net/detail/aqsunkai/9805821

(一)yml配置文件:

pom.xml加入依赖:

<!-- 支持 @ConfigurationProperties 注解 -->

<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-configuration-processor -->

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-configuration-processor</artifactId>

<version>${spring-boot.version}</version>

</dependency>

在application.yml文件中加上:

#自定义的属性和值
myYml:
simpleProp: simplePropValue
arrayProps: 1,2,3,4,5
listProp1:
- name: abc
value: abcValue
- name: efg
value: efgValue
listProp2:
- config2Value1
- config2Vavlue2
mapProps:
key1: value1
key2: value2

使用一个java类获取yml文件的内容:

package com.sun.configuration;

import org.springframework.boot.context.properties.ConfigurationProperties;


import org.springframework.stereotype.Component;

import java.util.ArrayList;


import java.util.HashMap;


import java.util.List;


import java.util.Map;

/**
  • 加载yaml配置文件的方法
  • Created by sun on 2017-1-15.
  • spring-boot更新到1.5.2版本后locations属性无法使用
  • @PropertySource注解只可以加载proprties文件,无法加载yaml文件
  • 故现在把数据放到application.yml文件中,spring-boot启动时会加载


    */


    @Component


    //@ConfigurationProperties(locations = {"classpath:config/myProps.yml"},prefix = "myProps")


    @ConfigurationProperties(prefix = "myYml")


    public class YmlConfig {

    String simpleProp;


    private String[] arrayProps;

    private List<Map<String, String>> listProp1 = new ArrayList<>(); //接收prop1里面的属性值


    private List<String> listProp2 = new ArrayList<>(); //接收prop2里面的属性值


    private Map<String, String> mapProps = new HashMap<>(); //接收prop1里面的属性值
    public String getSimpleProp() {


    return simpleProp;


    }
    //String类型的一定需要setter来接收属性值;maps, collections, 和 arrays 不需要


    public void setSimpleProp(String simpleProp) {


    this.simpleProp = simpleProp;


    }





    public String[] getArrayProps() {


    return arrayProps;


    }
    public void setArrayProps(String[] arrayProps) {


    this.arrayProps = arrayProps;


    }





    public List<Map<String, String>> getListProp1() {


    return listProp1;


    }





    public void setListProp1(List<Map<String, String>> listProp1) {


    this.listProp1 = listProp1;


    }
    public List<String> getListProp2() {


    return listProp2;


    } public void setListProp2(List<String> listProp2) {

    this.listProp2 = listProp2;

    }
    public Map<String, String> getMapProps() {


    return mapProps;


    }
    public void setMapProps(Map<String, String> mapProps) {


    this.mapProps = mapProps;


    }


    }

通过依赖注入就可以获取该对象:

@Autowired
private YmlConfig config;

方法内获取值:

ObjectMapper objectMapper = new ObjectMapper();

//测试加载yml文件

System.out.println("simpleProp: " + config.getSimpleProp());

System.out.println("arrayProps: " + objectMapper.writeValueAsString(config.getArrayProps()));

System.out.println("listProp1: " + objectMapper.writeValueAsString(config.getListProp1()));

System.out.println("listProp2: " + objectMapper.writeValueAsString(config.getListProp2()));

System.out.println("mapProps: " + objectMapper.writeValueAsString(config.getMapProps()));

(二)properties配置文件:

使用@PropertySource注解加载配置文件,该注解无法加载yml配置文件。使用@Value注解获得文件中的参数值

package com.sun.configuration;
import org.springframework.context.annotation.Bean;


import org.springframework.context.annotation.Configuration;


import org.springframework.context.annotation.PropertySource;


import org.springframework.context.support.PropertySourcesPlaceholderConfigurer;
/**
  • 加载properties配置文件,在方法中可以获取
  • abc.properties文件不存在,验证ignoreResourceNotFound属性
  • 加上encoding = "utf-8"属性防止中文乱码,不能为大写的"UTF-8"
  • Created by sun on 2017-3-30.


    */


    @Configuration


    @PropertySource(value = {"classpath:/config/propConfigs.properties","classpath:/config/abc.properties"},


    ignoreResourceNotFound = true,encoding = "utf-8")


    public class PropConfig {

    // PropertySourcesPlaceholderConfigurer这个bean,


    // 这个bean主要用于解决@value中使用的${…}占位符。


    // 假如你不使用${…}占位符的话,可以不使用这个bean。


    @Bean


    public static PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer() {


    return new PropertySourcesPlaceholderConfigurer();


    }


    }


    获取properties文件参数值有两种方法,一种获得Environment 的对象,第二种就是@Value注解
@Autowired


private Environment env;


@Value("${age}")


String name;

@RequestMapping(</span>"/"<span style="color: #000000">)</br>
@ResponseBody</br>
String home(HttpServletRequest req) </span><span style="color: #0000ff">throws</span><span style="color: #000000"> JsonProcessingException, UnsupportedEncodingException {</br>
logger.info(</span>"测试通过!!!"<span style="color: #000000">);</br>
ObjectMapper objectMapper </span>= <span style="color: #0000ff">new</span><span style="color: #000000"> ObjectMapper();</br>
</span><span style="color: #008000">//</span><span style="color: #008000">测试加载yml文件</span></br>
System.out.println("simpleProp: " +<span style="color: #000000"> config.getSimpleProp());</br>
System.out.println(</span>"arrayProps: " +<span style="color: #000000"> objectMapper.writeValueAsString(config.getArrayProps()));</br>
System.out.println(</span>"listProp1: " +<span style="color: #000000"> objectMapper.writeValueAsString(config.getListProp1()));</br>
System.out.println(</span>"listProp2: " +<span style="color: #000000"> objectMapper.writeValueAsString(config.getListProp2()));</br>
System.out.println(</span>"mapProps: " +<span style="color: #000000"> objectMapper.writeValueAsString(config.getMapProps()));</br></br> </span><span style="color: #008000">//</span><span style="color: #008000">测试加载properties文件</span></br>
System.out.println(env.getProperty("name"));<span style="color: #008000">//</span><span style="color: #008000">孙凯</span></br>
System.out.println(env.getProperty("abc"));<span style="color: #008000">//</span><span style="color: #008000">null</span></br>
System.out.println(name);<span style="color: #008000">//</span><span style="color: #008000">26</span></br> <span style="color: #0000ff">return</span> "Hello World!"<span style="color: #000000">;</br>
}</span></pre>

SpringBoot学习:获取yml和properties配置文件的内容(转)的更多相关文章

  1. SpringBoot学习:获取yml和properties配置文件的内容

    项目下载地址:http://download.csdn.net/detail/aqsunkai/9805821 (一)yml配置文件: pom.xml加入依赖: <!-- 支持 @Configu ...

  2. SpringBoot学习:获取yml和properties配置文件的内容(转)

    项目下载地址:http://download.csdn.net/detail/aqsunkai/9805821 (一)yml配置文件: pom.xml加入依赖: <!-- 支持 @Configu ...

  3. Springboot 之 解决IDEA读取properties配置文件的中文乱码问题

    问题描述 当在.properties的配置文件中有中文时,读取出来的总是乱码.比如我的application.properties配置文件的内容如下: server.port=9090 test.ms ...

  4. SpringBoot学习:读取yml和properties文件的内容

    一.在SpringBoot实现属性注入: 1).添加pom依赖jar包: <!-- 支持 @ConfigurationProperties 注解 --> <!-- https://m ...

  5. Springboot 获取yml、properties参数

    获取properties或yml文件的配置数据(两种方法)(默认的application文件或者自定义的yml和properties) 1.使用@Value()注解 1.1 配置数据 如:在prope ...

  6. SpringBoot 项目不加载 application.properties 配置文件

    起因:新安装的idea第一次运行springboot项目报url错误(Failed to configure a DataSource: 'url' attribute is not specifie ...

  7. SpringBoot学习遇到的问题(1) - 配置文件有日志的debug模式等配置项,为什么不起作用

    这个问题困扰我近乎两天,通过查找N多资料后终于解决,写下来共享给大家. logging.level.root=DEBUG ... 一系列的日志配置项,都不起作用的原因是springboot启动加载不到 ...

  8. SpringBoot中 application.yml /application.properties常用配置介绍

    # Tomcat server: tomcat: uri-encoding: UTF-8 max-threads: 1000 min-spare-threads: 30 port: 10444 ser ...

  9. yml和properties配置文件区别

    我们可以观察到的格式就是yml文件是梯级呈现的,我们应该注意一下几个方面: 1>在properties文件里面的 “ .”  连接在yml文件里面全部换成 ":" 进行连接, ...

随机推荐

  1. 2018 java实训总结(时间戳&&主键)

    java实训题目:源管理系统. 答辩的时候被老师怼了以下几个的地方: 1.主键改变了 2.没时间戳却说自己的程序里有先后(这就是老师迂腐了,主键自增可以间接反馈出他加入的早晚,即使主键做出了改变但只是 ...

  2. Vue 导出表格为Excel

    放法有多种,我这里是直接转JSON数据为Excel. 1.既然要使用,那首先当然是安装依赖,在终端命令输入: npm install -S file-saver xlsx npm install -D ...

  3. Vue 国家省市三级联动

    在网上查阅一下,基本上是省市区三级联动,国家省市的就只能自己动手了. 样式就根据自己的需要去调整了. JSON数组太长,就折叠放在了后面. 效果图: <!DOCTYPE html> < ...

  4. JS错误记录 - 右侧悬浮框 - 缓冲运动

    本次练习错误总结: 1.  正确: startMove( document.documentElement.clientHeight - oDiv.offsetHeight + scrollTop); ...

  5. dp之多重背包(二进制优化)

    void solve(int v,int w,int c){    int count=0;    for(int k=1;k<=c;k<<=1)    {        val[c ...

  6. Python学习(三) 八大排序算法的实现(下)

    本文Python实现了插入排序.基数排序.希尔排序.冒泡排序.高速排序.直接选择排序.堆排序.归并排序的后面四种. 上篇:Python学习(三) 八大排序算法的实现(上) 1.高速排序 描写叙述 通过 ...

  7. Flume的data flow(数据流)

    data flow描述了数据从产生,传输.处理并最终写入目标的一条路径. 数据的采集的流向!如下图所示.  

  8. Rpm另类用法加固Linux安全

    Rpm另类用法加固Linux安全   RPM是Red Hat Package Manager的缩写即Red Hat软件管理器.它是一个开放的包管理软件,由Red Hat公司所开发和维护,可以在Red ...

  9. 原生JavaScript 封装ajax

    原生JavaScript 封装ajax   function myajax(options){ //新建一个局部对象 用来存放用户输入的各种参数 var opt={ type:options.type ...

  10. php学习笔记3

    1.PHP 定界符 EOF 的作用就是按照原样,包括换行格式什么的,输出在其内部的东西: 2.在 PHP 定界符 EOF 中的任何特殊字符都不需要转义: 3.PHP 定界符 EOF