sprinboot-mybatis初学者一看就懂

使用springboot整合mybatis项目

1.springboot整合mybatis----目录结构如下:
在这里插入图片描述
2.大家都知道,springboot省去了很多配置,有人就会问配置省哪去了??
答案来了:(此地无银三百两)在pom.xml中引入依赖;如下是springboot项目的pom文件

<?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-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.4.RELEASE</version>
        <relativePath/> &

猜你喜欢

转载自blog.csdn.net/weixin_44146379/article/details/95667493