spring data jpa
2021-06-18 14:18
标签:dso test generator 说明 opera www. 1.0 设置 project 可以看出 spring data jpa 其实是一种抽象,spring将不同的 jpa 实现归纳成一种规范; 所以,如果使用 spring data jpa 的话,就不用考虑其 jpa 实现是如何使用的了,只需要掌握 spring data jpa 使用即可; pom.xml Person实体 Repository接口(重点关注对象) 使用测试 Repository:基本接口(标记接口),可根据 spring data jpa 命名规范创建相应的 crud 接口方法 CrudRepository:提供基本的crud操作 PagingAndSortingRepository:继承CrudRepository,并提供分页和排序操作 JpaRepository:继承PagingAndSortingRepository,并提供一些 findAll(xx)和 批量删除等操作 JpaSpecificationExecutor:提供多条件分页查询操作 SimpleJpaRepository.java 该类是 spring 提供的实现,提供了很多常用的操作;该类的性质类似于 JdbcTtemplate/HibernateTemplate 图片源自网络 使用该注解可以手动设置SQL语句;使用了@Query的方法可以不遵循 Repository查询方法命名规范 也能正常运行,并且支持 通配符 和 命名参数 来指定条件 Repository接口 使用测试 该注解用于修饰修改操作,一般配置@Query使用 Repository接口 Service接口 使用测试 以下案例使用 org.springframework.data.jpa.repository.JpaRepository 接口方法如下: https://docs.spring.io/spring-data/jpa/docs/2.1.0.RELEASE/api/ Repository接口 测试使用 spring data jpa 标签:dso test generator 说明 opera www. 1.0 设置 project 原文地址:https://www.cnblogs.com/tandi19960505/p/9706906.htmlspring data jpa介绍
快速入门案例
package com.td.entity;
import java.util.Date;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;
import org.hibernate.annotations.GenericGenerator;
@Entity
@Table(name = "person")
public class Person {
private Integer id;
private String name;
private Date birthday;
public Person() {
}
public Person(Integer id, String name, Date birthday) {
this.id = id;
this.name = name;
this.birthday = birthday;
}
public Date getBirthday() {
return birthday;
}
@Id
@GeneratedValue(generator="_native")
@GenericGenerator(strategy="native", name="_native")
public Integer getId() {
return id;
}
public String getName() {
return name;
}
public void setBirthday(Date birthday) {
this.birthday = birthday;
}
public void setId(Integer id) {
this.id = id;
}
public void setName(String name) {
this.name = name;
}
@Override
public String toString() {
return "Person [id=" + id + ", name=" + name + ", birthday=" + birthday + "]";
}
}
package com.td.repository;
import org.springframework.data.repository.Repository;
import com.td.entity.Person;
// spring 会使用代理来产生该接口的bean并添加到ioc容器中
public interface PersonRepository extends Repository
package com.td.test;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import com.td.entity.Person;
import com.td.repository.PersonRepository;
public class RepositoryTest {
private ApplicationContext ac = null;
{
ac = new ClassPathXmlApplicationContext("spring.xml");
}
// 根据name查询
@Test
public void test2() {
PersonRepository personRepo = ac.getBean(PersonRepository.class);
Person byName = personRepo.getByName("谭迪");
System.out.println(byName);
}
}
Repository接口介绍
基本接口有一下几种
接口介绍
spring提供的repository实现
@Repository
@Transactional(readOnly = true)
public class SimpleJpaRepository
Repository查询方法命名规则
@Query注解使用(常用)
基本说明
使用案例
package com.td.repository;
import java.util.List;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.query.Param;
import com.td.entity.Person;
public interface PersonRepository extends JpaRepository
// 测试 - @Query基本使用
@Test
public void test1() {
PersonRepository personRepo = ac.getBean(PersonRepository.class);
Person maxIdPerson = personRepo.getMaxIdPerson();
System.out.println(maxIdPerson);
}
// 测试 - 占位符绑定
@Test
public void test4() {
System.out.println("RepositoryTest.test4()");
PersonRepository personRepo = ac.getBean(PersonRepository.class);
List
@Modifying注解使用(常用)
基本说明
使用案例
public interface PersonRepository extends Repository
@Service
public class PersonService {
@Autowired
private PersonRepository personRepository;
@Transactional
public void updateNameById(String name, int id) {
personRepository.updateNameById(name, id);
}
}
public class RepositoryTest {
private ApplicationContext ac = null;
{
ac = new ClassPathXmlApplicationContext("spring.xml");
}
// 根据name查询
@Test
public void test0() {
PersonService service = ac.getBean(PersonService.class);
service.updateNameById("超人", 1); //修改
}
}
Repository接口使用
基本说明
// 表示该接口不是一个RepositoryBean,即ioc容器不会为其产生代理对象
@NoRepositoryBean
public interface JpaRepository
使用案例 - 分页和JpaSpecificationExecutor接口使用
public interface PersonRepository extends JpaRepository
@Test
public void test() {
PersonRepository personRepo = ac.getBean(PersonRepository.class);
Specification