Hi guys,
I've unfortunately got an issue where I'm getting a low level class not found exception.
You can find the full stack trace attached but the jist is:
The server encountered an internal error () that prevented it from fulfilling this request.exception javax.servlet.ServletException: javax.naming.NamingException: Error while attempting to resolve reference [Root exception is javax.naming.NamingException: Could not create resource factory instance [Root exception is java.lang.ClassNotFoundException: org.apache.tomcat.dbcp.dbcp.BasicDataSourceFactory]]
This error occurs time & time again for each workspace & version of eclipse. This error doesn't occur for any of my colleagues who follow the exact same steps.
The code that goes with it is:
try { InitialContext ctx = new InitialContext(); ds = (DataSource) ctx.lookup("java:comp/env/jdbc/DefaultDB"); } catch (NamingException e) { throw new ServletException(e); }
Any help would be much appreciated
Thanks
Mark