前几天过年所以给自己放了个假,
现在开始继续,
还是老话:愿你我共同成长!!!...
今天主题 :1.Spring Boot 自定义异常
2. Spring Boot 单元测试
不管是用哪个框架,自定义异常和单元测试都是必不可少的,所以就今天学的东西还是有点意思的.
一,自定义异常(有很多种,但我这里只写实际生产环境中的自定义异常)
/**
* 实现 HandlerExceptionResolver 类
* 重写方法 resolveException
*/
@Configuration
public class GlobalException implements HandlerExceptionResolver {
@Override
public ModelAndView resolveException(HttpServletRequest request, HttpServletResponse response, Object arg2,
Exception ex) {
/**
* 这是必要的返回视图
**/
ModelAndView mv = new ModelAndView();
/**
* 异常不同,跳转不同页面
* 根据项目需求添加对应的异常及跳转页面
* */
if (ex instanceof ArithmeticException) {
mv.setViewName("error1");
}
if (ex instanceof NullPointerException) {
mv.setViewName("error2");
}
/**
* 在视图中添加异常信息
*/
mv.addObject("error", ex.toString());
return mv;
}
}
这是对应的error.html页面(本来有两个,但是我懒,就贴一个的代码了,没事另一个页面代码几乎一样,同志们自己想吧)
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>错误提示页面-ArithmeticException</title>
</head>
<body>
出错了,请与管理员联系。。。
<span th:text="${error}"></span>
</body>
</html>
这是效果图
二,单元测试,
和自定义异常不同,单元测试需要添加对应的jar包咋走pom.xml里
<!-- 添加 junit 环境的 jar 包 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
</dependency>
我是把测试类放到test文件夹下
这是代码(看到classes对应的app.class没,说明这也是需要启动类的,注意,注解是不能少的,具体你想测试什么方法就自己写一个,大概的模板就是这样)
@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest(classes= {App.class})
public class userServiceTest {
@Autowired
private UserDemoServiceImpl us;
@Test
public void shoWMassage() {
this.us.showMassage();
}
}
写好后不需要启动app.class启动类,直接在单元测试里点击右键---run as --- junit test
看控制塔是不是你期望的结果
.