The server encountered an internal error () that prevented it from fulfilling this request.
exception
org.hibernate.exception.GenericJDBCException: could not execute statement
exception
org.hibernate.exception.GenericJDBCException: could not execute statement
2016-07-28
最新回答 / 丶子非鱼
/** * 使用默认的validate()需要在struts.xml配置 * <result name="input">/users/Users_login.jsp</result> * 才能返回登录页面去显示错误信息 */
2016-07-26
每个学生的学号在一开始就应该已经生成了,不能简单的在最大学号后面加一得到。比如,小明的学号为s0000001,我删除小明的信息后,再次添加的时候,他学号还是原来那个,而不应该是最大学号加一得到。
2016-07-25
已采纳回答 / 慕粉15160033427
c标签也是可以的,<c:forEach items="${sessionScope.list }" var="stu"> <tr class="list"> <td><c:out value="${stu.sid }"></c:out></td> <td><a href="<%=path%>/students/Students_modify.action?sid=${stu.sid}">&...
2016-07-24
最新回答 / Queen丶Star
你的Hibernate.cfg.xml配置文件中有一个常量属性值应该配置成了create,每次加载都会自动清空记录,执行测试方法的时候数据库中是没有数据的,所以测试每次都报错,吧create属性改成update就可以了
2016-07-21
SessionFactory sessionFactory= config.buildSessionFactory(serviceRegistr);
为什mo返回不了serviceRegistr
为什mo返回不了serviceRegistr
已采纳回答 / 大咪
我也是这样,后来上网上一查其实是tomcat的部署问题,压根struts的jar包就没进去,网上说一种方法是万能的,就是你现在的这种方法,把所有包全放在lib里面,方可解决,这个问题的出现也是eclipse版本的问题!!!!!我苦苦找了两个小时才解决- -
2016-07-17