SpringBoot从application.yml中获取自定义常量
2018-07-01 18:33:01
1562次阅读
0个评论
注意 application.yml 中不能用驼峰式写法(systemParams)要改成system-params
要导入依赖
要导入依赖
pom.xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
application.yml
system-params:
image-uri: http://xxxxxx
SystemParams
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
@Component
@ConfigurationProperties(prefix = "system-params")
public class SystemParams {
private String imageUri;
public String getImageUri() {
return imageUri;
}
public void setImageUri(String imageUri) {
this.imageUri = imageUri;
}
}
测试
import com.shior.demoshior.config.SystemParams;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class TestConfig {
@Autowired
SystemParams systemParams;
@Test
public void testParam(){
System.out.println(systemParams.getImageUri());
}
}
00
相关话题
- SpringBoot自定义配置文件及读取配置文件
- element-ui upload组件 on-change事件 传自定义参数
- Spring boot打包后从类路径目录中获取资源列表
- Springboot中WebMvcConfigurer中可配置项
- springBoot动态切换application.properties配置文件
- jQuery中获取当前JS文件路径
- Vue3.2 setup语法糖中组件的 name 属性如何定义
- Springboot使用外部Tomcat
- FastDFS与Springboot集成
- springboot跨域配置
- SpringBoot设置上传文件大小
- springboot读取配置文件
- SpringMVC获取Request域
- SpringBoot @Transactional事务处理
- springboot添加定时器