I'm using Spring webmvc 3.2.1. I have the following code in a JSP:
<%@ taglib prefix="sf"uri="http://www.springframework.org/tags/form"%>
......
<sf:errors path="firstName"/>
I'm getting the following warning in Spring Tool Suite 3.2.0 Release:
List is a raw type. References to generic type List<E> should be parameterized
Is there a way to fix this warning? If there is a way to just turn off that specific validation for JSPs (and NOT Java code) I would be happy enough with that.
Thanks,
Johnny


Reply With Quote
