JavaWeb 学习笔记 (三)
Posted 树.Tech
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaWeb 学习笔记 (三)相关的知识,希望对你有一定的参考价值。
#MyEclipse Tomcat v7.0 启动时,Console提示:警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property \'source\' to \'org.eclipse.jst.jee.server:learnStruts02\' did not find a matching property.
- 这只是一个警告,不用管,不会影响运行
- 参考这里:stackoverflow
#提示如下错误:HTTP Status 500 - java.sql.SQLException: Generated keys not requested. You need to specify Statement.RETURN_GENERATED_KEYS to Statement.executeUpdate(), Statement.executeLargeUpdate() or Connection.prepareStatement().
- 貌似从5.1.7版本之后的mysql-connector增加了返回GeneratedKeys的条件, 如果需要返回GeneratedKeys, 则PreparedStatement需要显示添加一个参数Statement.RETURN_GENERATED_KEYS。
- 代码按提示改成如下即可:
preSmt = conn.prepareStatement(sql,Statement.RETURN_GENERATED_KEYS);
以上是关于JavaWeb 学习笔记 (三)的主要内容,如果未能解决你的问题,请参考以下文章