org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of cla

现在应该很少人用tomcat的数据源了把,但是我确实这么干了,呵呵

环境Tomcat6,MySql5.5,出现了这个异常。尝试解决,一晚未果。过了n天,发现是笔误,所以一定不能浮躁,耐下心,找一找,一定可以解决。

在WEB-INFO下新建context.xml,内容如下:

 

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

<Context> 

<Resource name="jdbc/ds" auth="Container" 

type="javax.sql.DataSource"

maxActive="100" maxIdle="30" maxWait="-1"

username="xx" password="123456"

driverClassName="com.mysql.jdbc.Driver"

url="jdbc:mysql://localhost:3306/db_name?autoReconnect=true" />

</Context>

 

你可能感兴趣的:(tomcat,mysql,jdbc)