20160409

今天的bug总结
有些很有意思
有些就出现的让人哭笑不得
1. No result defined for action org.action.AddAction and result success
2. ${}没有数据
3. Invalid location of tag (th).Invalid location of tag (tr).
4. Package default extends undefined package struts-default
这个只是个警告,但看着不舒服,没有去找解决方案,
5. request.seCharacterEncoding(“gb2312”); undefined for the type HttpServletRequest
这个代码是我从一个说明jsp乱码问题的博客上抄的,估计很多人都被坑过,问题就在于少写了一个t
6. Exception in thread “main” java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
没有把mysql的一个jar包放在工程里
这是官网的下载链接
下载后放到lib下就好了
我觉得这很方便
7. Exception in thread “main” com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
没有启动mysql数据库
8. java.sql.SQLException: Parameter index out of range (1 > number of parameters, which is 0).
这个最搞笑,没有重启服务器
9. jsp不能显示中文的问题

你可能感兴趣的:(bug)