我有这堂课:
@Configuration
@PropertySource("file:/opt/server/server.properties")
public class ServerConfiguration {
@Bean
public static PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer() {
return new PropertySourcesPlaceholderConfigurer();
}
// @Value("${path}")
private String path;
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
}
如果取消注释@Value注释,它可以正常工作。但我希望它能自动完成。它是在Spring-Boot应用程序中完成的,但这是一个简单的Spring 5 mvc应用程序。
这可以在不必注释每个财产的情况下完成吗?
答案 0 :(得分:1)
是的,在SpringBoot中,您可以使用@ConfigurationProperties来避免对每个字段使用@Value。但是,据我所知@EfigurationProperties仅适用于SpringBoot(它是一个Spring引导程序包)。