I went back to do some maintenance on a deployed web app and when accessing it on my
test server, I'm getting a ClassNotFoundException for a class in my WEB-INF/classes directory!
So I put this code in my
servlet's doGet() method to check:
Of course, the first thing I did was check to see if the com.domain.myapp.web.SelectPageAction.class was deployed in the WEB-INF/classes directory - and it was.
I'm running
JBoss 3.2.x with embedded
Tomcat 4.1.x, but have been all along, so I'm not sure what has changed regarding classloading.
Maybe I've just been looking at this too long!
Any suggestions.
Jack