Spring boot 读取配置文件, 有如下几种方法1. 直接利用Spring @Value 注解2. 利用@PropertySource("classpath:xxx.properties") 与 @Value 注解配合3. @PropertySource("classpath:xxx.properties") 与 @ConfigurationProperties 注解配合采用这三种常见的方法,甚至可以直接用配置文件组装复杂的对象都可以一,直接利用Spring @Value 注解直接在使用的类中使用,比如:程序代码@Servicepublic class MyCommandService { @Value("${name:unknown}") private String name; public String getMessage() { return getMessage(name); } public String getMessage(String name) { return "Hello " + name; }}二. 利用@PropertySource("classpath:xxx.properties") 与 @V
...
继续阅读
(61)