Seems that Java 6 used AppContext, and Java 7 uses ThreadGroupContext...
Anyone has experienced this:
http://stackoverflow.com/questions/13424690/java7-propertyeditors-registered-via-threadgroupcontext
?
Thanks,
Edson
Em 05/03/2013 11:27, Edson Richter escreveu:
At ServletContextListener I've created, I do register a
PropertyEditorManager that is able to convert string into
java.util.Date. The registration code is:
@Override
public void contextInitialized(ServletContextEvent sce) {
System.err.println("Property editors: inicializando");
PropertyEditorManager.registerEditor(Date.class, DateEditor.class);
System.err.println("Property editors: registrados");
}
@Override
public void contextDestroyed(ServletContextEvent sce) {
System.err.println("Property editors: iniciando remoção");
PropertyEditorManager.registerEditor(Date.class, null);
System.err.println("Property editors: desregistrados");
}
When I run the above code using Java 6 (more precisely, JRockit 6),
everything works fine.
When I run using JDK 7, I get the following exception (as if not
registered):
"type Exception report
message org.apache.jasper.JasperException: Unable to convert string ""
to class "java.util.Date" for attribute "value": Property Editor not
registered with the PropertyEditorManager
description The server encountered an internal error that prevented it
from fulfilling this request.
exception
javax.servlet.ServletException: org.apache.jasper.JasperException:
Unable to convert string "" to class "java.util.Date" for attribute
"value": Property Editor not registered with the PropertyEditorManager
br.net.studi.servlet.SecurityFilter.doFilter(SecurityFilter.java:98)"
Has anyone experienced such error? Can you please help me?
Thanks,
Edson Richter
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org