How to install JDBC driver in Eclipse web project without facing java.lang.ClassNotFoundexception

后端 未结 13 2851
梦毁少年i
梦毁少年i 2020-11-21 11:36

There is a VERY similar question to mine but in my case I don\'t have any duplicate jars in my build path, so the solution does not work for me. I\'ve searched google for a

13条回答
  •  别跟我提以往
    2020-11-21 11:44

    for this error:

    java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
    

    you need to:

    Import java.sql.*;
    Import com.mysql.jdbc.Driver;
    

    even if its not used till app running.

提交回复
热议问题