SpringData使用与整合
2021-05-16 18:30
标签:员工 增加 cat ice 事务管理器 dde character java sim 整合源码:链接: https://pan.baidu.com/s/1_dDEEJoqaBTfXs2ZWsvKvA 提取码: cp6s(jar包自行寻找) author:SimpleWu time: 2018-10-06 20:51 Spring Data是Spring的一个子项目,主要用于简化数据库访问,支持NoSQL和关系数据存储,主要目标是使数据库的访问变得方便快捷。其中,所支持的NoSQL存储有MongoDB (文档数据库)、Neo4j(图形数据库)、Redis(键/值存储)和Hbase(列族数据库),所支持的关系数据存储技术有JDBC和JPA。JPA Spring Data致力于减少数据访问层(DAO)的开发量。开发者唯一要做的是声明持久层的接口和方法,其他交给Spring Data JPA来完成。 1.导包(Spring,Hibernate,Mysql,ehcache,c3p0,aspect) 2.首先使用Spring整合JPA(见JPA整合案例) 1)db.properties 2)applicationContext.xml(copy注意包位置) 3.在Spring(applicationContext)XML配置下增加SpringDataJPA的支持 ? 1)entity-manager-factory-ref: 引用的是生成EntityManager的工厂 ? 2)transaction-manager-ref:需要对事物管理进行引用 4.添加Dao层接口,这个接口需要实现Repository。Repository是一个泛型接口Repository。 5.在Dao层定义方法即可,方法是有命名规范的所以说是不能够随便乱写名字。 这样就已经与我们SpringData已经与我们Spring整合完毕了。 在上面我们已经对Spring进行了整合,现在我们来继续整合上SpringMVC。 Repository 接口是 Spring Data 中的一个空接口,它不提供任何方法,我们称为标记接口,可以在接口中声明需要的方法。 public interface Repository Spring Data可以让我们只定义接口,只要遵循 Spring Data的规范,就无需写实现类。 与继承 Repository 等价的一种方式,就是在持久层接口上使用 @RepositoryDefinition 注解,并为其指定 domainClass 和 idClass 属性。 基础的 Repository 提供了最基本的数据访问功能,其几个子接口则扩展了一些功能。它们的继承关系如下: Repository: 仅仅是一个标识,表明任何继承它的均为仓库接口类 1)CrudRepository: 继承 Repository,实现了一组 CRUD 相关的方法 2)PagingAndSortingRepository: 继承 CrudRepository,实现了一组分页排序相关的方法? 3)JpaRepository: 继承 PagingAndSortingRepository,实现一组 JPA 规范相关的方法?自定义的 5)XxxxRepository 需要继承 JpaRepository,这样的 XxxxRepository 接口就具备了通用的数据访问控制层的能力。4)JpaSpecificationExecutor: 不属于Repository体系,实现一组 JPA Criteria 查询相关的方法? 在SpringData的Repository 接口中的方法必须满足一定的规则。 按照 Spring Data 的规范,查询方法以 find | read | get 开头,涉及条件查询时,条件的属性用条件关键字连接,要注意的是:条件属性以首字母大写。? 这个接口中需要处理的类型Employee,在这个类中必须有个属性叫做LastName与gender,And是条件连接 条件的属性名称与个数要与参数的位置与个数一一对应 使用这个注解可以摆脱在Reponsitory接口中方法命名的规范,我们将查询的语句直接生命在方法上 查询中 “?X” 个数需要与方法定义的参数个数相一致,并且顺序也要一致 在注解@Query中有个参数nativeQuery将他设置为true即可开启本地SQL查询 前面我们基本都是在执行查询操作,@Query也可以做修改和删除的操作,但不支持增加。执行修改操作时,必须使用@Modifying注解。 SpringData使用与整合 标签:员工 增加 cat ice 事务管理器 dde character java sim 原文地址:https://www.cnblogs.com/SimpleWu/p/9748669.htmlSpringData
1.SpringData概述
2.SpringData实现对数据库的访问
3.SpringData环境搭建
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/jpa
jdbc.user=root
jdbc.password=root
package com.simple.springdata.service;
import org.springframework.transaction.annotation.Transactional;
import com.simple.springdata.entitys.Employee;
public interface EmployeeService {
/**
* 保存员工方法
*/
@Transactional
Employee save(Employee employee);
}
4.继续整合SpringMVC
1)创建SpringMVC配置文件
2)配置WEB.XML
5.Repository接口介绍
package com.simple.springdata.dao;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.repository.RepositoryDefinition;
import com.simple.springdata.entitys.Dept;
/**
* @author SimpleWu
* @RepositoryDefinition(domainClass=Dept.class,idClass=Integer.class)与继承
* JpaRepository
6.Repository 的子接口
7.SpringData方法定义规范
public Employee getByLastNameAndGender(String lastName,String gender)
8.@Query注解
1)索引
@Query("select d from Dept d where dno = ?1 and deptName = ?2")
public Dept testQuery(Integer dno,String deptName);
2)命名查询
@Query("select d from Dept d where dno = :dno and deptName = :deptName")
public Dept testQuery(@Param("dno")Integer dno,@Param("deptName")String deptName);
9.本地SQL查询
@Query(value="select * from tal_dept",nativeQuery=true)
public List
注意事项
@Modifyingjava
@Query("UPDATE tal_dept set name = :name WHERE dno = :dno")
public int updateTest(@Param("dno")Integer id,@Param("name")String name);