如何修复速度 ParseErrorException 词法错误

发布于 2025-01-11 17:11:19 字数 554 浏览 0 评论 0原文

您好,我对 apache Velocity 完全陌生,我的代码中遇到 velocity.exception.ParseErrorException: Lexical error 问题,有人可以帮助我解决它吗?

这是代码

#set ($file_name = ${ctx.FILE_NAME}.split('_REPORT'))
$file_name.get(0) - Some Text

这是我遇到的错误

Caused by: org.apache.velocity.exception.ParseErrorException: Lexical error, Encountered: "s" (115), after : "." at *unset*[line 1, column 37]
at org.apache.velocity.runtime.RuntimeInstance.evaluate(RuntimeInstance.java:1301) ~[velocity-1.7.jar:1.7]

有人能帮我解决这个问题吗?

Hi i am totally new to apache velocity and i am having velocity.exception.ParseErrorException: Lexical error issue in my code, Can anybody help me in how to solve it?

Here is the code

#set ($file_name = ${ctx.FILE_NAME}.split('_REPORT'))
$file_name.get(0) - Some Text

And here is the error I am getting

Caused by: org.apache.velocity.exception.ParseErrorException: Lexical error, Encountered: "s" (115), after : "." at *unset*[line 1, column 37]
at org.apache.velocity.runtime.RuntimeInstance.evaluate(RuntimeInstance.java:1301) ~[velocity-1.7.jar:1.7]

Can anybody help me to solve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泛滥成性 2025-01-18 17:11:19

尝试:

#set ($file_name = ${ctx.FILE_NAME.split('_REPORT')})
$file_name.get(0) - Some Text

或者只是:

#set ($file_name = $ctx.FILE_NAME.split('_REPORT'))
$file_name.get(0) - Some Text

花括号仅用于消除引用与周围文本的歧义。

Try:

#set ($file_name = ${ctx.FILE_NAME.split('_REPORT')})
$file_name.get(0) - Some Text

Or just:

#set ($file_name = $ctx.FILE_NAME.split('_REPORT'))
$file_name.get(0) - Some Text

Curly braces are only here to disambiguate a reference from surrounding text.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文