spring cloud gateway转发服务报错。

错误如下:

javax.net.ssl.SSLHandshakeException: error:1000009c:SSL routines:OPENSSL_internal:HTTP_REQUEST

 

在spring cloud gateway项目中,使用了SSL验证后,为了增加系统性能,引入了netty-tcnative-boringssl-static依赖来增加性能后,在项目中一些http请求访问gateway时,就会报以上错误。

 

解决方案:

检查系统中是否有http请求去访问gateway,将http请求改为https。

 

你可能感兴趣的:(spring,cloud,gateway)