@configurationproperties(prefi
时间: 2023-04-21 15:02:22 浏览: 123
configure.properties
x = "value"
@ConfigurationProperties(prefix = "x")
public class MyProperties {
private String value;
// getter and setter
}
这段代码是一个Spring Boot的配置类,使用@ConfigurationProperties注解来指定前缀为"x"的属性,然后定义了一个value属性,并提供了getter和setter方法。在应用中,可以通过注入MyProperties类来获取配置值。例如:
@Autowired
private MyProperties myProperties;
String value = myProperties.getValue();
阅读全文