2020
11-25
11-25
SpringBoot 利用thymeleaf自定义错误页面
导入thymeleaf<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-thymeleaf</artifactId></dependency>自定义异常类建立监听异常类MyException.classpackagecom.example.demo.domain;publicclassMyExceptionextendsRuntimeException{privateintcode;privateStringmsg;publicMyException(intcode,Stringmsg){this.code=code;this.msg=msg;}public...
继续阅读 >