摘要: 简介: MyBatis 是一款优秀的持久层框架,它支持定制化SQL、存储过程以及高级映射 功能: 方便地定制化SQL,操作数据库对象使用简单的XML或注解来配置和映射原生类、接口和Java的POJO为数据库中的记录提供强大的动态SQL功能,可以更加灵活地使用SQL语句提供插件增强机制,可以轻松集成其 阅读全文
posted @ 2021-04-14 23:37 胖疯的小家 阅读(49) 评论(0) 推荐(0)
摘要: maven仓库查询网址:MavenRepository spring-core:Core模块主要包含Spring框架基本的核心工具类,Spring的其他组件要都要使用到这个包里的类,Core模块是其他组件的基本核心spring-beans:包含访问配置文件、创建和管理bean以及进行IOC/DI操作 阅读全文
posted @ 2021-04-14 23:35 胖疯的小家 阅读(197) 评论(0) 推荐(0)
摘要: 文件目录: 在pom.xml文件内导入: <dependencies> <!-- https://mvnrepository.com/artifact/org.springframework/spring-core --> <dependency> <groupId>org.springframew 阅读全文
posted @ 2021-04-14 23:31 胖疯的小家 阅读(75) 评论(0) 推荐(0)
摘要: 文件目录: 在pom.xml中导入: <dependencies> <!-- https://mvnrepository.com/artifact/org.springframework/spring-core --> <dependency> <groupId>org.springframewor 阅读全文
posted @ 2021-04-14 23:30 胖疯的小家 阅读(56) 评论(0) 推荐(0)
摘要: 文件目录: 准备好数据库: 在pom.xml中导入包: <dependencies> <!-- https://mvnrepository.com/artifact/org.springframework/spring-core --> <dependency> <groupId>org.sprin 阅读全文
posted @ 2021-04-14 23:28 胖疯的小家 阅读(163) 评论(0) 推荐(0)
摘要: @Aspect此注解用于表明某个类为切面类,而切面类的作用我们之前也解释过,用于整合切入点和通知 @Pointcut此注解用于声明一个切入点,表明哪些类的哪些方法需要被增强 @Before 前置通知在连接点之前运行的通知类型,它不会阻止流程进行到连接点,只是在到达连接点之前运行该通知内的行为 @Af 阅读全文
posted @ 2021-04-14 23:27 胖疯的小家 阅读(111) 评论(0) 推荐(0)
摘要: 文件目录: 导入包: <?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instan 阅读全文
posted @ 2021-04-14 23:25 胖疯的小家 阅读(56) 评论(0) 推荐(0)
摘要: 文件目录: 导入包: <groupId>org.example</groupId> <artifactId>springmvc-demo-fangneng</artifactId> <version>1.0-SNAPSHOT</version> <dependencies> <dependency> 阅读全文
posted @ 2021-04-14 23:21 胖疯的小家 阅读(79) 评论(0) 推荐(0)
摘要: SpringMVC是Spring生态圈中的WEB-MVC框架 SpringMVC和Spring的关系: SpringMVC是Spring生态圈中的一个功能模块,两者是包含与被包含的关系;SpringMVC是建立在Spring核心功能之上的一个WEB-MVC框架,是Spring核心功能的延伸和扩展。 阅读全文
posted @ 2021-04-14 23:17 胖疯的小家 阅读(60) 评论(0) 推荐(0)
摘要: 数据库的查询 首先要新建一个maver的项目然后配置好版本、文件和仓库准备好数据源代码如下: drop database if exists mybatis_demo;create database mybatis_demo;use mybatis_demo;create table user ( 阅读全文
posted @ 2021-04-05 16:17 胖疯的小家 阅读(43) 评论(0) 推荐(0)