JBOSS_HOME弹簧资源映射

时间:2014-06-24 12:59:03

标签: spring jboss

大家好,我无法正确映射我的JBOSS_HOME位置,例如我有类似的东西:

<mvc:resources order="-10" location="file:/C:/Serwery/jboss-as-7.1.1.Final/" mapping="/test/**" />

但这是我想做的事情的绝对路径:

<mvc:resources order="-10" location="file:/$JBOSS_HOME/" mapping="/test/**" />

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

只需添加此

即可
<context:property-placeholder />

到你的xml配置,你有<mvc:resources />并像这样使用它(注意如何处理env变量 - ${JBOSS_HOME}):

<mvc:resources order="-10" location="file:/${JBOSS_HOME}/" mapping="/test/**" />