我正在用XML编写一些SpEL语句,我无法让解析器确定何时需要转义字符。
我尝试了以下内容:
<... property="someProperty" value="#{ someBean.aMethodOnTheBean('st\'ring') }" />
然而,添加\'似乎没有逃脱单引号,我一直收到解析器异常。
有没有办法逃避这些价值观?
答案 0 :(得分:18)
“将单引号本身放入 字符串使用两个单引号 字符“。
expression = 'something = ''' + someMethod.getValue + ''''
答案 1 :(得分:0)
我修改为:
.... value="#{ someBean.aMethodOnTheBean("st'ring") }"
这很有效,我记得错误地说我在使用双引号将字符串值输入SpEL函数之前遇到了问题。
以下是架构定义:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:util="http://www.springframework.org/schema/util"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd"
default-lazy-init="true"
default-init-method="initialize">
XML在eclipse中正确验证。然而,我的简化示例无效 - 我的道歉和良好的捕获。我实际上是这样设置的值:
<bean id="someBean" class="someClass">
<property name="someList">
<list>
<value>"#{ anotherBean.methodOnBean("some'String") }"</value>
</list>
</property>
</bean>
答案 2 :(得分:0)
FWIW,自版本3.2起,SpEL支持双引号。 SPR-9620