简体   繁体   English

无法在dofilter方法中获得正确的响应?

[英]cant able to get proper responses in dofilter method?

I have defined servlet filter implementation in spring boot application. 我已经在Spring Boot应用程序中定义了servlet过滤器实现。 I could get only 200 response for all calls. 所有通话我都只能得到200条回应。 How to get the appropriate response in dofilter method? 如何在dofilter方法中获得适当的响应?

 public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
            throws IOException, ServletException {
        doFilterFunction.requestFunction(request, response, chain);
    }


    public void requestFunction(ServletRequest request, ServletResponse response, FilterChain chain,String x_internal_key, String session, String user, String urlPat) throws IOException, ServletException {
                    chain.doFilter(request, response);
}

我已经删除了try catch块以从servlet获取整个响应。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM