my spring boot microservices run currently with Spring-Boot 2.2.9.RELEASE
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.9.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
I also still use
- Spring-Cloud Hoxton.SR7
- spring-cloud-starter-sleuth 2.2.4
- spring-cloud-starter-zipkin 2.2.4
- spring-boot-starter-data-rest 2.2.9
- spring-boot-starter-quartz 2.2.9
- spring-boot-configuration-processor 2.2.9
- spring-boot-starter-web 2.2.9
- spring-cloud-starter-netflix-eureka-client 2.2.4
- spring-boot-starter-actuator 2.2.9
- spring-boot-starter-data-jpa 2.2.9
- PostgreSQL
- Logstash 6.4
- Logbook 2.1.4
- Lombok 1.18.12
dependencies.
Now I wanted switch to Spring Boot 2.3.2.RELEASE. I can compile the code without any errors. After start the service I see this
INFO: HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
log message. There are now errors. And then the deployment process stopped. Nothing happens.
At the moment I have no idea why it's not running. Has someone some tip?