欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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方法

}