SpringBoot+Mybatis多模块(module)项目搭建教程

Easter79
• 阅读 661

点击上方“Java知音”,选择“置顶公众号”

技术文章第一时间送达!

作者:枫本非凡

cnblogs.com/orzlin/p/9717399.html

阅****读

1. SpringBoot 整合篇

2. 手写一套迷你版HTTP服务器

3. 记住:永远不要在MySQL中使用UTF-8

4. Springboot启动原理解析

一、前言

最近公司项目准备开始重构,框架选定为SpringBoot+Mybatis,本篇主要记录了在IDEA中搭建SpringBoot多模块项目的过程。

1、开发工具及系统环境

  • IDE:IntelliJ IDEA 2018.2

  • 系统环境:mac OSX

2、项目目录结构

  • biz层:业务逻辑层

  • dao层:数据持久层

  • web层:请求处理层

二、搭建步骤

1、创建父工程

① IDEA 工具栏选择菜单 File -> New -> Project…

SpringBoot+Mybatis多模块(module)项目搭建教程

② 选择Spring Initializr,Initializr默认选择Default,点击Next

SpringBoot+Mybatis多模块(module)项目搭建教程

③ 填写输入框,点击Next

SpringBoot+Mybatis多模块(module)项目搭建教程

④ 这步不需要选择直接点Next

SpringBoot+Mybatis多模块(module)项目搭建教程

⑤ 点击Finish创建项目

SpringBoot+Mybatis多模块(module)项目搭建教程

⑥ 最终得到的项目目录结构如下

SpringBoot+Mybatis多模块(module)项目搭建教程

⑦ 删除无用的.mvn目录、src目录、mvnw及mvnw.cmd文件,最终只留.gitignore和pom.xml

SpringBoot+Mybatis多模块(module)项目搭建教程

2、创建子模块

① 选择项目根目录beta右键呼出菜单,选择New -> Module

SpringBoot+Mybatis多模块(module)项目搭建教程

② 选择Maven,点击Next

SpringBoot+Mybatis多模块(module)项目搭建教程

③ 填写ArifactId,点击Next

SpringBoot+Mybatis多模块(module)项目搭建教程

④ 修改Module name增加横杠提升可读性,点击Finish

SpringBoot+Mybatis多模块(module)项目搭建教程

⑤ 同理添加【beta-dao】、【beta-web】子模块,最终得到项目目录结构如下图

SpringBoot+Mybatis多模块(module)项目搭建教程

3、运行项目

① 在beta-web层创建com.yibao.beta.web包(注意:这是多层目录结构并非单个目录名,com >> yibao >> beta >> web)并添加入口类BetaWebApplication.java

package com.yibao.beta.web;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;/** * @author linjian * @date 2018/9/29 */@SpringBootApplicationpublic class BetaWebApplication {    public static void main(String[] args) {        SpringApplication.run(BetaWebApplication.class, args);    }}

② 在com.yibao.beta.web包中添加controller目录并新建一个controller,添加test方法测试接口是否可以正常访问

package com.yibao.beta.web.controller;import org.springframework.web.bind.annotation.GetMapping;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RestController;/** * @author linjian * @date 2018/9/29 */@RestController@RequestMapping("demo")public class DemoController {    @GetMapping("test")    public String test() {        return "Hello World!";    }}

③ 运行BetaWebApplication类中的main方法启动项目,默认端口为8080,访问http://localhost:8080/demo/test得到如下效果

SpringBoot+Mybatis多模块(module)项目搭建教程

以上虽然项目能正常启动,但是模块间的依赖关系却还未添加,下面继续完善

4、配置模块间的依赖关系

各个子模块的依赖关系:biz层依赖dao层,web层依赖biz层

① 父pom文件中声明所有子模块依赖(dependencyManagement及dependencies的区别自行查阅文档)

<dependencyManagement>    <dependencies>        <dependency>            <groupId>com.yibao.beta</groupId>            <artifactId>beta-biz</artifactId>            <version>${beta.version}</version>        </dependency>        <dependency>            <groupId>com.yibao.beta</groupId>            <artifactId>beta-dao</artifactId>            <version>${beta.version}</version>        </dependency>        <dependency>            <groupId>com.yibao.beta</groupId>            <artifactId>beta-web</artifactId>            <version>${beta.version}</version>        </dependency>    </dependencies></dependencyManagement>

其中${beta.version}定义在properties标签中

② 在beta-web层中的pom文件中添加beta-biz依赖

<dependencies>    <dependency>        <groupId>com.yibao.beta</groupId>        <artifactId>beta-biz</artifactId>    </dependency></dependencies>

③ 在beta-biz层中的pom文件中添加beta-dao依赖

<dependencies>    <dependency>        <groupId>com.yibao.beta</groupId>        <artifactId>beta-dao</artifactId>    </dependency></dependencies>

5、web层调用biz层接口测试

① 在beta-biz层创建com.yibao.beta.biz包,添加service目录并在其中创建DemoService接口类

package com.yibao.beta.biz.service;/** * @author linjian * @date 2018/9/29 */public interface DemoService {    String test();}



package com.yibao.beta.biz.service.impl;import com.yibao.beta.biz.service.DemoService;import org.springframework.stereotype.Service;/** * @author linjian * @date 2018/9/29 */@Servicepublic class DemoServiceImpl implements DemoService {    @Override    public String test() {        return "test";    }}

② DemoController通过@Autowired注解注入DemoService,修改DemoController的test方法使之调用DemoService的test方法,最终如下所示

package com.yibao.beta.web.controller;import com.yibao.beta.biz.service.DemoService;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.GetMapping;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RestController;/** * @author linjian * @date 2018/9/29 */@RestController@RequestMapping("demo")public class DemoController {    @Autowired    private DemoService demoService;    @GetMapping("test")    public String test() {        return demoService.test();    }}

③ 再次运行BetaWebApplication类中的main方法启动项目,发现如下报错

***************************APPLICATION FAILED TO START***************************Description:Field demoService in com.yibao.beta.web.controller.DemoController required a bean of type 'com.yibao.beta.biz.service.DemoService' that could not be found.Action:Consider defining a bean of type 'com.yibao.beta.biz.service.DemoService' in your configuration.

原因是找不到DemoService类,此时需要在BetaWebApplication入口类中增加包扫描,设置@SpringBootApplication注解中的scanBasePackages值为com.yibao.beta,最终如下所示

package com.yibao.beta.web;import org.mybatis.spring.annotation.MapperScan;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;/** * @author linjian * @date 2018/9/29 */@SpringBootApplication(scanBasePackages = "com.yibao.beta")@MapperScan("com.yibao.beta.dao.mapper")public class BetaWebApplication {    public static void main(String[] args) {        SpringApplication.run(BetaWebApplication.class, args);    }}

设置完后重新运行main方法,项目正常启动,访问http://localhost:8080/demo/test得到如下效果

SpringBoot+Mybatis多模块(module)项目搭建教程

6、集成Mybatis

① 父pom文件中声明mybatis-spring-boot-starter及lombok依赖

dependencyManagement>    <dependencies>        <dependency>            <groupId>org.mybatis.spring.boot</groupId>            <artifactId>mybatis-spring-boot-starter</artifactId>            <version>1.3.2</version>        </dependency>        <dependency>            <groupId>org.projectlombok</groupId>            <artifactId>lombok</artifactId>            <version>1.16.22</version>        </dependency>    </dependencies></dependencyManagement>

② 在beta-dao层中的pom文件中添加上述依赖

<dependencies>    <dependency>        <groupId>org.mybatis.spring.boot</groupId>        <artifactId>mybatis-spring-boot-starter</artifactId>    </dependency>    <dependency>        <groupId>mysql</groupId>        <artifactId>mysql-connector-java</artifactId>    </dependency>    <dependency>        <groupId>org.projectlombok</groupId>        <artifactId>lombok</artifactId>    </dependency></dependencies>

③ 在beta-dao层创建com.yibao.beta.dao包,通过mybatis-genertaor工具生成dao层相关文件(DO、Mapper、xml),存放目录如下

SpringBoot+Mybatis多模块(module)项目搭建教程

④ applicatio.properties文件添加jdbc及mybatis相应配置项

spring.datasource.driverClassName = com.mysql.jdbc.Driverspring.datasource.url = jdbc:mysql://192.168.1.1/test?useUnicode=true&characterEncoding=utf-8spring.datasource.username = testspring.datasource.password = 123456mybatis.mapper-locations = classpath:mybatis/*.xmlmybatis.type-aliases-package = com.yibao.beta.dao.entity

⑤ DemoService通过@Autowired注解注入UserMapper,修改DemoService的test方法使之调用UserMapper的selectByPrimaryKey方法,最终如下所示

package com.yibao.beta.biz.service.impl;import com.yibao.beta.biz.service.DemoService;import com.yibao.beta.dao.entity.UserDO;import com.yibao.beta.dao.mapper.UserMapper;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Service;/** * @author linjian * @date 2018/9/29 */@Servicepublic class DemoServiceImpl implements DemoService {    @Autowired    private UserMapper userMapper;    @Override    public String test() {        UserDO user = userMapper.selectByPrimaryKey(1);        return user.toString();    }}

⑥ 再次运行BetaWebApplication类中的main方法启动项目,发现如下报错

APPLICATION FAILED TO START***************************Description:Field userMapper in com.yibao.beta.biz.service.impl.DemoServiceImpl required a bean of type 'com.yibao.beta.dao.mapper.UserMapper' that could not be found.Action:Consider defining a bean of type 'com.yibao.beta.dao.mapper.UserMapper' in your configuration.

原因是找不到UserMapper类,此时需要在BetaWebApplication入口类中增加dao层包扫描,添加@MapperScan注解并设置其值为com.yibao.beta.dao.mapper,最终如下所示

package com.yibao.beta.web;import org.mybatis.spring.annotation.MapperScan;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;/** * @author linjian * @date 2018/9/29 */@SpringBootApplication(scanBasePackages = "com.yibao.beta")@MapperScan("com.yibao.beta.dao.mapper")public class BetaWebApplication {    public static void main(String[] args) {        SpringApplication.run(BetaWebApplication.class, args);    }}

设置完后重新运行main方法,项目正常启动,访问http://localhost:8080/demo/test得到如下效果

SpringBoot+Mybatis多模块(module)项目搭建教程

至此,一个简单的SpringBoot+Mybatis多模块项目已经搭建完毕,我们也通过启动项目调用接口验证其正确性。

四、总结

一个层次分明的多模块工程结构不仅方便维护,而且有利于后续微服务化。在此结构的基础上还可以扩展common层(公共组件)、server层(如dubbo对外提供的服务)

此为项目重构的第一步,后续还会的框架中集成logback、disconf、redis、dubbo等组件

五、未提到的坑

在搭建过程中还遇到一个maven私服的问题,原因是公司内部的maven私服配置的中央仓库为阿里的远程仓库,它与maven自带的远程仓库相比有些jar包版本并不全,导致在搭建过程中好几次因为没拉到相应jar包导致项目启动不了。

看完本文有收获?请转发分享给更多人

SpringBoot+Mybatis多模块(module)项目搭建教程

本文分享自微信公众号 - Java知音(Java_friends)。
如有侵权,请联系 support@oschina.cn 删除。
本文参与“OSC源创计划”,欢迎正在阅读的你也加入,一起分享。

点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
待兔 待兔
3个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Wesley13 Wesley13
3年前
00:Java简单了解
浅谈Java之概述Java是SUN(StanfordUniversityNetwork),斯坦福大学网络公司)1995年推出的一门高级编程语言。Java是一种面向Internet的编程语言。随着Java技术在web方面的不断成熟,已经成为Web应用程序的首选开发语言。Java是简单易学,完全面向对象,安全可靠,与平台无关的编程语言。
Stella981 Stella981
3年前
Docker 部署SpringBoot项目不香吗?
  公众号改版后文章乱序推荐,希望你可以点击上方“Java进阶架构师”,点击右上角,将我们设为★“星标”!这样才不会错过每日进阶架构文章呀。  !(http://dingyue.ws.126.net/2020/0920/b00fbfc7j00qgy5xy002kd200qo00hsg00it00cj.jpg)  2
Stella981 Stella981
3年前
200的大额人民币即将面世?央行:Yes!
点击上方蓝字关注我们!(https://oscimg.oschina.net/oscnet/2a1c2ac00bf54458a78c48a6c2e547d5.png)点击上方“印象python”,选择“星标”公众号重磅干货,第一时间送达!!(
可莉 可莉
3年前
200的大额人民币即将面世?央行:Yes!
点击上方蓝字关注我们!(https://oscimg.oschina.net/oscnet/2a1c2ac00bf54458a78c48a6c2e547d5.png)点击上方“印象python”,选择“星标”公众号重磅干货,第一时间送达!!(
Stella981 Stella981
3年前
SpringBoot+Mybatis多模块(module)项目搭建教程
点击上方“Java知音”,选择“置顶公众号”技术文章第一时间送达!作者:枫本非凡cnblogs.com/orzlin/p/9717399.html推荐阅读_1._SpringBoot整合篇(https://www.oschina.net/action/GoToLink?u
Wesley13 Wesley13
3年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
为什么mysql不推荐使用雪花ID作为主键
作者:毛辰飞背景在mysql中设计表的时候,mysql官方推荐不要使用uuid或者不连续不重复的雪花id(long形且唯一),而是推荐连续自增的主键id,官方的推荐是auto_increment,那么为什么不建议采用uuid,使用uuid究
Python进阶者 Python进阶者
9个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这
Easter79
Easter79
Lv1
今生可爱与温柔,每一样都不能少。
文章
2.8k
粉丝
5
获赞
1.2k