We are facing ORA-08177 issue sometimes. Even Though we change isolation level with batch.repository.isolationlevelforcreate=ISOLATION_READ_COMMITTED, It did not solve the problem.
Spring batch version is 4.1.2.RELEASE.
Do you have any idea?
We are facing ORA-08177 issue sometimes. Even Though we change isolation level with batch.repository.isolationlevelforcreate=ISOLATION_READ_COMMITTED, It did not solve the problem.
Spring batch version is 4.1.2.RELEASE.
Do you have any idea?
If you are using Spring Boot 2.7 or later, you can use the spring.batch.jdbc.isolation-level-for-create application property to set the desired transaction isolation level:
The transaction isolation level of Spring Batch can be configured using the
spring.batch.jdbc.isolation-level-for-create
property.
For example, you can add the following property to your application.properties
file:
spring.batch.jdbc.isolation-level-for-create=read_committed