我在项目中使用kolorobot MVC原型f https://github.com/kolorobot/spring-mvc-quickstart-archetype。
这是我的属性占位符
的配置@Bean
public static PropertyPlaceholderConfigurer propertyPlaceholderConfigurer() {
PropertyPlaceholderConfigurer ppc = new PropertyPlaceholderConfigurer();
ppc.setLocations(new ClassPathResource[] {
new ClassPathResource("/config/website.properties"),
new ClassPathResource("/persistence.properties") });
return ppc;
}
这是我传递属性以查看
的方式...
@Value("${facebook.fanpage.url}")
private String facebookFanpageUrl;
...
model.addAttribute("fanpage", facebookFanpageUrl);
工作正常。但我想知道是否有最快捷的方式,直接从占位符访问属性?例如,因为它在这里@Value(" $ {facebook.fanpage.url}")。