方案1:
使用PropertiesLoaderUtils
import ;
import ;
import ;
import ;
public static Properties readPropertiesFile(String fileName) {
try {
Resource resource = new ClassPathResource(fileName);
Properties props = (resource);
return props;
} catch (Exception e) {
("读取配置文件:" + fileName + "异常,读取失败");
();
}
return null;
}
Properties properties = readPropertiesFile("");
((""));
方案2:
使用Environment
import ;
@Autowired
private Environment environment;
((""));
方案3:
使用@Value
import ;
@Value("${}")
private String rabbitmqHost;
(rabbitmqHost);
方案4:
使用@ConfigurationProperties
属性类
import ;
import ;
import ;
@Getter
@Setter
@ConfigurationProperties(prefix = "")
public class TestProperties {
private String host;
private String port;
private String username;
private String password;
}
注册属性配置类
import ;
import ;
@EnableConfigurationProperties()
@SpringBootConfiguration
public class TestConfiguration {
}
使用配置类
@Autowired
private TestProperties testProperties;
(());
static静态方法读取配置
@Component
public class UserUtil {
// 使用@Value注解读取配置
@Value("${}")
private String name;
// 设置静态成员变量用来接收@Value注入的值
private static String userName;
// 使用@PostConstruct注解用于静态变量赋值
@PostConstruct
public void getUserName() {
userName = ;
}
// 测试方法静态变量是否被赋值
public static String test() {
return userName;
}
}
调用示例:
String name = ();
使用 @Component 属性注解说明是需要在启动类 Application 启动的时候加载。