forked from eugenp/tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BAEL-1159 - Added sample with null fields (eugenp#3756)
* Squashed commit of the following: commit b31955df9638a6217a804e61faa230d8eacb293b Author: Juan Moreno <[email protected]> Date: Wed Feb 21 22:45:52 2018 -0300 Sample code for BAEL-1159 - Working with Kotlin and JPA - [email protected] * Squashed commit of the following: commit 4e6e27c914a401ee6bc599c7ffe913384137646a Author: Juan Moreno <[email protected]> Date: Wed Feb 21 23:26:20 2018 -0300 Fix package names commit b31955df9638a6217a804e61faa230d8eacb293b Author: Juan Moreno <[email protected]> Date: Wed Feb 21 22:45:52 2018 -0300 Sample code for BAEL-1159 - Working with Kotlin and JPA - [email protected] * Added sample with null fields * Removed unused dependency
- Loading branch information
Showing
4 changed files
with
42 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 11 additions & 2 deletions
13
spring-mvc-kotlin/src/main/kotlin/com/baeldung/kotlin/jpa/Person.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,24 @@ | ||
package com.baeldung.jpa | ||
|
||
import javax.persistence.CascadeType | ||
import javax.persistence.Column | ||
import javax.persistence.Entity | ||
import javax.persistence.FetchType | ||
import javax.persistence.GeneratedValue | ||
import javax.persistence.GenerationType | ||
import javax.persistence.Id | ||
import javax.persistence.OneToMany | ||
import javax.persistence.Table | ||
|
||
@Entity | ||
@Table(name = "person") | ||
data class Person( | ||
@Id | ||
@GeneratedValue(strategy = GenerationType.AUTO) | ||
@GeneratedValue(strategy = GenerationType.IDENTITY) | ||
val id: Int, | ||
val name: String) | ||
@Column(nullable = false) | ||
val name: String, | ||
@Column(nullable = true) | ||
val email: String?, | ||
@Column(nullable = true) | ||
@OneToMany(fetch = FetchType.LAZY, cascade = [CascadeType.ALL]) val phoneNumbers: List<PhoneNumber>?) |
17 changes: 17 additions & 0 deletions
17
spring-mvc-kotlin/src/main/kotlin/com/baeldung/kotlin/jpa/PhoneNumber.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package com.baeldung.jpa | ||
|
||
import javax.persistence.Column | ||
import javax.persistence.Entity | ||
import javax.persistence.GeneratedValue | ||
import javax.persistence.GenerationType | ||
import javax.persistence.Id | ||
import javax.persistence.Table | ||
|
||
@Entity | ||
@Table(name = "phone_number") | ||
data class PhoneNumber( | ||
@Id | ||
@GeneratedValue(strategy = GenerationType.IDENTITY) | ||
val id: Int, | ||
@Column(nullable = false) | ||
val number: String) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
package com.baeldung.kotlin.jpa | ||
|
||
import com.baeldung.jpa.Person | ||
import com.baeldung.jpa.PhoneNumber | ||
import org.hibernate.cfg.Configuration | ||
import org.hibernate.testing.junit4.BaseCoreFunctionalTestCase | ||
import org.hibernate.testing.transaction.TransactionUtil.doInHibernate | ||
|
@@ -21,7 +22,7 @@ class HibernateKotlinIntegrationTest : BaseCoreFunctionalTestCase() { | |
} | ||
|
||
override fun getAnnotatedClasses(): Array<Class<*>> { | ||
return arrayOf(Person::class.java) | ||
return arrayOf(Person::class.java, PhoneNumber::class.java) | ||
} | ||
|
||
override fun configure(configuration: Configuration) { | ||
|
@@ -31,13 +32,22 @@ class HibernateKotlinIntegrationTest : BaseCoreFunctionalTestCase() { | |
|
||
@Test | ||
fun givenPerson_whenSaved_thenFound() { | ||
val personToSave = Person(0, "John") | ||
doInHibernate(({ this.sessionFactory() }), { session -> | ||
val personToSave = Person(0, "John", "[email protected]", Arrays.asList(PhoneNumber(0, "202-555-0171"), PhoneNumber(0, "202-555-0102"))) | ||
session.persist(personToSave) | ||
assertTrue(session.contains(personToSave)) | ||
val personFound = session.find(Person::class.java, personToSave.id) | ||
session.refresh(personFound) | ||
assertTrue(personToSave == personFound) | ||
}) | ||
} | ||
|
||
@Test | ||
fun givenPersonWithNullFields_whenSaved_thenFound() { | ||
doInHibernate(({ this.sessionFactory() }), { session -> | ||
val personToSave = Person(0, "John", null, null) | ||
session.persist(personToSave) | ||
val personFound = session.find(Person::class.java, personToSave.id) | ||
session.refresh(personFound) | ||
assertTrue(personToSave == personFound) | ||
}) | ||
} | ||
|