SpringDataJPA笔记(15)--Inheritance注解详解之JOINED

2023-10-11 23:50

本文主要是介绍SpringDataJPA笔记(15)--Inheritance注解详解之JOINED,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

SpringDataJPA笔记(15)–Inheritance注解详解之JOINED

在JPA中使用映射注解Inheritance,有一种策略是JOINED

JOINED – 每个类分别生成一张单独的表,但是每张表只有自己的属性,没有父类的属性,通过外键关联的形式使两张表关联起来

还是简单写个demo测试一下

先写三个实体类

@Data
@Table(name = "inheritance_joined_tb")
@Entity
@Inheritance(strategy = InheritanceType.JOINED)
public class InheritanceJoinedEntity implements Serializable {private static final long serialVersionUID = 8139674112977338603L;@Idprivate Long id;@Column(name = "joined_name")private String joinedName;
}
@Data
@Entity
@EqualsAndHashCode(callSuper = true)
@Table(name = "inheritance_joined_one_tb")
public class InheritanceJoinedOneEntity extends InheritanceJoinedEntity {private static final long serialVersionUID = 9042160117012026124L;@Column(name = "joined_one")private String joinedOne;
}
@Data
@Entity
@EqualsAndHashCode(callSuper = true)
@Table(name = "inheritance_joined_two_tb")
public class InheritanceJoinedTwoEntity extends InheritanceJoinedEntity {private static final long serialVersionUID = 9042160117012026124L;@Column(name = "joined_two")private String joinedTwo;
}

然后是三个repository接口类

public interface InheritanceJoinedRepository extends JpaRepository<InheritanceJoinedEntity, Long>, JpaSpecificationExecutor<InheritanceJoinedEntity>, Serializable {
}
public interface InheritanceJoinedOneRepository extends JpaRepository<InheritanceJoinedOneEntity, Long>, JpaSpecificationExecutor<InheritanceJoinedOneEntity>, Serializable {
}
public interface InheritanceJoinedTwoRepository extends JpaRepository<InheritanceJoinedTwoEntity, Long>, JpaSpecificationExecutor<InheritanceJoinedTwoEntity>, Serializable {
}

然后写controller类用于测试

@Autowiredprivate InheritanceJoinedRepository inheritanceJoinedRepository;@Autowiredprivate InheritanceJoinedOneRepository inheritanceJoinedOneRepository;@Autowiredprivate InheritanceJoinedTwoRepository inheritanceJoinedTwoRepository;@PostMapping("/single")public InheritanceJoinedEntity single(@RequestBody InheritanceJoinedEntity inheritanceJoinedEntity) {return inheritanceJoinedRepository.save(inheritanceJoinedEntity);}@PostMapping("/joined/one")public InheritanceJoinedOneEntity joined(@RequestBody InheritanceJoinedOneEntity inheritanceJoinedEntity) {return inheritanceJoinedOneRepository.save(inheritanceJoinedEntity);}@PostMapping("/joined/two")public InheritanceJoinedTwoEntity joined(@RequestBody InheritanceJoinedTwoEntity inheritanceJoinedEntity) {return inheritanceJoinedTwoRepository.save(inheritanceJoinedEntity);}@GetMapping("/joined")public List<InheritanceJoinedEntity> joined() {return inheritanceJoinedRepository.findAll();}@GetMapping("/joined/one")public List<InheritanceJoinedOneEntity> joinedOne() {return inheritanceJoinedOneRepository.findAll();}@GetMapping("/joined/two")public List<InheritanceJoinedTwoEntity> joinedTwo() {return inheritanceJoinedTwoRepository.findAll();}

启动程序,查看数据库,有三张表
在这里插入图片描述

分别通过三个接口写入数据,再查看数据库数据
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

通过接口查询数据的结果

在这里插入图片描述
在这里插入图片描述

欢迎关注微信交流
在这里插入图片描述

这篇关于SpringDataJPA笔记(15)--Inheritance注解详解之JOINED的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/191737

相关文章

Linux换行符的使用方法详解

《Linux换行符的使用方法详解》本文介绍了Linux中常用的换行符LF及其在文件中的表示,展示了如何使用sed命令替换换行符,并列举了与换行符处理相关的Linux命令,通过代码讲解的非常详细,需要的... 目录简介检测文件中的换行符使用 cat -A 查看换行符使用 od -c 检查字符换行符格式转换将

详解C#如何提取PDF文档中的图片

《详解C#如何提取PDF文档中的图片》提取图片可以将这些图像资源进行单独保存,方便后续在不同的项目中使用,下面我们就来看看如何使用C#通过代码从PDF文档中提取图片吧... 当 PDF 文件中包含有价值的图片,如艺术画作、设计素材、报告图表等,提取图片可以将这些图像资源进行单独保存,方便后续在不同的项目中使

Android中Dialog的使用详解

《Android中Dialog的使用详解》Dialog(对话框)是Android中常用的UI组件,用于临时显示重要信息或获取用户输入,本文给大家介绍Android中Dialog的使用,感兴趣的朋友一起... 目录android中Dialog的使用详解1. 基本Dialog类型1.1 AlertDialog(

C#数据结构之字符串(string)详解

《C#数据结构之字符串(string)详解》:本文主要介绍C#数据结构之字符串(string),具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录转义字符序列字符串的创建字符串的声明null字符串与空字符串重复单字符字符串的构造字符串的属性和常用方法属性常用方法总结摘

SpringCloud动态配置注解@RefreshScope与@Component的深度解析

《SpringCloud动态配置注解@RefreshScope与@Component的深度解析》在现代微服务架构中,动态配置管理是一个关键需求,本文将为大家介绍SpringCloud中相关的注解@Re... 目录引言1. @RefreshScope 的作用与原理1.1 什么是 @RefreshScope1.

Java中StopWatch的使用示例详解

《Java中StopWatch的使用示例详解》stopWatch是org.springframework.util包下的一个工具类,使用它可直观的输出代码执行耗时,以及执行时间百分比,这篇文章主要介绍... 目录stopWatch 是org.springframework.util 包下的一个工具类,使用它

Java进行文件格式校验的方案详解

《Java进行文件格式校验的方案详解》这篇文章主要为大家详细介绍了Java中进行文件格式校验的相关方案,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、背景异常现象原因排查用户的无心之过二、解决方案Magandroidic Number判断主流检测库对比Tika的使用区分zip

Java实现时间与字符串互相转换详解

《Java实现时间与字符串互相转换详解》这篇文章主要为大家详细介绍了Java中实现时间与字符串互相转换的相关方法,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、日期格式化为字符串(一)使用预定义格式(二)自定义格式二、字符串解析为日期(一)解析ISO格式字符串(二)解析自定义

springboot security快速使用示例详解

《springbootsecurity快速使用示例详解》:本文主要介绍springbootsecurity快速使用示例,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝... 目录创www.chinasem.cn建spring boot项目生成脚手架配置依赖接口示例代码项目结构启用s

Python中随机休眠技术原理与应用详解

《Python中随机休眠技术原理与应用详解》在编程中,让程序暂停执行特定时间是常见需求,当需要引入不确定性时,随机休眠就成为关键技巧,下面我们就来看看Python中随机休眠技术的具体实现与应用吧... 目录引言一、实现原理与基础方法1.1 核心函数解析1.2 基础实现模板1.3 整数版实现二、典型应用场景2