Java EE错误集锦
IDE:eclipse
数据库:MySQL
服务器:tomcat
问题&解决方法
1.连接数据库报错
java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
原因:
未导入jdbc jar包
解决办法:
工程项目/WebCotent/Web-INF下复制jdbc jar包
tomcat目录apache-tomcat-9.0.13\lib下复制jdbc jar包
2.时区错误
java.sql.SQLException: The server time zone value '?й???׼ʱ?' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more spe ...
原因:
与系统时间不匹配,存在多个时间
解决办法:
在MySQL系统配置文件my.ini中添加default-time_zone = '+8:00'即可