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,7 +1,7 @@
package com.iluwatar.entity;
import javax.persistence.DiscriminatorValue;
import javax.persistence.Entity;
import jakarta.persistence.DiscriminatorValue;
import jakarta.persistence.Entity;
import lombok.Data;
import lombok.NoArgsConstructor;