首页 > 代码库 > spring 和 spirngMvc 中 异常处理
spring 和 spirngMvc 中 异常处理
spring 中 的 异常处理 使用的是aspectj
@Aspect @Component /** * * @author **** * @createData 2017年7月13日 上午8:36:23 * @说明 :出了一些空值。。。 */ public class AjaxEntityHandler { // @Pointcut("@annotation(org.zkdg.utils.annotations.AfterHandler)") @Pointcut("@annotation(org.zkdg.utils.spring.annotations.NotNullVariable)") // @Pointcut("execution(* org.dcexam.*.service.*.*(..))") public void beforeCall() { // service方法调用之前,检测参数,仅限第一个参数, 不能为空值 } /** * service发生异常时调用 */ @Pointcut("execution(* org.dcexam.*.service.*.*(..))") public void afterThrowEx() { System.out.println("************\n\n\n\n\n\n\n\n\n\n\n\n*******"); } @Around(value = "beforeCall()") public AjaxEntity doBefore(ProceedingJoinPoint point) throws Throwable { // TODO Auto-generated method stub Object[] args = point.getArgs(); if (args == null || args[0] == null) { return new AjaxEntity("warning", "未选择任何数据。。。"); } if (args[0] instanceof String) { String str = (String) args[0]; if (str.equalsIgnoreCase("")) return new AjaxEntity("warning", "未选择任何数据。。。"); } AjaxEntity ajax = (AjaxEntity) point.proceed(args); return ajax == null ? AjaxEntity.ERROR("操作失败") : ajax; } /** * * @param joinPoint * 连接点 * @param ex * 异常 * @return AjaxEntity 异常信息 */ @AfterThrowing(value = "afterThrowEx()", throwing = "ex") public void doAfterThrowEx(JoinPoint joinPoint, Exception ex) { AjaxEntity ajax = new AjaxEntity(); if (ex.getCause() instanceof SQLException) { // 数据库操作异常 ajax = AjaxEntity.ERROR("操作数据库时出现异常"); } } }
spring.xml 中 配置
<!-- 注解aop,支持注解 -->
<aop:aspectj-autoproxy />
事务 切点配置
<!-- 配置参与事务的类 -->
<aop:config expose-proxy="true" proxy-target-class="true">
<aop:pointcut id="txPointCut"
expression="execution(* org.dcexam.*.service.*.*(..))" />
<aop:advisor pointcut-ref="txPointCut" advice-ref="txAdvice" />
</aop:config>
注意 expose-proxy="true" proxy-target-class="true" 是 aspectj 代理
在springMvc 中 ,由于 spring 与 springmvc 为 不同的容器。尽量不要使用aspecj代理 ,使用spring mvc 自带的 HandlerExceptionResolver 处理 异常
/** * * @author * @createData 2017年7月13日 下午12:27:19 * @说明 :springMvc 异常处理 */ //注解,被spring 扫描到 @Component public class ExInterceptor implements HandlerExceptionResolver { @Override public ModelAndView resolveException(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) { // TODO Auto-generated method stub if (ex != null) { try { Throwable cause = ex.getCause(); if (cause instanceof SQLException) { response.setStatus(200); // json 输出 response.getWriter() .write(JsonUtils.objectToJson(AjaxEntity.ERROR("数据库操作失败!<br>" + cause.getMessage()))); } } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } } // 返回一个空的 modelandview(),必须返回,否则 异常处理配置无效。。 return new ModelAndView(); } }
不得不说,spring 是真的太强大了!!!!
spring 和 spirngMvc 中 异常处理
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。