Error - Could not find or load main class

后端 未结 4 1338
南笙
南笙 2021-01-29 07:27

I want to connect my java program to connect with database and retrieve the data. its compile perfectly but runtime im getting this Error : Could not find or load main cla

4条回答
  •  遥遥无期
    2021-01-29 08:10

    Default port for mysql connections is 3306. So change this line

    String url = "jdbc:mysql://localhost:80/";
    

    to this:

    String url = "jdbc:mysql://localhost:3306/";
    

提交回复
热议问题