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
ByteBuffer.flip() now returns ByteBuffer, previously it returned Buffer.
Cannot run with JDK8.
Exception in thread "pool-2-thread-2" java.lang.NoSuchMethodError: java.nio.ByteBuffer.flip()Ljava/nio/ByteBuffer;
at org.springframework.integration.ip.tcp.connection.TcpNioConnection.doRead(TcpNioConnection.java:437)
at org.springframework.integration.ip.tcp.connection.TcpNioConnection.readPacket(TcpNioConnection.java:499)
at org.springframework.integration.ip.tcp.connection.AbstractConnectionFactory.lambda$processNioSelections$7(AbstractConnectionFactory.java:708)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Resolvesspring-projects#3470
In order to catch issues like this at compile time, we need to set
the `bootClasspath` to ensure API compatibility but this would need some
consistent way to point the JDK 8 libs on all platforms (CI, GitHub Workflows,
dev machines, etc).
Resolves#3470
In order to catch issues like this at compile time, we need to set
the `bootClasspath` to ensure API compatibility but this would need some
consistent way to point the JDK 8 libs on all platforms (CI, GitHub Workflows,
dev machines, etc).
See spring-projects/spring-integration-samples#291
ByteBuffer.flip()
now returnsByteBuffer
, previously it returnedBuffer
.Cannot run with JDK8.
WorkAround:
plasma-umass/doppio#497 (comment)
The text was updated successfully, but these errors were encountered: