SpringMVC框架配置檔案中的一些簡單配置
阿新 • • 發佈:2018-12-15
一些基本的配置資訊
<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>