H

Halit Talha Türe

Halit Talha TÜRE is a senior software development engineer with more than 6 years of experience. He is a Phd candidate and an open-source contributor.

1 post How these posts are written

Posts by Halit Talha Türe

In this article, we will demonstrate an integration test where we have to persist the entities with mocked auditing date fields when JPA Auditing is enabled. Technologies used: Spring Boot 2.4.0 Spring 5.3.1 JUnit Jupiter 5.7.0 Tomcat embed 9.0.39 Java 8 1. Project Dependencies pom.xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>com.h2database</groupId> […]

Read more Mocking Spring Data DateTimeProvider