Caused by: java.lang.ClassNotFoundException: oracle.jdbc.OracleDriver

前端 未结 2 1643
心在旅途
心在旅途 2020-12-19 12:30

I created a web application with ojdbc14.jar in lib folder.

However, when I start my tomcat I get an error:

Caused by: java.lang.ClassNotFoundExcepti         


        
2条回答
  •  遥遥无期
    2020-12-19 12:59

    Are you sure it exists inside webapps/yourapp/WEB-INF/lib folder? It is bound to throw that exception if it can't be seen in that specific directory.

    How do you deploy out of eclipse? Do you export a WAR file and deploy? Verify that your WAR file contains ojdbc14.jar in the specified location.

提交回复
热议问题