入门级SpringBoot+MyBatis搭建JavaWeb工程

一、场景

搭建Javaweb项目的框架有很多,但是例如SpringMVC搭建都比较繁琐(各种XML),所以该篇博客笔者将记录SpringBoot+Mybatis的整合搭建Java web工程 
关于SpringBoot的优点以及介绍,该篇博客叙述的比较清楚 

二、场景分析

1.开发环境

  • JDK:1.9
  • SpringBoot:2.0
  • Mybatis:3.2.x
  • MySQL:5.5
  • 操作系统:windows
  • IDE:IntelliJ IDEA 2018.1.5 x64

2.项目目录

入门级SpringBoot+MyBatis搭建JavaWeb工程_第1张图片

3、数据表

入门级SpringBoot+MyBatis搭建JavaWeb工程_第2张图片

三、实现方案

1、构建启动类(DemoApplication)

一般IDEA会自动生成,但是必须知道的是:启动类的位置及其重要,因为它的位置决定了它能否扫描到相应的controller、service等,启动类会扫描它所在的当前包及其子包  

入门级SpringBoot+MyBatis搭建JavaWeb工程_第3张图片

2、pom.xml中添加相应的依赖

  • web依赖
  • mybatis依赖
  • mysql依赖

入门级SpringBoot+MyBatis搭建JavaWeb工程_第4张图片

3、配置application

入门级SpringBoot+MyBatis搭建JavaWeb工程_第5张图片

4、构建实体类User

入门级SpringBoot+MyBatis搭建JavaWeb工程_第6张图片

5、构建UserMapper(与UserMapper.xml进行映射,Mapper可以理解为dao层)

6、构建UserMapper.xml(mapper的映射文件)

入门级SpringBoot+MyBatis搭建JavaWeb工程_第7张图片

7、构建service层的接口及其实现类(相关业务逻辑,这里是查询)

IUserService

UserServiceImpl

 入门级SpringBoot+MyBatis搭建JavaWeb工程_第8张图片

8、构建UserController(请求处理控制器)

这里采用@RestController注解,直接返回JSON给页面

入门级SpringBoot+MyBatis搭建JavaWeb工程_第9张图片

入门级SpringBoot+MyBatis搭建JavaWeb工程_第10张图片

注意点

如果将控制器中的@RestController改成@Controller,页面将无法显示,并且页面显示错误信息,因为@Controller都知道在SpringMVC中返回的是视图(返回值为页面名称),所以如果想返回JSON就得用@RestController

这里写图片描述

ok,这样一个SpringBoot+Mybatis项目就搭建成功了 

 

你可能感兴趣的:(java,MySql)