Spring 表达式语言 - 确定是否定义了 servletContext 变量

Spring expression languague - determine if servletContext variable is defined

在 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是否存在?或者在未定义时避免异常的某种方法?

您需要评估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 ... : ...

注意你可以"reference"三元表达式的值部分的bean(当布尔部分计算为真时),你就是不能引用它在布尔部分。