1. 程式人生 > >SpringMVC框架配置檔案中的一些簡單配置

SpringMVC框架配置檔案中的一些簡單配置

一些基本的配置資訊

<context:component-scan base-package=“有Controller註解的包名”/>

框架的處理異常的方式

NameError AgeError

使用者自定義方式: 實現HandlerExceptionResolver介面的類 是異常處理器類 在配置檔案中 宣告異常處理器

註解的方式:

@ControllerAdvice 在異常類上面 和 @ExceptionHandler(value=NameException.class) 在異常方法上面

<context:component-scan base-package=“自己的包名”/>

<mvc:annotation-driven />

<mvc:resources location="/" mapping="**"/>

攔截器類 要實現 HandlerInterceptor 介面

mvc:interceptor <mvc:mapping path="/**"/> </mvc:interceptor>

mvc:interceptor <mvc:mapping path="/**"/> </mvc:interceptor>

</mvc:interceptors>