文章分类 -  SpringBoot

摘要:全局异常 如果程序有异常自动跳转到这个方法 /** * 全局异常处理类 */ @ControllerAdvice public class ExceptionHandler { @org.springframework.web.bind.annotation.ExceptionHandler // 阅读全文
posted @ 2023-03-25 11:25 起始者 阅读(26) 评论(0) 推荐(0)
摘要:Java类来配置文件 这个是XML来配置 Bean <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.o 阅读全文
posted @ 2023-03-25 11:20 起始者 阅读(48) 评论(0) 推荐(0)
摘要:thymeleaf 模板引擎 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> <version>2.7.0</version 阅读全文
posted @ 2023-03-25 11:15 起始者 阅读(32) 评论(0) 推荐(0)
摘要:导入Maven依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jdbc</artifactId> </dependency SpringBoot 配置文件 serv 阅读全文
posted @ 2023-03-25 11:09 起始者 阅读(21) 评论(0) 推荐(0)