增加springmvc 全局异常处理、拦截器示例代码

This commit is contained in:
罗祥
2018-12-18 17:23:02 +08:00
parent c54d520737
commit c3428d4056
16 changed files with 299 additions and 2 deletions

View File

@ -39,6 +39,22 @@
<artifactId>spring-webmvc</artifactId>
<version>${spring-base-version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>4.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.54</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>27.0.1-jre</version>
</dependency>
</dependencies>
</project>