摘要: 1.applicationContext.xml <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.or 阅读全文
posted @ 2020-03-26 12:43 两小无猜 阅读(186) 评论(0) 推荐(0) 编辑
摘要: package com.entity; import org.springframework.stereotype.Component; import javax.persistence.*; @Component @Entity @Table(name = "piano") public clas 阅读全文
posted @ 2020-03-26 12:39 两小无猜 阅读(174) 评论(0) 推荐(0) 编辑
摘要: Controller package com.controller; import com.entity.Piano; import org.dom4j.rule.Mode; import org.springframework.stereotype.Controller; import org.s 阅读全文
posted @ 2020-03-26 12:37 两小无猜 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 目录结构 界面 阅读全文
posted @ 2020-03-26 12:36 两小无猜 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 这个问题是使用spring 事务管理时经常出现的错误,最开始时相当令我头疼,也不知道是哪里出现的问题。在网上找了一阵后,依然无解。意思就是说上一个事务处于激活状态中,不能开始新的数据库更新操作。 //slavesDao.delete(vsi) ; slavesDao.update(vsi) ; tx 阅读全文
posted @ 2020-03-26 12:04 两小无猜 阅读(775) 评论(0) 推荐(0) 编辑
摘要: 如果你幸运的使用springmvc+hibernate你应该检查以下springmvc的扫面范围是否是和spring framework的事务范围有冲突,虽然是公用容器,但是事务这块却不能公用的,springmvc仅仅能处理controller而已,需要注意注解排除设置。如果你没有用到springm 阅读全文
posted @ 2020-03-26 11:58 两小无猜 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 1.获取参数的集中常见注解 @PathVariable:一般我们使用URI template样式映射使用,即url/这种形式,也就是一般我们使用的GET,DELETE,PUT方法会使用到的,我们可以获取URL后所跟的参数。 @RequestParam:一般我们使用该注解来获取多个参数,在()内写入需 阅读全文
posted @ 2020-03-25 11:12 两小无猜 阅读(1580) 评论(0) 推荐(0) 编辑
摘要: 1. 创建一个Spring工程 2.配置application文件 spring.datasource.driver-class-name= com.mysql.cj.jdbc.Driver spring.datasource.url=jdbc:mysql://localhost:3306/test 阅读全文
posted @ 2020-03-24 21:38 两小无猜 阅读(1242) 评论(0) 推荐(0) 编辑
摘要: 1.Background Image Plus 改变背景 2.Alibaba Java Coding Guidelines 在阿里发布了《阿里巴巴Java开发规约》后呢,也诞生了这款扫描插件,他的作用就是按照《阿里巴巴Java开发规约》中的规范检查代码中的隐患问题,提升代码质量! 3.activat 阅读全文
posted @ 2020-03-24 18:37 两小无猜 阅读(214) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/wang3680/p/9a797602ad1de84617724e972d813171.html 阅读全文
posted @ 2020-03-23 09:11 两小无猜 阅读(147) 评论(0) 推荐(0) 编辑