org.apache.jasper.JasperException: java.lang.ClassCastException



exception 
org.apache.jasper.JasperException: java.lang.ClassCastException: org.apache.catalina.util.DefaultAnnotationProcessor cannot be cast to org.apache.AnnotationProcessor




在tomcat中conf/context.xml里的Context节点后面加<Loader delegate="true" />


<Context>
 <Loader delegate="true" /> 

    <!-- Default set of monitored resources -->
    <WatchedResource>WEB-INF/web.xml</WatchedResource>
 
    <!-- Uncomment this to disable session persistence across Tomcat restarts -->
    <!--
    <Manager pathname="" />
    -->

    <!-- Uncomment this to enable Comet connection tacking (provides events
         on session expiration as well as webapp lifecycle) -->
    <!--
    <Valve className="org.apache.catalina.valves.CometConnectionManagerValve" />
    -->

</Context>

猜你喜欢

转载自blog.csdn.net/sinat_23502039/article/details/77052344