1. 安装JUnit File-->settings-->Plguins-->Browse repositories-->输入JUnit-->选择JUnit Generator V2.0安装 2. 配置test文件夹 3. 使用 import org.junit.Test; public class TestJUnit…
1. 目录 2. mapper public interface UsersMapper { void insertUser(Users uses); int deleateUser(int id); List<Users> selectAllUser(); Users findUser(int id); int updateUser(…
1. pom.xml <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.20.RELEASE…
1. 介绍 优点:实现简单,可以注入异常信息到页面 2. 实现 @Configuration public class GlobalException1 implements HandlerExceptionResolver{ @Override public ModelAndView resolveException(HttpServletReq…
1.介绍 @Configuration启动容器 @Bean注册Bean 缺点:无法注入异常信息到页面 2.实现 @Configuration public class GlobalException1 { @Bean public SimpleMappingExceptionResolver getSimpleMappingExceptionRes…
1.介绍 建立一个专门负责处理异常的类 缺点:实现过程复杂 2.实现 @ControllerAdvice public class GlobalException { @ExceptionHandler(value={java.lang.ArithmeticException.class}) public ModelAndView arithmet…
1.SpringBot 默认的处理异常的机制 一旦程序中出现了异常,SpringBoot会向/error的url发送请求。在 springBot 中提供了一个叫BasicExceptionController 来处理/error 请求,然后跳转到默认显示异常的页面来展示异常信息。 2.修改默认页面 在src/main/resources/templ…
th:href <a th:href="@{http://www.baidu.com}">绝对路径</a><br/> <a th:href="@{/show5}">相对路径,相对于当前项目的根,相对于项目的上下文的相对路径</a><br/> <a th:href="@{~…
1.request 对应的接口:javax.servlet.http.HttpServletRequest 概念:只在一次请求上(转发不算请求,因为转发是服务器端的行为)生效,当把信息返回给客户端,该对象就被摧毁 2.session 对应的接口 :javax.servlet.http.HttpSession 概念:是服务器端的行为用于跟踪客户的状态…
1. 变量输出 th:text 输出内容 th:value 输出到value属性,例如input标签 2. 字符串操作 strings是thymeleaf的内置对象,可以直接使用 调用内置对象要用# 大部分内置对象是以s结尾,例如strings,numbers,dates ${#strings.isEmpty(str)} ${#strings.co…