摘要:
1.index.jsp <%-- Created by IntelliJ IDEA. User: lenovo Date: 2020/3/25 Time: 14:09 To change this template use File | Settings | File Templates. --%> 阅读全文
摘要:
1.applicationContext.xml <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.or 阅读全文
摘要:
package com.entity; import org.springframework.stereotype.Component; import javax.persistence.*; @Component @Entity @Table(name = "piano") public clas 阅读全文
摘要:
Controller package com.controller; import com.entity.Piano; import org.dom4j.rule.Mode; import org.springframework.stereotype.Controller; import org.s 阅读全文
摘要:
目录结构 界面 阅读全文
摘要:
这个问题是使用spring 事务管理时经常出现的错误,最开始时相当令我头疼,也不知道是哪里出现的问题。在网上找了一阵后,依然无解。意思就是说上一个事务处于激活状态中,不能开始新的数据库更新操作。 //slavesDao.delete(vsi) ; slavesDao.update(vsi) ; tx 阅读全文
摘要:
如果你幸运的使用springmvc+hibernate你应该检查以下springmvc的扫面范围是否是和spring framework的事务范围有冲突,虽然是公用容器,但是事务这块却不能公用的,springmvc仅仅能处理controller而已,需要注意注解排除设置。如果你没有用到springm 阅读全文