本文介绍了如何在SpEL中转义值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在用XML编写一些SpEL语句,我无法让解析器确定何时需要转义字符。

I am writing some SpEL statements in XML, and I can't get the parser to determine when I need to escape a character.

我试过了以下:

<... property="someProperty" value="#{ someBean.aMethodOnTheBean('st\'ring') }" />

但是添加\'似乎没有逃脱那个单引号而且我一直收到解析器例外。

However adding in the \' does not seem to escape that single quote and I keep receiving a parser exception.

有没有办法逃避这些值?

Is there any way to escape these values?

推荐答案

来自:

expression ='something ='''+ someMethod.getValue +''''

这篇关于如何在SpEL中转义值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-29 04:00