有没有办法在Spring-Boot项目中通过appplication.properties注入Date值。喜欢这个。
@Component
@ConfigurationProperties(prefix = "foo")
public Class FooConfiguration {
private Date startTime;
//getter and setter
}
foo.startTime="2019-03-18 00:00:00"
MYYA
相关分类