首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

在spring3.1中怎么在annotation中注入properties中的值

2013-12-19 
在spring3.1中如何在annotation中注入properties中的值spring.scheduler.cron 0 0 0 0 ?????? 步骤2:???

在spring3.1中如何在annotation中注入properties中的值
spring.scheduler.cron = 0 0 0 0

??

???? 步骤2:????

<context:property-placeholder location="classpath:drm.properties" ignore-unresolvable="true"/> 

?

? ? 步骤3:????

        private String cron = null;@Value("${spring.scheduler.cron}")public void setCron(String cron) {this.cron = cron;}

?

热点排行