当前位置:   article > 正文

springboot整合mybatis_org.mybatis.spring.boot

org.mybatis.spring.boot

步骤:

1、创建springboot项目,勾选相关依赖

2、修改pom文件

3、编写application.yml(application.properties)

4、编写三层架构

5、测试

以上是springboot整合mybatis的主要步骤,其中最重要的是第三步———编写application.yml文件,这是springboot的配置文件mybatis的配置也写在里面。

一、创建springboot项目

  直接在IDEA里选择Spring Initializr,在右边的界面里修改项目名(Name),存放位置(Location),编程语言(Language),项目管理框架(Type),组织名(Group),包名(Package name),jdk,打包方式(Packaging)。

 这里我们选择maven构建项目,jdk选择17,打包方式Jar

接下来选择项目依赖,这个项目是springboot整合mybatis的web项目所以Spring Web选上,MySQL数据库驱动选上,MyBatis框架选上,然后点击Finish完成创建。

二、修改pom文件

修改pom文件主要是添加一个mybatis—spring框架,这个在创建项目时没有选项我们在这里手动添加,还有就是修改下依赖的版本,不同依赖间可能由于版本不匹配而导致服务器启动失败,修改后的pom文件如下

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>3.2.3</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.example</groupId>
  12. <artifactId>springboot_demo</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>springboot_demo</name>
  15. <description>springboot_demo</description>
  16. <properties>
  17. <java.version>17</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.mybatis</groupId>
  22. <artifactId>mybatis-spring</artifactId>
  23. <version>3.0.3</version>
  24. </dependency>
  25. <!--springbootweb依赖-->
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-web</artifactId>
  29. </dependency>
  30. <!--mybatis的springboot依赖-->
  31. <dependency>
  32. <groupId>org.mybatis.spring.boot</groupId>
  33. <artifactId>mybatis-spring-boot-starter</artifactId>
  34. <version>3.0.2</version>
  35. </dependency>
  36. <!--mysql依赖-->
  37. <dependency>
  38. <groupId>com.mysql</groupId>
  39. <artifactId>mysql-connector-j</artifactId>
  40. <scope>runtime</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-test</artifactId>
  45. <scope>test</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.mybatis.spring.boot</groupId>
  49. <artifactId>mybatis-spring-boot-starter-test</artifactId>
  50. <version>3.0.2</version>
  51. <scope>test</scope>
  52. </dependency>
  53. </dependencies>
  54. <build>
  55. <plugins>
  56. <plugin>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-maven-plugin</artifactId>
  59. </plugin>
  60. </plugins>
  61. </build>
  62. </project>

其中重点讲解下mybatis-springmybatis-spring-boot-starter这两个依赖。

1、mybatis-spring

mybatis-spring是spring整合mybatis的基础框架,是mybatis项目针对spring提供的接口专门开发的,只要是使用spring framework框架不管还使用了别的什么技术(springboot也好springMVC也罢)都是需要选择这这个框架的,这是springboot整合mybatis的基础。即使不用springboot,我们用SSM技术开发时也是要选这个的。

2、mybatis-spring-boot-starter

这是mybatis基于mybatis-spring开发的针对springboot整合mybatis的,他是依赖于mybatis-spring运行的。他的智能之处就在于当你在Mapper接口上使用了@Mapper注解之后它可以自动扫描到Mapper接口完成mapper注册,省去了之前繁琐的在配置文件中注册mapper的操作。

三、编写application.yml(application.properties)

  1. server:
  2. port: 8080
  3. spring:
  4. datasource:
  5. url: jdbc:mysql://localhost:3306/springboot
  6. driver-class-name: com.mysql.cj.jdbc.Driver
  7. username: root
  8. password: Wsz031227#
  9. mybatis:
  10. mapper-locations: classpath:mapper/*.xml
  11. configuration:
  12. map-underscore-to-camel-case: true

四、编写三层架构

mapper.xml 文件统一放在resources目录下方便管理,mapper接口写在java包下

一定要注意:必须在启动类上加@MapperScan注解和在mapper接口上加@Mapper注解这两个中间选一个,否则spring将无法扫描到mapper接口,个人建议两个都加上避免遗漏。

  1. @SpringBootApplication
  2. //在启动类上加,参数为mapper接口在的文件夹
  3. @MapperScan("com.example.springboot_demo.dao")
  4. public class SpringbootDemoApplication {
  5. public static void main(String[] args) {
  6. SpringApplication.run(SpringbootDemoApplication.class, args);
  7. }
  8. }
  1. //在mapper接口上加,直接一个@Mapper注解就完事
  2. @Mapper
  3. public interface StudentDao {
  4. int insert(Student student);
  5. }

五、测试

完成上述步骤后就可以连接数据库尽心测试了,这里就略过了。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/498146
推荐阅读
相关标签
  

闽ICP备14008679号