zoukankan      html  css  js  c++  java
  • Spring3.2新注解@ControllerAdvice

    @ControllerAdvice,是spring3.2提供的新注解,从名字上可以看出大体意思是控制器增强。让我们先看看@ControllerAdvice的实现:

    Java代码  收藏代码
    1. @Target(ElementType.TYPE)  
    2. @Retention(RetentionPolicy.RUNTIME)  
    3. @Documented  
    4. @Component  
    5. public @interface ControllerAdvice {  
    6.   
    7. }  

     没什么特别之处,该注解使用@Component注解,这样的话当我们使用<context:component-scan>扫描时也能扫描到,具体可参考【第十二章】零配置 之 12.3 注解实现Bean定义 ——跟我学spring3

    其javadoc定义是:

    写道
    /**
    * Indicates the annotated class assists a "Controller".
    *
    * <p>Serves as a specialization of {@link Component @Component}, allowing for
    * implementation classes to be autodetected through classpath scanning.
    *
    * <p>It is typically used to define {@link ExceptionHandler @ExceptionHandler},
    * {@link InitBinder @InitBinder}, and {@link ModelAttribute @ModelAttribute}
    * methods that apply to all {@link RequestMapping @RequestMapping} methods.
    *
    * @author Rossen Stoyanchev
    * @since 3.2
    */

    即把@ControllerAdvice注解内部使用@ExceptionHandler、@InitBinder、 @ModelAttribute注解的方法应用到所有的 @RequestMapping注解的方法。非常简单,不过只有当使用 @ExceptionHandler最有用,另外两个用处不大。

    接下来看段代码:

    Java代码  收藏代码
    1. @ControllerAdvice  
    2. public class ControllerAdviceTest {  
    3.   
    4.     @ModelAttribute  
    5.     public User newUser() {  
    6.         System.out.println("============应用到所有@RequestMapping注解方法,在其执行之前把返回值放入Model");  
    7.         return new User();  
    8.     }  
    9.   
    10.     @InitBinder  
    11.     public void initBinder(WebDataBinder binder) {  
    12.         System.out.println("============应用到所有@RequestMapping注解方法,在其执行之前初始化数据绑定器");  
    13.     }  
    14.   
    15.     @ExceptionHandler(UnauthenticatedException.class)  
    16.     @ResponseStatus(HttpStatus.UNAUTHORIZED)  
    17.     public String processUnauthenticatedException(NativeWebRequest request, UnauthenticatedException e) {  
    18.         System.out.println("===========应用到所有@RequestMapping注解的方法,在其抛出UnauthenticatedException异常时执行");  
    19.         return "viewName"; //返回一个逻辑视图名  
    20.     }  
    21. }  

    如果你的spring-mvc配置文件使用如下方式扫描bean

    Java代码  收藏代码
    1. <context:component-scan base-package="com.sishuok.es" use-default-filters="false">  
    2.        <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>  
    3.    </context:component-scan>  

     需要把@ControllerAdvice包含进来,否则不起作用:

    Java代码  收藏代码
    1. <context:component-scan base-package="com.sishuok.es" use-default-filters="false">  
    2.        <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>  
    3.        <context:include-filter type="annotation" expression="org.springframework.web.bind.annotation.ControllerAdvice"/>  
    4.    </context:component-scan>  

    1、@ModelAttribute注解的方法作用请参考SpringMVC强大的数据绑定(2)——第六章 注解式控制器详解——跟着开涛学SpringMVC中的【二、暴露表单引用对象为模型数据】,作用是一样的,只不过此处是对所有的@RequestMapping注解的方法都起作用。当需要设置全局数据时比较有用。

    2、@InitBinder注解的方法作用请参考SpringMVC数据类型转换——第七章 注解式控制器的数据验证、类型转换及格式化——跟着开涛学SpringMVC,同1类似。当需要全局注册时比较有用。

    3、@ExceptionHandler,异常处理器,此注解的作用是当出现其定义的异常时进行处理的方法,其可以使用springmvc提供的数 据绑定,比如注入HttpServletRequest等,还可以接受一个当前抛出的Throwable对象。可以参考javadoc或snowolf的Spring 注解学习手札(八)补遗——@ExceptionHandler

    该注解非常简单,大多数时候其实只@ExceptionHandler比较有用,其他两个用到的场景非常少,这样可以把异常处理器应用到所有控制器,而不是@Controller注解的单个控制器。

  • 相关阅读:
    使用Layui上传图片,并进行压缩(非原创,证实可用)
    mysql 存储过程及事件
    Redis一些简单的笔记
    RIOT 技术笔记-01 RIOT介绍
    杂七杂八-ubuntu安装eclipse
    杂七杂八-sqlyog连接mysql错误码2058
    杂七杂八-Mysql8.0忘记root密码
    RIOT学习笔记-01 cygwin安装
    Ubutun-安装远程桌面
    中间件-RocketMQ 02 Docker下的安装
  • 原文地址:https://www.cnblogs.com/xuqiudong/p/4103417.html
Copyright © 2011-2022 走看看