I'm facing an issue when migrating Spring Boot 1.4 to 2.5.8 with respect to spring batch. The SHORT_CONTEXT
data in the spring batch meta table BATCH_JOB_EXECUTION_CONTEXT
, seems to be causing issues. It could also be due to the jackson. The text in it is: {"map":[""]}
.
I tried changing the text in SHORT_CONTEXT
column to: {"@class", "java.util.HashMap", "map":[""]}
, but it didn't help.
Is there anyway I could migrate without changing the data in the batch meta tables?
I'm using the default version on jackson-databind, spring batch, and other packages.
I tried changing the text in the SHORT_CONTEXT
column to: {"@class", "java.util.HashMap", "map":[""]}
, as per this question, but it didn't help.