spring mvc controller中的异常封装
http://abc08010051.iteye.com/blog/2031992
一直以来都在用spring mvc做mvc框架,我使用的不是基于注解的,还是使用的基于xml的,在controller里一般都会加上一个异常捕捉,能分析出来的异常,提示出具体信息,不能预料的异常,返回一个统一的异常提示信息,未封装前的代码为:
- public ModelAndView addBigDeal(HttpServletRequest request, HttpServletResponse response) throws Exception {
- JSONObject jsonObject = new JSONObject();
- try {
- String sessionId = WebUtils.getStringValue(request, "sessionId", true);
- String pl_id = WebUtils.getStringValue(request, "pl_id", true);
- String vsr_id = WebUtils.getStringValue(request, "vsr_id", true);
- String cmnts = WebUtils.getStringValue(request, "cmnts", false);
- if (!StringUtils.isBlank(cmnts)) {
- cmnts = new String(Base64Utils.decode(cmnts), "UTF-8");
- }
- JSONObject result = new JSONObject();
- result.put("dataId", this.storeVsrService.addBigDeal(pl_id, vsr_id, cmnts));
- jsonObject.put("data", result);
- jsonObject.put("status", CommonUtils.getSubStatus(" add bigDeal successfully!"));
- } catch (GenericException e) {
- jsonObject.put("status", CommonUtils.getSubStatus(false, "000001", e.getMsg()));
- jsonObject.put("data", "");
- logger.error("error !", e);
- } catch (Exception e) {
- jsonObject.put("status", CommonUtils.getSubStatus(false, "000001", "网络或其他错误,请联系管理员!"));
- jsonObject.put("data", "");
- logger.error("error !", e);
- }
- response.getWriter().write(jsonObject.toString());
- return null;
- }
GenericException为自定义异常的父类,自定义的异常都要继承该类
上面代码的缺点:每写一个方法时,都要重复的写这一段:
- try {
- } catch (GenericException e) {
- jsonObject.put("status", CommonUtils.getSubStatus(false, "000001", e.getMsg()));
- jsonObject.put("data", "");
- logger.error("error !", e);
- } catch (Exception e) {
- jsonObject.put("status", CommonUtils.getSubStatus(false, "000001", "网络或其他错误,请联系管理员!"));
- jsonObject.put("data", "");
- logger.error("error !", e);
- }
因为每一个controller都会继承MultiActionController,现在在每一个controller和自己定义的controller里抽象一层,因为所有controller里的方法入口
都是MultiActionController里的handleRequestInternal方法,所以重写该方法,把异常捕捉放到这个统一的入口和出口里,
新增加的类为BaseController,封装后的代码如下:
- package com.intel.store.controller;
- import com.intel.store.common.CommonUtils;
- import com.intel.store.exception.GenericException;
- import org.codehaus.jettison.json.JSONObject;
- import org.slf4j.Logger;
- import org.slf4j.LoggerFactory;
- import org.springframework.web.servlet.ModelAndView;
- import org.springframework.web.servlet.mvc.multiaction.MultiActionController;
- import org.springframework.web.servlet.mvc.multiaction.NoSuchRequestHandlingMethodException;
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
- /**
- * mvc controller类的基类,用于一般controller的继承,
- * 把异常控制模块提取到基类,
- * 使开发更加简洁,快速
- * Created with IntelliJ IDEA.
- * User: malone
- * Date: 14-3-17
- * Time: 上午10:21
- * To change this template use File | Settings | File Templates.
- */
- public class BaseController<T extends BaseController<T>> extends MultiActionController {
- private Class<T> subclass;
- private Logger logger = LoggerFactory.getLogger(subclass);
- BaseController() {
- subclass = ((Class)((ParameterizedType)(this.getClass().getGenericSuperclass())).getActualTypeArguments()[0]);
- logger = LoggerFactory.getLogger(subclass);
- }
- @Override
- protected ModelAndView handleRequestInternal(HttpServletRequest request, HttpServletResponse response)
- throws Exception {
- JSONObject jsonObject = new JSONObject();
- try {
- String methodName = this.getMethodNameResolver().getHandlerMethodName(request);
- Object obj = invokeNamedMethod(methodName, request, response);
- System.out.println(obj.getClass());
- return invokeNamedMethod(methodName, request, response);
- } catch (NoSuchRequestHandlingMethodException ex) {
- return handleNoSuchRequestHandlingMethod(ex, request, response);
- } catch (GenericException e) {
- jsonObject.put("status", CommonUtils.getSubStatus(false, "000001", e.getMsg()));
- jsonObject.put("data", "");
- logger.error(e.getMsg(), e);
- response.getWriter().write(jsonObject.toString());
- return null;
- } catch (Exception e) {
- jsonObject.put("status", CommonUtils.getSubStatus(false, "000001",
- "网络或其他错误,请联系管理员!"));
- jsonObject.put("data", "");
- logger.error("error !", e);
- response.getWriter().write(jsonObject.toString());
- return null;
- }
- }
- }
这样以来所有的自定义Controller只需要继承BaseController, 然后在每个方法里就需要些try catch异常捕捉模块了,如下所示
- public ModelAndView addBigDeal(HttpServletRequest request, HttpServletResponse response) throws Exception {
- JSONObject jsonObject = new JSONObject();
- String sessionId = WebUtils.getStringValue(request, "sessionId", true);
- String pl_id = WebUtils.getStringValue(request, "pl_id", true);
- String vsr_id = WebUtils.getStringValue(request, "vsr_id", true);
- String cmnts = WebUtils.getStringValue(request, "cmnts", false);
- if (!StringUtils.isBlank(cmnts)) {
- cmnts = new String(Base64Utils.decode(cmnts), "UTF-8");
- }
- JSONObject result = new JSONObject();
- result.put("dataId", this.storeVsrService.addBigDeal(pl_id, vsr_id, cmnts));
- jsonObject.put("data", result);
- jsonObject.put("status", CommonUtils.getSubStatus(" add bigDeal successfully!"));
- response.getWriter().write(jsonObject.toString());
- return null;
- }
spring mvc controller中的异常封装的更多相关文章
- spring mvc controller中获取request head内容
spring mvc controller中获取request head内容: @RequestMapping("/{mlid}/{ptn}/{name}") public Str ...
- Spring MVC Controller中解析GET方式的中文参数会乱码的问题(tomcat如何解码)
Spring MVC Controller中解析GET方式的中文参数会乱码的问题 问题描述 在工作上使用突然出现从get获取中文参数乱码(新装机器,tomcat重新下载和配置),查了半天终于找到解决办 ...
- Spring MVC Controller中GET方式传过来的中文参数会乱码的问题
Spring MVC controller 这样写法通常意味着访问该请求,GET和POST请求都行,可是经常会遇到,如果碰到参数是中文的,post请求可以,get请求过来就是乱码.如果强行对参数进行了 ...
- spring MVC controller中的方法跳转到另外controller中的某个method的方法
1. 需求背景 需求:spring MVC框架controller间跳转,需重定向.有几种情况:不带参数跳转,带参数拼接url形式跳转,带参数不拼接参数跳转,页面也能显示. 本来以为挺简单的一 ...
- spring mvc Controller中使用@Value无法获取属性值
在使用spring mvc时,实际上是两个spring容器: 1,dispatcher-servlet.xml 是一个,我们的controller就在这里,所以这个里面也需要注入属性文件 org.sp ...
- 在Spring MVC Controller中注入HttpServletRequest对象会不会造成线程安全的问题
做法: 1.比如我们在Controller的方法中,通常是直接将HttpServletRequest做为参数,而为了方便节省代码,通常会定义为全局变量,然后使用@Autowire注入. 说明: 1.观 ...
- spring mvc controller中的参数验证机制(二)
这里我们介绍以下自定义的校验器的简单的使用示例 一.包结构和主要文件 二.代码 1.自定义注解文件MyConstraint package com.knyel.validator; import ja ...
- spring mvc controller中的参数验证机制(一)
一.验证用到的注解 @Valid 对传到后台的参数的验证 @BindingResult 配合@Valid使用,验证失败后的返回 二.示例 1.传统方式 @PostMapping public User ...
- spring mvc controller间跳转 重定向 传参(转)
spring mvc controller间跳转 重定向 传参 url:http://zghbwjl.blog.163.com/blog/static/12033667220137795252845/ ...
随机推荐
- GHC extensions
OverloadedStrings 这是最常见的一个扩展,很多时候都能看到 Haskell中,数字是num的多态,比如: a :: Int a = 1 b :: Double b = 1 ...
- cygwin设置
解决乱码问题 # 设置为中文环境,使提示成为中文 export LANG =" zh_CN.UTF-8 " # 输出为中文编码 export OUTPUT_CHARSET =& ...
- python--websocket数据解析
# websocket实现原理 ''' 1.服务端开启socket,监听ip和端口 2.客户端发送连接请求(带上ip和端口) 3.服务端允许连接 4.客户端生成一个随机字符串,和magic strin ...
- AC日记——小M的作物 bzoj 3438
3438 思路: 最小割(完全不懂看的题解): s向每个作物连边,s-x ai,x-t bi: 然后s向作物集合连边,cia: 作物集合拆点向t连边,cib: 作物集合第一个点向作物连边INF: 作物 ...
- Python的程序结构[8] -> 装饰器/Decorator -> 装饰器浅析
装饰器 / Decorator 目录 关于闭包 装饰器的本质 语法糖 装饰器传入参数 1 关于闭包 / About Closure 装饰器其本质是一个闭包函数,为此首先理解闭包的含义. 闭包(Clos ...
- hiho一下第128周 后缀自动机二·重复旋律5
#1445 : 后缀自动机二·重复旋律5 时间限制:10000ms 单点时限:2000ms 内存限制:512MB 描述 小Hi平时的一大兴趣爱好就是演奏钢琴.我们知道一个音乐旋律被表示为一段数构成的数 ...
- Qt如何学习(参考官方文档)
Designers who are familiar with web development can start with QML 一共有四种安装工具 You have following opti ...
- POJ 3420 Quad Tiling (矩阵乘法)
[题目链接] http://poj.org/problem?id=3420 [题目大意] 给出一个4*n的矩阵,求用1*2的骨牌填满有多少方案数 [题解] 弄出不同情况的继承关系,用矩阵递推即可. [ ...
- 【bzoj1977】【严格次小生成树】倍增维护链上最大次大值
(上不了p站我要死了,侵权度娘背锅) Description 小 C 最近学了很多最小生成树的算法,Prim 算法.Kurskal 算法.消圈算法等等. 正当小 C 洋洋得意之时,小 P 又来泼小 C ...
- centos下配置ssh使用密钥
查询了网上的一些教程,然后根据自己的实际操作,记录自己实际配置ssh密钥的过程: 首先在centos终端切换到要链接的用户,比如用户ssh 使用该用户生成密钥: ssh-keygen -t rsa 中 ...