做为开发小组的组长,在开发中遇到了各种错误,这是解决方法及心得
Bug及错误描述 | 解决与否 |
Jsp中的页面不能居中 | 将<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html> 改成:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
|
提示No suitable driver found for jdbc:mysql://localhost:3306/travelers不能连接数据库 | Jar包版本过旧,更换新版本 |
插入数据的时候报 com.mysql.jdbc.exceptions.MySQLIntegrityConstraintViolationException: Duplicate entry '2' for key 'PRIMARY' 不能插入数据 | 插入的时候使用的是findById(2),数据库里已经用id=2了不能插入 |
用blob存储图片的时候,出现错误 | blob字段太短 |
java.sql.SQLException: No suitable driver found for jdbc:mysql://localhost:3306/travelers
java.lang.NullPointerException 登录操作时出现500及上述错误,页面不能跳转过去,会停留在 ../user.do |
驱动包版本不够新 |
2011年11月29日