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

前端 未结 18 2196
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-22 15:41

What is wrong with the code there are lots of error while debugging. I am writing a code for a singleton class to connect with the database mysql.

Here is my code

18条回答
  •  傲寒
    傲寒 (楼主)
    2020-11-22 15:49

    You will have to include driver jar for MySQL MySQL Connector Jar in your classpath.

    If you are using Eclipse: How to add dependent libraries in Eclipse

    If you are using command line include the path to the driver jar using the -cp parameter of java.

    java -cp C:\lib\* Main
    

提交回复
热议问题