I make this call to the "CookieHandler" class from the start of the JSP:
<%
CookieHandler handler = new CookieHandler();
if(handler.checkLogged(request, response)){
%>
It happens that I do not stop having this error, I do not know why:
org.apache.jasper.JasperException: PWC6033: Error in Javac compilation for JSP
PWC6199: Generated servlet error: source value 1.5 is obsolete and will be removed in a future release
PWC6199: Generated servlet error: target value 1.5 is obsolete and will be removed in a future release
PWC6199: Generated servlet error: To suppress warnings about obsolete options, use -Xlint: -options.
PWC6197: An error occurred at line: 9 in the jsp file: /SeccionUsuarios.jsp PWC6199: Generated servlet error: can not find symbol symbol: class CookieHandler location: class org.apache.jsp.SeccionUsuarios_jsp
PWC6197: An error occurred at line: 9 in the jsp file: /SeccionUsuarios.jsp PWC6199: Generated servlet error: can not find symbol symbol: class CookieHandler location: class org.apache.jsp.SeccionUsuarios_jsp
The class "CookieHandler" is in the default package of the project, because this project is only to teach some Java EE things (that is, nothing serious), but it still amazes me why I have this error. Does anyone know what happens?