出现问题的原因:
jdbc配置不正确
解决方案:
1、检查是否已添加数据库驱动jar包
2、检查数据库服务是否启动
3、检查数据库配置文件
主要为:dialect,driver_class,url,username,password这五项。
务必注意检查大小写以及英文标点。
4、检查是否缺少字符集、时区等配置
示例:jdbc:mysql://localhost:3306/database?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Hongkong
注意xml文件中要将&换成&
原文地址:https://www.cnblogs.com/lxy764139720/p/12336844.html
时间: 2024-10-29 04:16:36