SpringData JPA示例
SpringData JPA只是SpringData中的一个子模块
JPA是一套标准接口,而Hibernate是JPA的实现
SpringData JPA 底层默认实现是使用Hibernate
1. 添加pom
#只会执行ddl
spring.jpa.hibernate.ddl-auto=update
spring.jpa.show-sql=true
spring.jackson.serialization.indent_output=true
spring.jpa.database-platform=org.hibernate.dialect.MySQLDialect
3. DDL
dropdatabaseifexists mybatis;
createdatabase mybatis;
use mybatis;
createtablemybatis.CUSTOMERS (
ID bigint auto_increment notnull,
NAMEvarchar(15) notnull,
EMAIL varchar(128) ,
PASSWORDvarchar(8) ,
PHONE int ,
ADDRESS varchar(255),
SEX char(1) ,
IS_MARRIED bit,
DESCRIPTION text,
IMAGE blob,
BIRTHDAY date,
REGISTERED_TIME timestamp,
primarykey (ID)
);
INSERTINTOmybatis.CUSTOMERS (NAME,PHONE,ADDRESS) VALUES ('老赵', '123456' , 'address 1');
INSERTINTOmybatis.CUSTOMERS (NAME,PHONE,ADDRESS) VALUES ('老王', '654321' , 'address 2');
会自动执行DDL
4. 配置SwaggerConfig
5. 使用jpa生成Customers实体
注意:需要在自增的id get方法上加上@GeneratedValue(strategy =GenerationType.AUTO)
@Id
@Column(name = "ID", unique = true, nullable = false)
@GeneratedValue(strategy = GenerationType.AUTO)
public Long getId() {
returnthis.id;
}
6. 生产CustomersJpaRepository和CustomersRepository
注意:sql里的表名必须和对象名完全一致,包括大小写
package com.example.repository;
import org.springframework.data.jpa.repository.JpaRepository;
import com.example.domain.Customers;
publicinterface CustomersJpaRepository extends JpaRepository<Customers,Long>{
}
package com.example.repository;
import java.util.List;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.Repository;
import org.springframework.data.repository.query.Param;
import com.example.domain.Customers;
//注意:sql里的表名必须和对象名完全一致,包括大小写
publicinterface CustomersRepository extends Repository<Customers,Long>{
@Query(value = "fromCustomers o where id=(select max(id) from Customers p)")
public Customers getCustomersByMaxId();
@Query(value = "fromCustomers o where o.name=?1 and o.phone=?2")
public List<Customers> queryParams1(String name, Integer phone);
@Query(value = "fromCustomers o where o.name=:name and o.phone=:phone")
public List<Customers> queryParams2(@Param("name")String name, @Param("phone")Integer phone);
@Query(value = "fromCustomers o where o.name like %?1%")
public List<Customers> queryLike1(String name);
@Query(value = "fromCustomers o where o.name like %:name%")
public List<Customers> queryLike2(@Param("name")String name);
@Query(nativeQuery = true, value = "select count(1) from Customers o")
publiclong getCount();
}
Repository:是SpringData的一个核心接口,它不提供任何方法,开发者需要在自己定义的接口中声明需要的方法。
CrudRepository:继承Repository,提供增删改查方法,可以直接调用。
PagingAndSortingRepository:继承CrudRepository,具有分页查询和排序功能(本类实例)
JpaRepository:继承PagingAndSortingRepository,针对JPA技术提供的接口
JpaSpecificationExecutor:可以执行原生SQL查询
继承不同的接口,有两个不同的泛型参数,他们是该持久层操作的类对象和主键类型。
7. 配置customersService并且加缓存
package com.example.service;
import java.util.List;
import org.springframework.data.repository.query.Param;
import com.example.domain.Customers;
publicinterface CustomersService {
public Customers getCustomersByMaxId();
public List<Customers> queryParams1(String name, Integer phone);
public List<Customers> queryParams2(@Param("name")String name, @Param("phone")Integer phone);
public List<Customers> queryLike1(String name);
public List<Customers> queryLike2(@Param("name")String name);
publiclong getCount();
public List<Customers> findAll();
public Customers findOne(Long id);
publicvoid delete(longid);
publicvoid deleteAll();
publicvoid save(List<Customers> entities);
publicvoid save(Customers entity);
}
package com.example.service.impl;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cache.annotation.CacheConfig;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.stereotype.Service;
importorg.springframework.transaction.annotation.Transactional;
import com.example.domain.Customers;
import com.example.repository.CustomersJpaRepository;
import com.example.repository.CustomersRepository;
import com.example.service.CustomersService;
@Service(value = "customersService")
@Transactional
@CacheConfig(cacheNames = "customers")
publicclass CustomersServiceImpl implements CustomersService{
@Autowired
private CustomersRepository customersRepository;
@Autowired
private CustomersJpaRepository customersJpaRepository;
@Override
@Cacheable
public Customers getCustomersByMaxId() {
returncustomersRepository.getCustomersByMaxId();
}
@Override
@Cacheable
public List<Customers> queryParams1(String name, Integer phone) {
returncustomersRepository.queryParams1(name, phone);
}
@Override
@Cacheable
public List<Customers> queryParams2(String name, Integer phone) {
return customersRepository.queryParams2(name, phone);
}
@Override
@Cacheable
public List<Customers> queryLike1(String name) {
return customersRepository.queryLike1(name);
}
@Override
@Cacheable
public List<Customers> queryLike2(String name) {
return customersRepository.queryLike2(name);
}
@Override
@Cacheable
publiclong getCount() {
return customersRepository.getCount();
}
@Override
@Cacheable
public List<Customers> findAll() {
returncustomersJpaRepository.findAll();
}
@Override
@Cacheable
public Customers findOne(Long id) {
returncustomersJpaRepository.findOne(id);
}
@Override
@Cacheable
publicvoid deleteAll(){
customersJpaRepository.deleteAll();
}
@Override
@Cacheable
publicvoid delete(longid){
customersJpaRepository.delete(id);
}
@Override
@Cacheable
publicvoid save(List<Customers> entities){
customersJpaRepository.save(entities);
}
@Override
@Cacheable
publicvoid save(Customers entity){
customersJpaRepository.save(entity);
}
}
8. 配置CustomersController
package com.example.controller;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.repository.query.Param;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import com.example.domain.Customers;
import com.example.service.CustomersService;
@RestController
@RequestMapping("/customers")
publicclass CustomersController {
@Autowired
private CustomersService customersService;
@RequestMapping(value="getCustomersByMaxId", method=RequestMethod.GET)
public Customers getCustomersByMaxId(){
returncustomersService.getCustomersByMaxId();
}
@RequestMapping(value="queryParams1/{name}/{phone}", method=RequestMethod.POST)
public List<Customers> queryParams1(String name, Integer phone){
returncustomersService.queryParams1(name, phone);
}
//http://localhost:8080/customers/queryParams2/%7Bname%7D/%7Bphone%7D?name=老赵&phone=123456
@RequestMapping(value="queryParams2/{name}/{phone}", method=RequestMethod.POST)
public List<Customers> queryParams2(@Param("name")String name, @Param("phone")Integer phone){
returncustomersService.queryParams2(name, phone);
}
@RequestMapping(value="queryLike1/{name}", method=RequestMethod.POST)
public List<Customers> queryLike1(String name){
returncustomersService.queryLike1(name);
}
//http://localhost:8080/customers/queryLike2/%7Bname%7D?name=老王
@RequestMapping(value="queryLike2/{name}", method=RequestMethod.POST)
public List<Customers> queryLike2(@Param("name")String name){
returncustomersService.queryLike2(name);
}
@RequestMapping(value="getCount", method=RequestMethod.GET)
publiclong getCount(){
returncustomersService.getCount();
}
@RequestMapping(value="findAll", method=RequestMethod.GET)
public List<Customers> findAll() {
returncustomersService.findAll();
}
@RequestMapping(value="findOne", method=RequestMethod.POST)
public Customers findOne(Long id) {
returncustomersService.findOne(id);
}
@RequestMapping(value="deleteAll", method=RequestMethod.GET)
publicvoid deleteAll(){
customersService.deleteAll();
}
@RequestMapping(value="delete", method=RequestMethod.POST)
publicvoid delete(longid){
customersService.delete(id);
}
@RequestMapping(value="saveAll", method=RequestMethod.POST)
publicvoid save(List<Customers> entities){
customersService.save(entities);
}
@RequestMapping(value="save", method=RequestMethod.POST)
publicvoid save(Customers entity){
customersService.save(entity);
}
}
9. 配置启动项DemoApplication
package com.example;
import org.springframework.boot.SpringApplication;
importorg.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cache.annotation.EnableCaching;
@SpringBootApplication
@EnableCaching
publicclass DemoApplication {
publicstaticvoid main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
//to visithttp://localhost:8080/swagger-ui.html
}
SpringData JPA示例的更多相关文章
- Spring、SpringMVC、SpringData + JPA 整合详解
原创播客,如需转载请注明出处.原文地址:http://www.cnblogs.com/crawl/p/7759874.html ------------------------------------ ...
- 6.4 SpringData JPA的使用
引言:该文档是参考尚硅谷的关于springboot教学视屏后整理而来.当然后面还加入了一些自己从网上收集整理而来的案例! 一.SpringData JPA初步使用 1. springdata简介 2. ...
- Springboot集成SpringData JPA
序 StringData JPA 是微服务框架下一款ORM框架,在微服务体系架构下,数据持久化框架,主要为SpringData JPA及Mybatis两种,这两者的具体比较,本文不做阐述,本文只简单阐 ...
- 从一个简单的 JPA 示例开始
本文主要讲述 Spring Data JPA,但是为了不至于给 JPA 和 Spring 的初学者造成较大的学习曲线,我们首先从 JPA 开始,简单介绍一个 JPA 示例:接着重构该示例,并引入 Sp ...
- springdata jpa使用Example快速实现动态查询
Example官方介绍 Query by Example (QBE) is a user-friendly querying technique with a simple interface. It ...
- 【极简版】SpringBoot+SpringData JPA 管理系统
前言 只有光头才能变强. 文本已收录至我的GitHub仓库,欢迎Star:https://github.com/ZhongFuCheng3y/3y 在上一篇中已经讲解了如何从零搭建一个SpringBo ...
- 带你搭一个SpringBoot+SpringData JPA的环境
前言 只有光头才能变强. 文本已收录至我的GitHub仓库,欢迎Star:https://github.com/ZhongFuCheng3y/3y 不知道大家对SpringBoot和Spring Da ...
- 尚硅谷springboot学习34-整合SpringData JPA
SpringData简介
- 一篇 SpringData+JPA 总结
概述 SpringData,Spring 的一个子项目,用于简化数据库访问,支持 NoSQL 和关系数据库存储 SpringData 项目所支持 NoSQL 存储 MongDB(文档数据库) Neo4 ...
随机推荐
- 通过拖拽prefab来存储相应的路径
更新了一下,支持数组和嵌套数据结构. using UnityEngine; using System.Collections; using UnityEditor; using System.Refl ...
- Jmter-Test Fragment、Include Controller和Module Controller
Test Fragment--测试片段 The Test Fragment is used in conjunction with the Include Controller and Module ...
- HDU - 5887:Herbs Gathering (map优化超大背包)
Collecting one's own plants for use as herbal medicines is perhaps one of the most self-empowering t ...
- iOS中scrollview自动滚动的实现
http://bbs.csdn.net/topics/390347330 原问题是,我要展现给用户的内容放在scrollview中,让内容从上到底自动滚动,我最开始用的是DDAutoscrollvie ...
- 隐藏控件HiddenField使用
HiddenField控件顾名思义就是隐藏输入框的服务器控件,它能让你保存那些不需要显示在页面上的且对安全性要求不高的数据. 增加HiddenField,其实是为了让整个状态管理机制的应用程度更加全面 ...
- CH0805 防线(秦腾与教学评估)
题意 lsp 学习数学竞赛的时候受尽了同仁们的鄙视,终于有一天......受尽屈辱的 lsp 黑化成为了黑暗英雄Lord lsp.就如同中二漫画的情节一样,Lord lsp 打算毁掉这个世界.数学竞赛 ...
- 洛谷P1309 瑞士轮
传送门 题目大意: 2*n个人,有初始的比赛分数和实力值. 每次比赛前总分从大到小排序,总分相同编号小的排在前面. 每次比赛是1和2比,3和4比,5和6比. 实力值大的获胜得1分. 每次比赛前排序确定 ...
- html页面设置一个跟随鼠标移动的DIV(jQuery实现)
说明业务:鼠标放到某个标签上,显示一个div,并跟随鼠标移动 html页面(直接放body里面): <a href="#" id="'+data[i].refund ...
- 基于C#的UDP协议的同步实现
一.摘要 总结基于C#的UDP协议的同步通信. 二.实验平台 Visual Studio 2010 三.实验原理 UDP传输协议同TCP传输协议的区别可查阅相关文档,此处不再赘述. 四.实例 4.1 ...
- 【SQLYOG】SSH ERROR:UNABLE TO OPEN CONNECTION:GETHOSTBYNAME:UNKNOWN ERROR牵引出来的一系列问题
出现这个问题很蹊跷,SQLyog管理过一二十台的mysql服务器或者vps,连接一直没有问题,各种服务商的都没问题,也包括阿里云的.可昨天偏偏一台阿里云的服务器本地通过SQLyog去连接它的时候报这样 ...