0

谁能告诉我是什么引起了这个错误..?

[ognl.ParseException: Encountered "<EOF>" at line 1, column 1
Was expecting one of:
    ":" ...
    "not" ...
    "+" ...
    "-" ...
    "~" ...
    "!" ...
    "(" ...
    "true" ...
    "false" ...
    "null" ...
    "#this" ...
    "#root" ...
    "#" ...
    "[" ...
    "{" ...
    "@" ...
    "new" ...
    <IDENT> ...
    <DYNAMIC_SUBSCRIPT> ...
    "\'" ...
    "`" ...
    "\"" ...
    <INT_LITERAL> ...
    <FLT_LITERAL> ...
    ]
4

1 回答 1

-1

解析错误parameter,可以通过查看提交的URL来找出哪个参数无效。

尝试:
- 更正name参数的无效
- 或者,以下示例可能是一个解决方案/给你一个想法:

struts.xml

<interceptor-stack name="defaultStack">
    <interceptor-ref name="params">
        <param name="excludeParams">dojo\..*,^struts\..*,jquery\..*</param>
    </interceptor-ref>
</interceptor-stack>


排除参数

通过设置其 excludeParams 属性,可以强制此拦截器忽略参数。此属性接受以逗号分隔的正则表达式列表。当这些表达式中的任何一个与参数的名称匹配时,拦截器将忽略该参数。

于 2011-03-22T07:18:44.917 回答