摘要: SpringBoot pom.xml 父依赖 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.2.5.RELEASE 阅读全文
posted @ 2021-07-22 17:07 ¹Reaper²ι 阅读(55) 评论(0) 推荐(0) 编辑
摘要: SpringMVC 数据处理 提交数据 : http://localhost:8080/hello?name=gorilla @RequestMapping("/hello") public String hello(String name){ System.out.println(name); r 阅读全文
posted @ 2021-07-22 17:06 ¹Reaper²ι 阅读(37) 评论(0) 推荐(0) 编辑
摘要: Spring 控制反转 Ioc , 面向切面 Aop <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3. 阅读全文
posted @ 2021-07-22 17:05 ¹Reaper²ι 阅读(59) 评论(0) 推荐(0) 编辑
摘要: Mybatis 配置文件 依赖 <!-- Mybatis依赖--> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.2</version> </dependency> 阅读全文
posted @ 2021-07-22 17:03 ¹Reaper²ι 阅读(35) 评论(0) 推荐(0) 编辑