SPRING 加载资源文件

来源:互联网 发布:ubuntu关闭apache 编辑:程序博客网 时间:2024/04/28 12:01

在SPRING 配置中加入

<context:property-placeholder properties-ref="synProperties" />

<util:properties id="synProperties" location="classpath:synInterfaceConfiguration.properties" />


@Value("#{synProperties['path']}")
private String path;

0 0