gpt4 book ai didi

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

转载 作者:搜寻专家 更新时间:2023-11-01 02:07:37 25 4
gpt4 key购买 nike

在 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 ... : ...

请注意,您可以在三元表达式的值部分“引用”bean(当 boolean 部分的计算结果为真时),您只是不能在 boolean 部分引用它。

关于java - Spring 表达式语言 - 确定是否定义了 servletContext 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27748498/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com