Sample code using Spring Boot and Kotlin to work with JPA
Find a file
Roland Illig 9c715ce075 Fix test for updatedAt property
Both `save` and `updateCity` calls can happen at the same millisecond,
therefore the `updatedAt` was not necessarily increased.

The `Thread.sleep` method doesn't mention any guarantees of increasing
the system time mentioned by `LocalDateTime` used in `CityEntity`, but
the tests didn't fail again with this change, even when run repeatedly.
2017-11-12 15:17:24 +01:00
.mvn/wrapper Initial commit 2017-06-09 12:20:53 +02:00
domain Fix test for updatedAt property 2017-11-12 15:17:24 +01:00
web Initial commit 2017-06-09 12:20:53 +02:00
.gitignore Initial commit 2017-06-09 12:20:53 +02:00
mvnw Initial commit 2017-06-09 12:20:53 +02:00
mvnw.cmd Initial commit 2017-06-09 12:20:53 +02:00
pom.xml Remove unnecessary dependency 2017-06-16 09:15:53 +02:00
README.md Create README.md 2017-06-09 12:25:07 +02:00

spring-kotlin-jpa

This repository contains sample code using Spring Boot and Kotlin to work with JPA.