Struts 2 #{} giving compilation error in Netbeans 7.3(Struts 2 #{} 在 Netbeans 7.3 中给出编译错误)
问题描述
我正在使用 Netbeans 7.3,并创建了一个 maven Struts 2.3 项目.
I'm using Netbeans 7.3 and I've created a maven Struts 2.3 project.
其他一切似乎都很好,除了我用 JSP 编写类似这样的东西:
Everything else seems fine, except when I write in JSP something like this :
<s:select list="#{'-1':'All Activity','0':'Posts Only','1':'Trades Only'}"
以上代码在 JSP 中出现错误.虽然它曾经在 6.9 中运行良好对我来说似乎是一个错误.任何帮助将不胜感激.
The above code gives error in JSP. Although it used to work fine in 6.9 Seems like a bug to me. Any help would be really appreciated.
我已经在插件页面上发表了关于它的评论,虽然在我看来并不像插件问题,因为 maven 与 NB 插件 AFAIK 无关.
I've already posted a comment about it on the plugin page, although doesn't seem to me like a plugin issue or so, since maven has nothing to do with NB plugins AFAIK.
推荐答案
在上面的代码中,列表是使用 OGNL 表达式填充的.这是有效的表达式,但 IDE 并不总是支持它,因为 OGNL 版本和插件版本可能不匹配.您始终可以将其排除在验证之外.但这不是主要问题,您可以不注意.
In the code above the list is populated using OGNL expression. That is valid expression, however IDE not always has support it since the OGNL version and plugin version may mismatch. You can always exclude it from validation. But it's not the major problem and you could not pay attention to it.
此示例使用相同的集合,看起来不错
This example uses the same collection and looks fine
<s:select list="#@java.util.LinkedHashMap@{'-1':'All Activity','0':'Posts Only','1':'Trades Only'}"/>
这篇关于Struts 2 #{} 在 Netbeans 7.3 中给出编译错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Struts 2 #{} 在 Netbeans 7.3 中给出编译错误
- 如何使用WebFilter实现授权头检查 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
