我的pom里有CAS 3.4.3。从Jasig CAS zip中,我包含了所有配置,包括login-webflow.xml
当我使用CAS源代码构建我的应用程序时,同样的配置也适用于我。目前我得到了一个异常:
org.springframework.expression.spel.SpelParseException: EL1041E:(pos 33): After parsing a valid expression, there is still more data in the expression: 'neq'
at org.springframework.expression.spel.standard.InternalSpelExpressionParser.doParseExpression(InternalSpelExpressionParser.java:118)有没有人遇到过这样的错误?当InternalSpelExpressionParser计算flowScope.ticketGrantingTicketId neq null时会发生这种情况
这个示例login-webflow.xml是否正确?我已经查阅了几篇参考文献,但没有找到任何关于‘neq’的表达。
我的login-webflow.xml与找到的here完全相同
发布于 2010-10-25 19:14:32
哦,愚蠢是可悲的。我花了很多时间认为这是一个依赖问题,但实际上cas 3.4.3具有不同的cas-servlet.xml,其中包含以下内容:
<bean id="expressionParser" class="org.springframework.webflow.expression.WebFlowOgnlExpressionParser" />https://stackoverflow.com/questions/4013803
复制相似问题