Skip to content

Migration Guide Spring Cloud 3.3.x to 5.x

Glenn Renfro edited this page Dec 16, 2025 · 1 revision

Single Instance Application Schema Update

As discussed in the Spring Integration Migration Guide, a new feature has been introduce that allows a lock to expire.

With this change the TASK_LOCK table will need to be updated upon migration. For example:

ALTER TABLE INT_LOCK ADD EXPIRED_AFTER TIMESTAMP NOT NULL;

Clone this wiki locally