WangXiaoJin opened a new issue, #270:
URL: https://github.com/apache/dubbo-spi-extensions/issues/270

   
   - [x] I have searched the [issues](https://github.com/apache/dubbo/issues) 
of this repository and believe that this is not a duplicate.
   
   ### Environment
   
   * Dubbo version: 3.2.3
   * Operating System version: win10
   * Java version: 1.8
   
   ### Steps to reproduce this issue
   
   The `HessianProtocol.HessianHandler` class in `dubbo-rpc-hessian:1.0.1` is  
incompatible with `dubbo:3.2.3`,please upgrade the dubbo-rpc-hessian jar.
   
   ### Actual Behavior
   
   `HttpHandler` interface definition in Dubbo3.2.3 
   ```java
   public interface HttpHandler<REQUEST, RESPONSE> {
   
       /**
        * invoke.
        *
        * @param request  request.
        * @param response response.
        * @throws IOException
        */
       void handle(REQUEST request, RESPONSE response) throws IOException;
   
   }
   ```
   
   `org.apache.dubbo.rpc.protocol.hessian.HessianProtocol.HessianHandler` 
implementation in dubbo-rpc-hessian:1.0.1
   ```java
   private class HessianHandler implements HttpHandler {
   
           @Override
           public void handle(HttpServletRequest request, HttpServletResponse 
response)
                   throws IOException, ServletException {
               ......
           }
   
       }
   ```
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org

Reply via email to