java.lang.ClassNotFoundException: org.apache.jsp.index_jsp
It’s been a while since I posted this, but I thought I would show how I figured it out (as best as I recall now). I did a Maven dependency tree to find dependency conflicts, and I removed all conflicts with exclusions in dependencies, e.g.: <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging-api</artifactId> <version>1.1</version> <exclusions> <exclusion> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </exclusion> </exclusions> … Read more