91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

解決全站字符編碼問題--動態代理和靜態代理

發布時間:2020-07-09 18:23:02 來源:網絡 閱讀:503 作者:奔跑吧爽爽 欄目:開發技術

動態代理和靜態代理的區別
動態代理是在運行時,將代理類加載到內存中
靜態代理是提前把代理類寫好,然后再啟動項目的時候把代理類加載到內存中

動態代理

public class EncodingFilter implements Filter {

public void destroy() {
}

public void doFilter(ServletRequest req, ServletResponse resp, FilterChain chain) 
        throws IOException, ServletException {
    //0 強轉
    final HttpServletRequest request = (HttpServletRequest) req;
    HttpServletResponse response = (HttpServletResponse) resp;

    //1 post亂碼
    request.setCharacterEncoding("UTF-8");

    //2 使用動態代理增強request
    HttpServletRequest proxyRequest = (HttpServletRequest)Proxy.newProxyInstance(
                            EncodingFilter.class.getClassLoader(), 
                            new Class[] { HttpServletRequest.class } , 
                            new InvocationHandler(){

                                @Override
                                public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {

                                    //增強
                                    String methodName = method.getName();
                                    if("getParameter".equals(methodName)){
                                        //args 所有參數 --> getParameter("username");
                                        //1 從tomcat request獲得原始數據(亂碼)
                                        String value = request.getParameter((String)args[0]);
                                        //2 如果get請求處理亂碼
                                        if("GET".equals(request.getMethod())){
                                            value = new String( value.getBytes("ISO-8859-1") , "UTF-8");
                                        }
                                        //3 將結果返回
                                        return value;
                                    }

                                    //不需要增強的直接執行目標類的方法
                                    return method.invoke(request, args);
                                }

                            });

    chain.doFilter(proxyRequest, response);

}

public void init(FilterConfig fConfig) throws ServletException {
}

}

靜態代理(裝飾者模式)

public class EncodingFilter implements Filter {
public void destroy() {
}
public void doFilter(ServletRequest req, ServletResponse resp, FilterChain chain) 
        throws IOException, ServletException {
    //0 強轉
    HttpServletRequest request = (HttpServletRequest) req;
    HttpServletResponse response = (HttpServletResponse) resp;

    //1 post亂碼
    request.setCharacterEncoding("UTF-8");

    //2 使用裝飾者增強request
    MyRequest myRequest = new MyRequest(request);

    chain.doFilter(myRequest, response);

}

public void init(FilterConfig fConfig) throws ServletException {
}

}

/**

  • 設計模式:固定的代碼,用于解決固定問題
    • 裝飾者:對方法進行增強
      1.確定接口
      2.提供成員變量
      3.構造方法
      4.增強需要的方法
      *5.其他方法默認調用tomcat對應方法即可
  • sun 提供 HttpServletRequest 接口使用裝飾者編寫默認類,及所有的方法都沒有增強的。
    • 之后我們只需要繼承即可
  • 增強response對象,提供使用裝飾者設計模式編寫默認類:HttpServletResponseWrapper
    */

    public class MyRequest extends HttpServletRequestWrapper {
    private HttpServletRequest request; //tomcat request

    public MyRequest(HttpServletRequest request){
        super(request);
        this.request = request;
    }

    //增強

    @Override
    public String getParameter(String name) {

    //1 直接從tomcat的request獲得數據
    String value = this.request.getParameter(name);
    
    //2 如果是get,處理
    // * 請求方式
    String method = this.request.getMethod();
    if("GET".equals(method)){
        try {
            value = new String( value.getBytes("ISO-8859-1"), "UTF-8");
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        }
    }
    
        return value;
    }
    
    }
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

怀柔区| 鄄城县| 曲阳县| 淮阳县| 靖宇县| 金门县| 忻州市| 会宁县| 轮台县| 富民县| 嘉祥县| 长子县| 泽库县| 德安县| 习水县| 九江县| 互助| 铁岭县| 迁安市| 全州县| 垣曲县| 新乡县| 皮山县| 呼和浩特市| 山东省| 新丰县| 揭阳市| 曲靖市| 资兴市| 邹平县| 乐山市| 武冈市| 荣成市| 南和县| 乡城县| 克什克腾旗| 马边| 威远县| 灵石县| 湖南省| 大石桥市|