No suitable driver found for jdbc:mysql://localhost:3306/hibernate_basic

Struts Problem Report

Struts has detected an unhandled exception:

Messages:
  1. No suitable driver found for jdbc:mysql://localhost:3306/hibernate_basic
  2. Cannot open connection
  3. Could not open Hibernate Session for transaction; nested exception is org.hibernate.exception.JDBCConnectionException: Cannot open connection
File: java/sql/DriverManager.java
Line number: 604

调试了半天,在@test程序中都能连接数据库正确

后来在 hibernate.cfg.xml中加入

<property name="connection.driver_class">com.mysql.jdbc.Driver</property>

就正常运行了

No suitable driver found for jdbc:mysql://localhost:3306/hibernate_basic

时间: 2024-10-11 14:09:17

No suitable driver found for jdbc:mysql://localhost:3306/hibernate_basic的相关文章

SQLException: No suitable driver found for jdbc:mysql://localhost:3306/xxxx

刚刚学习jsp,对着视频敲代码,报这个错误. SQLException: No suitable driver found for jdbc:mysql://localhost:3306/shop SQLState: 08001 VendorError: 0 问题,因为没有引入Driver类. final String DBDRIVER = "org.gjt.mm.mysql.Driver"; String username = "root"; String pas

No suitable driver found for jdbc:mysql://localhost:3306/****

今天在做SSH框架整合的时候,碰到了这样一个问题,在做service层测试的时候,hibernate是正常的,但是在用Struts的action层测试的时候出现了这个问题,说明这个问题是在网络连接数据库的时候出现的问题.解决方案如下: 修改hibernate.cfg.xml配置文件,在sessionFactory中添加数据库驱动,本文用的数据库是mysql,因此添加如下代码即可: <session-factory> <!-- 数据库驱动 --> <property name=

Weka连接数据库出现No suitable driver found for jdbc:mysql://localhost/dbname

今天用weka连接数据库的时候,总是提示No suitable driver found for jdbc:mysql://localhost/dbname.同样改了weka.experiment.DatabaseUtils.props下的文件,之前安装都没有出现过这样的问题.重新安装,配置jdbc驱动路径.都还是报错.找了好久,终于找到了. 解决方法: 打开weka安装目录下的RunWeka.ini文件,最后一行 cp=%CLASSPATH%;C:/Program Files/Weka-3-6

【异常】java.sql.SQLException: No suitable driver found for jdbc://mysql://hadoop001:3306/xxx

IDEA程序代码中需要访问mysql,出现 java.sql.SQLException: No suitable driver found for jdbc://mysql://hadoop001:3306/ruoze_g6 有可能是驱动没加进来,有可能是连接地址url写错了. 需要在pom中加上mysql驱动: <dependency>      <groupId>mysql</groupId>      <artifactId>mysql-connect

java.sql.SQLException: No suitable driver found for jdbc:hive://localhost:10000/default

error: java.sql.SQLException: No suitable driver found for jdbc:hive://localhost:10000/default at java.sql.DriverManager.getConnection(DriverManager.java:596) at java.sql.DriverManager.getConnection(DriverManager.java:233) at demo.utils.JDBCUtils.get

关于初次使用java jdbc遇到数据库连接不上的问题java.sql.SQLException: No suitable driver found for jdbc:mysql://127.0.0.1:3306/test

首先我们写java有很大一部分的程序员使用的是神器ecplise 那我晒晒我写的ecplise有错误的代码(其实并不是代码错误了) 就类似这样的代码,首先你需要安装mysql在你的电脑上root就是用户名,密码当然就是你设置的密码 然后我们就会出现这样的错误信息 java.lang.ClassNotFoundException: com.mysql.jdbc.Driver at java.net.URLClassLoader.findClass(URLClassLoader.java:381) 

Could not load driverClass jdbc:mysql://localhost:3306/spring

今天出现编码出现了No suitable driver found for jdbc,又是找遍了网上的资料,基本上都说是三个问题:     一是:连接URL格式出现了问题(Connection conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/XX","root","XXXX")     二是:驱动字符串出错(com.mysql.jdbc.Driver)     三是Cla

java连接mysql :No Suitable Driver Found For Jdbc 解决方法

今天出现编码出现了No suitable driver found for jdbc,又是找遍了网上的资料,基本上都说是以下个问题:    一是:连接URL格式出现了问题(Connection conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/XX","root","XXXX")    二是:驱动字符串出错(com.mysql.jdbc.Driver) 三是:Classpa

mybatis配置,idea报错:java.sql.SQLException: No suitable driver found for jdbc://localhost:3306/mybatis_test

报错信息: "C:\Program Files\Java\jdk1.8.0_211\bin\java.exe" "-javaagent:C:\Program Files\JetBrains\IntelliJ IDEA 2019.3.4\lib\idea_rt.jar=54826:C:\Program Files\JetBrains\IntelliJ IDEA 2019.3.4\bin" -Dfile.encoding=UTF-8 -classpath "C