亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

發布時間: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

永丰县| 辽阳市| 洮南市| 内乡县| 新闻| 资源县| 河南省| 长白| 潮州市| 罗田县| 句容市| 琼结县| 盘山县| 中卫市| 襄城县| 广元市| 鹿泉市| 枝江市| 登封市| 分宜县| 大竹县| 霍州市| 红安县| 吉水县| 昌图县| 武清区| 乌兰浩特市| 馆陶县| 洮南市| 东城区| 息烽县| 江陵县| 高尔夫| 西畴县| 自贡市| 宁海县| 余姚市| 南靖县| 迭部县| 祁东县| 康马县|