Small question regarding Spring Webflux and Java, reproducible among any 2.x+ versions.
I see often in my logs, exceptions like:
Failed to select the application-level protocol:
io.netty.handler.ssl.NotSslRecordException: not an SSL/TLS record: 1201003400000000000015000601001b000102001c000c0300280004ff080001550000004d5353514c3365727665720078080000
at io.netty.handler.ssl.SslHandler.decodeJdkCompatible(SslHandler.java:1216) ~[netty-handler-4.1.66.Final.jar!/:4.1.66.Final]
TLS handshake failed:
io.netty.handler.ssl.NotSslRecordException: not an SSL/TLS record: 006a0000010000000136012c000008007fff7f08000000010020003a0000000000000000000000000000000034e600000001000000000000000028434f4e4e4543545f444154413d28434f4d4d414e443d56455253494f4e2929
at io.netty.handler.ssl.SslHandler.decodeJdkCompatible(SslHandler.java:1216) ~[netty-handler-4.1.66.Final.jar!/:4.1.66.Final]
I was wondering, what is the meaning of the part after "not an SSL/TLS record" please? The long piece of gibberish "12010034000000[...] 006a0000010000[...]"
Thank you