Java教程

使用C3P0时出现java.sql.SQLException: No suitable driver的几种解决办法

本文主要是介绍使用C3P0时出现java.sql.SQLException: No suitable driver的几种解决办法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1、首先要检查配置文件是否有问题:连接URL格式出现了问题(Connection conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/XX","root","XXXX")

<?xml version="1.0" encoding="UTF-8"?>

<c3p0-config>
    <default-config>
        <property name="driverClass">com.mysql.jdbc.Driver</property>
        <property name="jdbcUrl">jdbc:mysql://localhost:3306/test02?useUnicode=true&amp;characterEncoding=utf8&amp;useSSL=true</property>
        <property name="user">root</property>
        <property name="password">123123</property>

        <property name="acquireIncrement">5</property>
        <property name="initialPoolSize">10</property>
        <property name="minPoolSize">5</property>
        <property name="maxPoolSize">20</property>
    </default-config>
</c3p0-config>

 

2 、检查配置文件c3p0-config.xml的位置

Java项目在/src目录下
web项目在/src/main/resources目录下

 

3 、检查Buildpath中没有加入合适的mysql_jdbc驱动
项目名上点击右键—>Build Path

这篇关于使用C3P0时出现java.sql.SQLException: No suitable driver的几种解决办法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!