springboot自定义property
程序员文章站
2022-05-19 15:32:14
...
自定义Property
在web开发的过程中,我经常需要自定义一些配置文件,如何使用呢
配置在application.properties中:
com.springboot.username=zhangsan
com.springboot.password=123456
自定义配置类:
@Component
public class UserProperties {
@Value("${com.springboot.username}")
private String title;
@Value("${com.springboot.password}")
private String description;
//省略getter settet方法
}
上一篇: Python进阶-自定义property
下一篇: (6)自定义Property