导入org.springframework.web.bind.annotation.ControllerAdvice无法解析

时间:2016-03-10 07:17:26

标签: spring-mvc exception-handling

要使用Spring实现异常处理,我尝试使用@ControllerAdvice。 但它给出了编译错误。

无法解析导入org.springframework.web.bind.annotation.ControllerAdvice

我使用的是春季版 3.0.5.RELEASE

ApplicationConext.xml

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:p="http://www.springframework.org/schema/p" 
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
            http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
            http://www.springframework.org/schema/context
            http://www.springframework.org/schema/context/spring-context-3.0.xsd
            http://www.springframework.org/schema/tx 
            http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
            http://www.springframework.org/schema/mvc 
            http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">

    <context:annotation-config />

    <mvc:annotation-driven /> 

Java类:

import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.servlet.ModelAndView;

@ControllerAdvice
public class ExceptionControllerAdvice {

    @ExceptionHandler(Exception.class)
    public ModelAndView exception(Exception e) {

        ModelAndView mav = new ModelAndView("exception");
        mav.addObject("name", e.getClass().getSimpleName());
        mav.addObject("message", e.getMessage());

        return mav;
    }
}

我错过了任何春季依赖吗? 请建议如何解决此问题。

1 个答案:

答案 0 :(得分:0)

@ControllerAdvice注释是在Spring Framework 3.2中引入的。

不再支持Spring 3.0.x,您应该考虑升级(参见the official wiki)。

顺便说一句,您应该只在配置文件中使用“版本无关”链接,例如http://www.springframework.org/schema/beans/spring-beans.xsd。升级Spring时会出现问题。