我正在进行项目迁移以提供JSF 2.0功能。在这种情况下,我使用Eclipse Ingido作为IDE和JBoss Tools插件。该项目使用JBoss Seam 2.3.0.Final和RichFaces 4.2.2.Final,并将部署在JBoss AS 7.1.1.Final中。
当我尝试将使用JSF 1.2和RichFaces 3.3.3.Final编写的JSF页面迁移到这些库的最新版本时,Eclipse中的JBoss Tools HTML编辑器在“问题”选项卡中不会显示任何警告或错误名称或属性名称。
下面是一个示例JSF页面:
<ui:define name="body">
<div class="actionButtons">
<h:botton></h:botton>
<s:button nothing="nothing" view="/GrupoEdit.xhtml" id="create"
propagation="none" value="Criar grupo">
<f:param name="grupoId" />
</s:button>
</div>
...
</ui:define>
例如,taglibs中不存在标记<h:botton>
,<s:button>
标记中也没有属性。
有人知道为什么Eclipse没有显示任何警告/错误吗?