Spring Boot—07应用application.properties中的配置
Posted ParamousGIS
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot—07应用application.properties中的配置相关的知识,希望对你有一定的参考价值。
方法1
@Value("${test.msg}")
private String msg;
方法2
@Autowired
private Environment env;
String value = env.getProperty("test.msg");
方法3
@RequestMapping(path="/${query.all}.json", method=RequestMethod.GET) @ResponseBody public List<User> all() { return userService.allUser(); }
方法4
@Component
@ConfigurationProperties(prefix = "author",locations = "classpath:author.properties")
public class MyWebConfig{
private String name;
private int age;
以上是关于Spring Boot—07应用application.properties中的配置的主要内容,如果未能解决你的问题,请参考以下文章