中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

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

馆陶县| 乾安县| 沂水县| 当雄县| 平阳县| 仙居县| 台北县| 达日县| 广昌县| 偏关县| 巧家县| 昌邑市| 正定县| 湘乡市| 五原县| 淅川县| 南木林县| 如皋市| 惠水县| 焉耆| 阿合奇县| 海盐县| 烟台市| 蒙城县| 京山县| 铅山县| 滦平县| 涞源县| 天津市| 奎屯市| 松潘县| 舒城县| 鄂尔多斯市| 鹤峰县| 高阳县| 崇左市| 库伦旗| 荔波县| 伊金霍洛旗| 西和县| 塔河县|