javascript
mall整合SpringBoot+MyBatis搭建基本骨架
本文主要講解mall整合SpringBoot+MyBatis搭建基本骨架,以商品品牌為例實現基本的CRUD操作及通過PageHelper實現分頁查詢。
mysql數據庫環境搭建
- 下載并安裝mysql5.7版本,下載地址:dev.mysql.com/downloads/i…
- 設置數據庫帳號密碼:root root
- 下載并安裝客戶端連接工具Navicat,下載地址:www.formysql.com/xiazai.html
- 創建數據庫mall
- 導入mall的數據庫腳本,腳本地址:github.com/macrozheng/…
項目使用框架介紹
SpringBoot
SpringBoot可以讓你快速構建基于Spring的Web應用程序,內置多種Web容器(如Tomcat),通過啟動入口程序的main函數即可運行。
PagerHelper
MyBatis分頁插件,簡單的幾行代碼就能實現分頁,在與SpringBoot整合時,只要整合了PagerHelper就自動整合了MyBatis。
PageHelper.startPage(pageNum, pageSize); //之后進行查詢操作將自動進行分頁 List<PmsBrand> brandList = brandMapper.selectByExample(new PmsBrandExample()); //通過構造PageInfo對象獲取分頁信息,如當前頁碼,總頁數,總條數 PageInfo<PmsBrand> pageInfo = new PageInfo<PmsBrand>(list); 復制代碼Druid
alibaba開源的數據庫連接池,號稱Java語言中最好的數據庫連接池。
Mybatis generator
MyBatis的代碼生成器,可以根據數據庫生成model、mapper.xml、mapper接口和Example,通常情況下的單表查詢不用再手寫mapper。
項目搭建
使用IDEA初始化一個SpringBoot項目
添加項目依賴
在pom.xml中添加相關依賴。
<parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><version>2.1.3.RELEASE</version><relativePath/> <!-- lookup parent from repository --></parent><dependencies><!--SpringBoot通用依賴模塊--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-actuator</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-aop</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId><scope>test</scope></dependency><!--MyBatis分頁插件--><dependency><groupId>com.github.pagehelper</groupId><artifactId>pagehelper-spring-boot-starter</artifactId><version>1.2.10</version></dependency><!--集成druid連接池--><dependency><groupId>com.alibaba</groupId><artifactId>druid-spring-boot-starter</artifactId><version>1.1.10</version></dependency><!-- MyBatis 生成器 --><dependency><groupId>org.mybatis.generator</groupId><artifactId>mybatis-generator-core</artifactId><version>1.3.3</version></dependency><!--Mysql數據庫驅動--><dependency><groupId>mysql</groupId><artifactId>mysql-connector-java</artifactId><version>8.0.15</version></dependency></dependencies> 復制代碼修改SpringBoot配置文件
在application.yml中添加數據源配置和MyBatis的mapper.xml的路徑配置。
server: port: 8080spring: datasource: url: jdbc:mysql://localhost:3306/mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai username: root password: rootmybatis: mapper-locations: - classpath:mapper/*.xml - classpath*:com/**/mapper/*.xml 復制代碼項目結構說明
Mybatis generator 配置文件
配置數據庫連接,Mybatis generator生成model、mapper接口及mapper.xml的路徑。
xml version="1.0" encoding="UTF-8" <generatorConfiguration><properties resource="generator.properties"/><context id="MySqlContext" targetRuntime="MyBatis3" defaultModelType="flat"><property name="beginningDelimiter" value="`"/><property name="endingDelimiter" value="`"/><property name="javaFileEncoding" value="UTF-8"/><!-- 為模型生成序列化方法--><plugin type="org.mybatis.generator.plugins.SerializablePlugin"/><!-- 為生成的Java模型創建一個toString方法 --><plugin type="org.mybatis.generator.plugins.ToStringPlugin"/><!--可以自定義生成model的代碼注釋--><commentGenerator type="com.macro.mall.tiny.mbg.CommentGenerator"><!-- 是否去除自動生成的注釋 true:是 : false:否 --><property name="suppressAllComments" value="true"/><property name="suppressDate" value="true"/><property name="addRemarkComments" value="true"/></commentGenerator><!--配置數據庫連接--><jdbcConnection driverClass="${jdbc.driverClass}"connectionURL="${jdbc.connectionURL}"userId="${jdbc.userId}"password="${jdbc.password}"><!--解決mysql驅動升級到8.0后不生成指定數據庫代碼的問題--><property name="nullCatalogMeansCurrent" value="true" /></jdbcConnection><!--指定生成model的路徑--><javaModelGenerator targetPackage="com.macro.mall.tiny.mbg.model" targetProject="mall-tiny-01\src\main\java"/><!--指定生成mapper.xml的路徑--><sqlMapGenerator targetPackage="com.macro.mall.tiny.mbg.mapper" targetProject="mall-tiny-01\src\main\resources"/><!--指定生成mapper接口的的路徑--><javaClientGenerator type="XMLMAPPER" targetPackage="com.macro.mall.tiny.mbg.mapper"targetProject="mall-tiny-01\src\main\java"/><!--生成全部表tableName設為%--><table tableName="pms_brand"><generatedKey column="id" sqlStatement="MySql" identity="true"/></table></context> </generatorConfiguration> 復制代碼運行Generator的main函數生成代碼
package com.macro.mall.tiny.mbg;import org.mybatis.generator.api.MyBatisGenerator; import org.mybatis.generator.config.Configuration; import org.mybatis.generator.config.xml.ConfigurationParser; import org.mybatis.generator.internal.DefaultShellCallback;import java.io.InputStream; import java.util.ArrayList; import java.util.List;/*** 用于生產MBG的代碼* Created by macro on 2018/4/26.*/ public class Generator {public static void main(String[] args) throws Exception {//MBG 執行過程中的警告信息List<String> warnings = new ArrayList<String>();//當生成的代碼重復時,覆蓋原代碼boolean overwrite = true;//讀取我們的 MBG 配置文件InputStream is = Generator.class.getResourceAsStream("/generatorConfig.xml");ConfigurationParser cp = new ConfigurationParser(warnings);Configuration config = cp.parseConfiguration(is);is.close();DefaultShellCallback callback = new DefaultShellCallback(overwrite);//創建 MBGMyBatisGenerator myBatisGenerator = new MyBatisGenerator(config, callback, warnings);//執行生成代碼myBatisGenerator.generate(null);//輸出警告信息for (String warning : warnings) {System.out.println(warning);}} } 復制代碼添加MyBatis的Java配置
用于配置需要動態生成的mapper接口的路徑
package com.macro.mall.tiny.config;import org.mybatis.spring.annotation.MapperScan; import org.springframework.context.annotation.Configuration;/*** MyBatis配置類* Created by macro on 2019/4/8.*/ ("com.macro.mall.tiny.mbg.mapper") public class MyBatisConfig { }復制代碼實現Controller中的接口
實現PmsBrand表中的添加、修改、刪除及分頁查詢接口。
package com.macro.mall.tiny.controller;import com.macro.mall.tiny.common.api.CommonPage; import com.macro.mall.tiny.common.api.CommonResult; import com.macro.mall.tiny.mbg.model.PmsBrand; import com.macro.mall.tiny.service.PmsBrandService; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.validation.BindingResult; import org.springframework.web.bind.annotation.*;import java.util.List;/*** 品牌管理Controller* Created by macro on 2019/4/19.*/ ("/brand") public class PmsBrandController {private PmsBrandService demoService;private static final Logger LOGGER = LoggerFactory.getLogger(PmsBrandController.class);(value = "listAll", method = RequestMethod.GET)public CommonResult<List<PmsBrand>> getBrandList() {return CommonResult.success(demoService.listAllBrand());}(value = "/create", method = RequestMethod.POST)public CommonResult createBrand(@RequestBody PmsBrand pmsBrand) {CommonResult commonResult;int count = demoService.createBrand(pmsBrand);if (count == 1) {commonResult = CommonResult.success(pmsBrand);LOGGER.debug("createBrand success:{}", pmsBrand);} else {commonResult = CommonResult.failed("操作失敗");LOGGER.debug("createBrand failed:{}", pmsBrand);}return commonResult;}(value = "/update/{id}", method = RequestMethod.POST)public CommonResult updateBrand(@PathVariable("id") Long id, @RequestBody PmsBrand pmsBrandDto, BindingResult result) {CommonResult commonResult;int count = demoService.updateBrand(id, pmsBrandDto);if (count == 1) {commonResult = CommonResult.success(pmsBrandDto);LOGGER.debug("updateBrand success:{}", pmsBrandDto);} else {commonResult = CommonResult.failed("操作失敗");LOGGER.debug("updateBrand failed:{}", pmsBrandDto);}return commonResult;}(value = "/delete/{id}", method = RequestMethod.GET)public CommonResult deleteBrand(@PathVariable("id") Long id) {int count = demoService.deleteBrand(id);if (count == 1) {LOGGER.debug("deleteBrand success :id={}", id);return CommonResult.success(null);} else {LOGGER.debug("deleteBrand failed :id={}", id);return CommonResult.failed("操作失敗");}}(value = "/list", method = RequestMethod.GET)public CommonResult<CommonPage<PmsBrand>> listBrand((value = "pageNum", defaultValue = "1") Integer pageNum,(value = "pageSize", defaultValue = "3") Integer pageSize) {List<PmsBrand> brandList = demoService.listBrand(pageNum, pageSize);return CommonResult.success(CommonPage.restPage(brandList));}(value = "/{id}", method = RequestMethod.GET)public CommonResult<PmsBrand> brand(@PathVariable("id") Long id) {return CommonResult.success(demoService.getBrand(id));} }復制代碼添加Service接口
package com.macro.mall.tiny.service;import com.macro.mall.tiny.mbg.model.PmsBrand;import java.util.List;/*** PmsBrandService* Created by macro on 2019/4/19.*/ public interface PmsBrandService {List<PmsBrand> listAllBrand();int createBrand(PmsBrand brand);int updateBrand(Long id, PmsBrand brand);int deleteBrand(Long id);List<PmsBrand> listBrand(int pageNum, int pageSize);PmsBrand getBrand(Long id); }復制代碼實現Service接口
package com.macro.mall.tiny.service.impl;import com.github.pagehelper.PageHelper; import com.macro.mall.tiny.mbg.mapper.PmsBrandMapper; import com.macro.mall.tiny.mbg.model.PmsBrand; import com.macro.mall.tiny.mbg.model.PmsBrandExample; import com.macro.mall.tiny.service.PmsBrandService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service;import java.util.List;/*** PmsBrandService實現類* Created by macro on 2019/4/19.*/ public class PmsBrandServiceImpl implements PmsBrandService {private PmsBrandMapper brandMapper;public List<PmsBrand> listAllBrand() {return brandMapper.selectByExample(new PmsBrandExample());}public int createBrand(PmsBrand brand) {return brandMapper.insertSelective(brand);}public int updateBrand(Long id, PmsBrand brand) {brand.setId(id);return brandMapper.updateByPrimaryKeySelective(brand);}public int deleteBrand(Long id) {return brandMapper.deleteByPrimaryKey(id);}public List<PmsBrand> listBrand(int pageNum, int pageSize) {PageHelper.startPage(pageNum, pageSize);brandMapper.selectByExample(new PmsBrandExample());return brandMapper.selectByExample(new PmsBrandExample());}public PmsBrand getBrand(Long id) {return brandMapper.selectByPrimaryKey(id);} }復制代碼項目源碼地址
github.com/macrozheng/…
公眾號
mall項目全套學習教程連載中,關注公眾號第一時間獲取。
轉載于:https://juejin.im/post/5cf7c4a7e51d4577790c1c50
總結
以上是生活随笔為你收集整理的mall整合SpringBoot+MyBatis搭建基本骨架的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Qt与QML的枚举绑定(C++枚举)
- 下一篇: Triangle Counting【数学