You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
\spring-integration\spring-integration-jdbc\src\test\java\org\springframework\integration\jdbc\config\JdbcMessageStoreParserTests.java:81: warning: [deprecation] LobHandler in org.springframework.jdbc.support.lob has been deprecated
assertThat(ReflectionTestUtils.getField(store, "lobHandler")).isEqualTo(context.getBean(LobHandler.class));
^
\spring-integration\spring-integration-jdbc\src\test\java\org\springframework\integration\jdbc\store\channel\AbstractJdbcChannelMessageStoreTests.java:138: warning: [deprecation] LobHandler in org.springframework.jdbc.support.lob has been deprecated
private LobHandler lobHandler = new DefaultLobHandler();
^
\spring-integration\spring-integration-jdbc\src\test\java\org\springframework\integration\jdbc\store\channel\AbstractJdbcChannelMessageStoreTests.java:138: warning: [deprecation] DefaultLobHandler in org.springframework.jdbc.support.lob has been deprecated
private LobHandler lobHandler = new DefaultLobHandler();
^
3 warnings
The text was updated successfully, but these errors were encountered:
Fixes: spring-projects#9192
With modern drivers we don't need BLOB-specific handling anymore.
The regular `PreparedStatement.setBytes()` and `ResultSet.getBytes()`
are enough for our serialized messages
The text was updated successfully, but these errors were encountered: