result依赖注入中文参数乱码

  1. result配置参数时, 需要添加charSet参数

     
         UTF-8
         "你好"
         "我是依赖注入"
     
    
  2. doExcute()方法处理请求时, 需要在response中执行MIME-Type

     // 通过获取Action的上下文, 获取response对象
     HttpServletResponse response = ServletActionContext.getResponse();
     response.setContentType("text/html; charset=utf-8");
    
  3. 编辑前: "?????""????????"

  4. 配置后: "你好""我是依赖注入"

你可能感兴趣的:(result依赖注入中文参数乱码)