摘要:
一、导入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> 二、 阅读全文
摘要:
一、SpringBoot中配置文件 SpringBoot使用一个全局的配置文件,配置文件名是固定的; 一般SpringBoot中使用这两种格式的配置文件 *application.properties *application.yml 二、yaml语法 a、基本语法 k:(空格)v:表示一对键值对( 阅读全文
摘要:
一、Spring Data Jpa的简介 spring data:其实就是spring 提供的一个操作数据的框架。而spring data JPA 只是spring data 框架下的一个基于JPA标准操作数据的模块。 spring data jpa :基于JPA的标准对数据进行操作。简化操作持久层 阅读全文
摘要:
使用方法 1: 添加依赖 mybatis <!--springBoot整合Mybatis依赖--> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</art 阅读全文