I am trying to deploy a new spring MVC application, I have done this a dozen times, but now I am launching a really strange error, I canβt even understand what is happening:
My javaee-api is contrary to servlet-api. In the console, he writes:
INFO: validateJarFile(E:\development\workspace\conference\src\main\webapp\WEB- INF\lib\javaee-api-6.0.jar) - jar not loaded. See Servlet Spec 2.3, section 9.7.2. Offending class: javax/servlet/Servlet.class
Well, yes, this is a warning, but this jar is not loaded, and I need it. Also, I don't have servlet-api packages in my applications, etc.
In addition, the console throws this exception:
SEVERE: Error configuring application listener of class com.sun.faces.config.ConfigureListener java.lang.ClassNotFoundException: com.sun.faces.config.ConfigureListener
I mean, this jar belongs to the JSF and all that. I do not use it at all, where should he try to get such a class? O_o
I am running an application on tomcat 7
Any ideas what is going on?
source share