deps: Updated the imports in code of the single table inheritance pattern for SpringBoot 3.x (#2847)

* Updated the imports in code of the single table inheritance pattern for Spring Boot 3.x

#2825
Change javax library to jakarta

* add pom.xml
This commit is contained in:
Jun Kang
2024-03-27 03:23:06 +09:00
committed by GitHub
parent ca92c79c15
commit 6816c34218
6 changed files with 30 additions and 16 deletions
@@ -1,12 +1,12 @@
package com.iluwatar.entity;
import javax.persistence.DiscriminatorColumn;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Inheritance;
import javax.persistence.InheritanceType;
import jakarta.persistence.DiscriminatorColumn;
import jakarta.persistence.Entity;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.GenerationType;
import jakarta.persistence.Id;
import jakarta.persistence.Inheritance;
import jakarta.persistence.InheritanceType;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.EqualsAndHashCode;