springboot如何读取配置文件test.properties
程序员文章站
2022-07-13 11:17:02
...
在看下面的例子前先说明下,如果你使用的是application.properties ,你就可以直接取值就可以了,如果自己想加个文件,就看下面的demo实现。
1,新建一个类,把文件加载进去,请看下面代码:
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
@Configuration
@PropertySource(value = { "classpath:test.properties" }, encoding = "UTF-8")
public class Config {
}
2,在controller里面获取方式有几种
第一种用
@Value("${title}")
private String title;
第二种用
@Autowired
private Environment env;
env.getProperty("title")获取值
3,properties内容
#-------------在线文档相关配置--------------------------
title=在线测试文档
description=
version="v1.0.0"
1,新建一个类,把文件加载进去,请看下面代码:
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
@Configuration
@PropertySource(value = { "classpath:test.properties" }, encoding = "UTF-8")
public class Config {
}
2,在controller里面获取方式有几种
第一种用
@Value("${title}")
private String title;
第二种用
@Autowired
private Environment env;
env.getProperty("title")获取值
3,properties内容
#-------------在线文档相关配置--------------------------
title=在线测试文档
description=
version="v1.0.0"
下一篇: 从Kafka日志拆分来看系统架构