博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SSM框架整合报错
阅读量:6690 次
发布时间:2019-06-25

本文共 1187 字,大约阅读时间需要 3 分钟。

1.jdbc报错:java.lang.ClassNotFoundException: com.mysql.jdbc.driver

严重: Servlet.service() for servlet [daleystore-manager] in context with path [] threw exception [Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: 

### Error querying database.  Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is java.sql.SQLException: com.mysql.jdbc.driver
### The error may exist in com/daleystore/mapper/TbItemMapper.xml
### The error may involve com.daleystore.mapper.TbItemMapper.selectByExample
### The error occurred while executing a query
### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is java.sql.SQLException: com.mysql.jdbc.driver] with root cause
java.lang.ClassNotFoundException: com.mysql.jdbc.driver

起初我以为是框架的错误,从头到尾检查了一遍,最后才发现是.properties的配置文件中出错。

如果你也出现这种错误,百分之90%是这里写错了,有可能是用户名密码写错,

这里注意:在写username,password的时候要加上前缀 jdbc. 如 jdbc.username ,否则会认为是JVM系统环境变量的username,password同理。

也有可能是其他一些属性出错。

我这里的问题是jdbc.driver=com.mysql.jdbc.Driver的driver小写了。

转载地址:http://vtuoo.baihongyu.com/

你可能感兴趣的文章
Python--day25--复习(单继承和多继承的总结)
查看>>
Python--day39--进程池原理及效率测试
查看>>
@Html.EditFor()不能添加“只读”html属性;以及disable属性的坑
查看>>
Logger日志级别说明及设置方法、说明
查看>>
7-1 列出连通集 (25 分)
查看>>
Mybatis之Mapper动态代理
查看>>
【转】楼天城楼教主的acm心路历程(作为励志用)
查看>>
vw、vh、vmin、vmax 的含义
查看>>
04.设计模式_抽象工厂模式
查看>>
vue项目搭建
查看>>
c lang codesnippets
查看>>
Machine Learning
查看>>
Ext概述
查看>>
LeetCode – Refresh – Populating Next Right Pointers in Each Node I and II
查看>>
AngularJS模块
查看>>
LINQ TO SQL 实现无限递归查询
查看>>
Well, now we should make Discount mbt shoes
查看>>
securecrt中使用上传下载sftp
查看>>
mysql索引
查看>>
Jupyter(Ipython) Notebook 入门
查看>>