在spring上下文xml文件中,我使用spring EL表达式根据servletContext预定义变量是否为null来加载属性文件。下面是Spel表达式(为便于阅读而格式化):
#{
systemProperties['my.properties.dir'] != null ?
'file:' + systemProperties['my.properties.dir'] + '/' :
(servletContext != null ?
'file:/apps/mydir' + servletContext.getContextPath() + '/' :
'classpath:')
}my.properties
当我在网络应用程序中运行时,一切都很好。但是,当我在独立应用程序中运行时(意味着未定义servletContext预定义变量),我收到以下错误:
Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1008E:(pos 109): Field or property 'servletContext' cannot be found on object of type 'org.springframework.beans.factory.config.BeanExpressionContext'
有没有办法确定servletContext是否存在?或者某种方式在未定义时避免异常?
答案 0 :(得分:6)
您需要评估bean的存在与否;你不能只测试它是否为null,因为它试图使用不存在的bean。
评估的#root
对象为BeanExpressionContext
。
这应该让你朝着正确的方向前进......
<bean id="foo" class="java.lang.String">
<constructor-arg value="#{containsObject('bar') ? bar : 'foo'}" />
</bean>
<bean id="bar" class="java.lang.String">
<constructor-arg value="bar" />
</bean>
所以你会用......
#{containsObject('servletContext') ? ... servletContext.contextPath ... : ...
请注意,您可以&#34;参考&#34;三元表达式的值部分中的bean(当布尔部分求值为true时),你只能在布尔部分引用它。