例如,我展示了一个非常简单的Spring表单:
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://www.springframework.org/tags" prefix="s" %>
<%@ taglib uri="http://www.springframework.org/tags/form" prefix="form" %>
<%@ page session="false" %>
<form:form id="form" method="post" modelAttribute="formBean" cssClass="cleanform">
<fieldset>
<legend>Personal Info</legend>
<form:label path="name">
Name <form:errors path="name" cssClass="error" />
</form:label>
</fieldset>
</form:form>
我仍然收到2个Eclipse警告:
“List是原始类型。对泛型类型List的引用应该参数化”
他们是为了这行:
Name <form:errors path="name" cssClass="error" />
有没有办法摆脱这些警告?
答案 0 :(得分:0)
我在Juno遇到过这个问题。升级到Kepler解决了这个问题。
答案 1 :(得分:0)
来自:Is there an equivalent to java @SuppressWarnings in JSP
将<%! @SuppressWarnings("rawtypes") %>
添加到JSP的顶部应该可以解决问题。