搭建SpringBoot

1.用IDEA搭建

2.选择Srping initalizr


搭建SpringBoot_第1张图片

3.web框架


搭建SpringBoot_第2张图片

4.前端框架


搭建SpringBoot_第3张图片

5.选择mysql和mybatis,点击next


搭建SpringBoot_第4张图片

6.生成项目,选中不要的删掉


搭建SpringBoot_第5张图片

7.在src/main/java 下新建Controller文件夹,新建Controller,写好注解


搭建SpringBoot_第6张图片

8.建立service层

搭建SpringBoot_第7张图片

9.建立mapper层
注意这里的@MAPPER导入的包,如果运行项目,不能注入bean,可能就是导入的包错了,选择ibatis的包
这里还没有设置xml的设置,这里只是用注解的方式

搭建SpringBoot_第8张图片

10.运行主方法,就可以运行了,如果不能运行,mvn clean install下,再运行

11.集成通用Mapper和分页助手



    org.mybatis.spring.boot
    mybatis-spring-boot-starter
    1.3.1



    tk.mybatis
    mapper-spring-boot-starter
    1.1.4



    com.github.pagehelper
    pagehelper-spring-boot-starter
    1.2.1


mapper层继承extends

搭建SpringBoot_第9张图片

12.测试通用mapper和分页助手


搭建SpringBoot_第10张图片
搭建SpringBoot_第11张图片

通用mapper:https://github.com/abel533/MyBatis-Spring-Boot
是看springboot 集成通用mapper的教程

你可能感兴趣的:(搭建SpringBoot)