從零搭建自己的SpringBoot後臺框架(一)

Mr_初晨發表於2018-04-18
Hello大家好,本章我們搭建專案基礎框架結構和整合mybatis;專案所需環境jdk1.8,maven,mysql資料庫;開發工具IDEA。有問題可以聯絡我mr_beany@163.com。另求各路大神指點,感謝

一:通過idea工具構建基礎框架

  1.  開啟idea,左上角File→New→Project,看到如下圖的頁面

從零搭建自己的SpringBoot後臺框架(一)

  2.  點選Next,配置如下圖從零搭建自己的SpringBoot後臺框架(一)
  3.  點選Next,配置如下圖,這裡我們選擇資料庫MySQL和持久層框架MyBatis從零搭建自己的SpringBoot後臺框架(一)
  4.  點選Next,選擇工作目錄,點選Finish,開始構建


  5.  建立完成後,專案目錄結構如下

從零搭建自己的SpringBoot後臺框架(一)

DemoApplicttion.java為專案的啟動類

application.properties為專案配置檔案

pom.xml主要描述了專案的maven座標,依賴關係,開發者需要遵循的規則,缺陷管理系統,組織和licenses,以及其他所有的專案相關因素,是專案級別的配置檔案(說人話:專案所需jar包的管理)


二:配置資料庫資訊

在application.properties檔案中新增如下資料庫配置

spring.datasource.url=jdbc:mysql://localhost:3306/demo?useSSL=false&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&transformedBitIsBoolean=true&autoReconnect=true&failOverReadOnly=false
spring.datasource.username=資料庫使用者名稱
spring.datasource.password=資料庫密碼
spring.datasource.driverClassName=com.mysql.jdbc.Driver複製程式碼

三:建立資料庫UserInfo表

CREATE TABLE `user_info` (
  `id` int(32) NOT NULL AUTO_INCREMENT,
  `user_name` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; 複製程式碼

四:建立專案基本目錄結構

從零搭建自己的SpringBoot後臺框架(一)

Model

package com.example.demo.model;

import javax.persistence.Column;
import javax.persistence.Id;

/**
 * @author 張瑤
 * @Description:
 * @time 2018/4/18 11:55
 */
public class UserInfo {

    /**
     * 主鍵
     */
    @Id
    private String id;

    /**
     * 使用者名稱
     */
    @Column(name = "user_name")
    private String userName;

    private String password;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getUserName() {
        return userName;
    }

    public void setUserName(String userName) {
        this.userName = userName;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }

}
複製程式碼

Mapper

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.example.demo.dao.UserInfoMapper">
    <resultMap id="BaseResultMap" type="com.example.demo.model.UserInfo">
        <id column="id" jdbcType="INTEGER" property="id"/>
        <result column="user_name" jdbcType="VARCHAR" property="userName"/>
    </resultMap>

    <sql id="Base_Column_List">
      id,user_name
    </sql>

    <select id="selectById" parameterType="java.lang.Integer" resultMap="BaseResultMap">
        select
        <include refid="Base_Column_List"/>
        from user_info
        where id = #{id,jdbcType=VARCHAR}
    </select>

</mapper>
複製程式碼

Dao

package com.example.demo.dao;

import com.example.demo.model.UserInfo;
import org.apache.ibatis.annotations.Param;

/**
 * @author 張瑤
 * @Description:
 * @time 2018/4/18 11:54
 */
public interface UserInfoMapper {

    UserInfo selectById(@Param("id") Integer id);
}複製程式碼

Service

package com.example.demo.service;

import com.example.demo.model.UserInfo;

/**
 * @author 張瑤
 * @Description:
 * @time 2018/4/18 11:56
 */
public interface UserInfoService {

    UserInfo selectById(Integer id);

}複製程式碼

ServiceImpl

package com.example.demo.service.impl;

import com.example.demo.dao.UserInfoMapper;
import com.example.demo.model.UserInfo;
import com.example.demo.service.UserInfoService;
import org.springframework.stereotype.Service;

import javax.annotation.Resource;

/**
 * @author 張瑤
 * @Description:
 * @time 2018/4/18 11:56
 */
@Service
public class UserInfoServiceImpl implements UserInfoService{

    @Resource
    private UserInfoMapper userInfoMapper;

    public UserInfo selectById(Integer id){
        return userInfoMapper.selectById(id);
    }
}複製程式碼

Controller

package com.example.demo.controller;

import com.example.demo.model.UserInfo;
import com.example.demo.service.UserInfoService;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import javax.annotation.Resource;

/**
 * @author 張瑤
 * @Description:
 * @time 2018/4/18 11:39
 */
@RestController
@RequestMapping("userInfo")
public class UserInfoController {

    @Resource
    private UserInfoService userInfoService;

    @PostMapping("/hello")
    public String hello(){
        return "hello SpringBoot";
    }

    @PostMapping("/selectById")
    public UserInfo selectById(Integer id){
        return userInfoService.selectById(id);
    }
}複製程式碼

Controller中@RestController註解的作用

@RestController是由@Controller和@ResponseBody組成,表示該類是controller和返回的結果為JSON資料,不是頁面路徑。


重點看一下configurer中的MyBatisConfigurer.java

package com.example.demo.core.configurer;

import org.apache.ibatis.session.SqlSessionFactory;
import org.mybatis.spring.SqlSessionFactoryBean;
import org.mybatis.spring.mapper.MapperScannerConfigurer;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
import org.springframework.core.io.support.ResourcePatternResolver;

import javax.sql.DataSource;

/**
 * @ClassName: MybatisConfigurer
 * @Description: Mybatis配置
 * @author 張瑤
 * @date 2018年1月20日 下午4:03:46
 *
 */
@Configuration
public class MybatisConfigurer {

   @Bean
   public SqlSessionFactory sqlSessionFactoryBean(DataSource dataSource) throws Exception {
      SqlSessionFactoryBean factory = new SqlSessionFactoryBean();
      factory.setDataSource(dataSource);
      factory.setTypeAliasesPackage("com.example.demo.model");
      // 新增XML目錄
      ResourcePatternResolver resolver = new PathMatchingResourcePatternResolver();
      factory.setMapperLocations(resolver.getResources("classpath:mapper/*.xml"));
      return factory.getObject();
   }

   @Bean
   public MapperScannerConfigurer mapperScannerConfigurer() {
      MapperScannerConfigurer mapperScannerConfigurer = new MapperScannerConfigurer();
      mapperScannerConfigurer.setSqlSessionFactoryBeanName("sqlSessionFactoryBean");
      mapperScannerConfigurer.setBasePackage("com.example.demo.dao");
      return mapperScannerConfigurer;
   }
}
複製程式碼

@Configuration表示該檔案是一個配置檔案

@Bean表示該方法是一個傳統xml配置檔案中的<Bean id=""></Bean>

其中factory.setTypeAliasesPackage("com.example.demo.model")表示專案中model的儲存路徑;

factory.setMapperLocations(resolver.getResources("classpath:mapper/*.xml"));表示mapper.xml儲存路徑;

mapperScannerConfigurer.setBasePackage("com.example.demo.dao");表示dao層的儲存路徑

五:執行專案

找到DemoApplication,右鍵,選擇run  DemoApplication

控制檯列印如下資訊即為啟動成功

從零搭建自己的SpringBoot後臺框架(一)

六:測試介面

開啟postman(Google瀏覽器外掛,可以去應用商店下載),輸入

從零搭建自己的SpringBoot後臺框架(一)

注意修改自己的ip;出現以下結構資料即訪問成功

{
    "id": 1,
    "userName": "1"
}複製程式碼

專案地址

碼雲地址: gitee.com/beany/mySpr…

GitHub地址: github.com/MyBeany/myS…

寫文章不易,如對您有幫助,請幫忙點下star從零搭建自己的SpringBoot後臺框架(一)

結尾

框架搭建,整合mybatis已完成,後續功能接下來陸續更新,有問題可以聯絡我mr_beany@163.com。另求各路大神指點,感謝大家。


相關文章