真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

使用SpringBoot如何對Mybatis進行整合

今天就跟大家聊聊有關使用Spring Boot如何對Mybatis進行整合,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據(jù)這篇文章可以有所收獲。

10年積累的成都網(wǎng)站制作、做網(wǎng)站經(jīng)驗,可以快速應對客戶對網(wǎng)站的新想法和需求。提供各種問題對應的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡服務。我雖然不認識你,你也不認識我。但先網(wǎng)站設計后付款的網(wǎng)站建設流程,更有巴彥淖爾免費網(wǎng)站建設讓你可以放心的選擇與我們合作。

依賴配置

結合前面的內容,這里我們要嵌入數(shù)據(jù)庫的操作,這里以操作MySQL為例整合Mybatis,首先需要在原來的基礎上添加以下依賴



  org.mybatis.spring.boot
  mybatis-spring-boot-starter
  1.1.1

當然啦,只依賴mybatis是不夠的還需要依賴jdbc驅動以及返回json數(shù)據(jù)的json庫(格式化數(shù)據(jù))



  org.apache.tomcat
  tomcat-jdbc


  mysql
  mysql-connector-java
  5.1.21


  
  com.alibaba
  fastjson
  1.1.43

應用配置

接著需要在application.properties中添加數(shù)據(jù)庫配置

#JDBC配置
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/weibo?useUnicode=true&characterEncoding=gbk&zeroDateTimeBehavior=convertToNull
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driver-class-name=com.mysql.jdbc.Driver

這里連接的數(shù)據(jù)庫名叫weibo,其中表結構如下:

使用Spring Boot如何對Mybatis進行整合

接下來就需要來具體的初始化MyBatis配置以及數(shù)據(jù)表的操作了,先看一下工程結構

使用Spring Boot如何對Mybatis進行整合

編寫配置類

數(shù)據(jù)庫相關的DataSource,SqlSeesion配置,其中DataSourse的配置可以理解為解讀application.properties中的jdbc相關配置然后初始化JDBC驅動的,SqlSeesion配置主要是針對Mybatis使用事務操作時的配置信息。

package com.example.demo.config;
import javax.sql.DataSource;
import org.apache.ibatis.session.SqlSessionFactory;
import org.mybatis.spring.SqlSessionFactoryBean;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
import org.springframework.jdbc.datasource.DataSourceTransactionManager;
import org.springframework.transaction.PlatformTransactionManager;
@EnableAutoConfiguration
@ComponentScan
@MapperScan("com.example.demo.mapper")
public class JdbcConfig {
  // DataSource配置
  @Bean
  @ConfigurationProperties(prefix = "spring.datasource")
  public DataSource dataSource() {
    return new org.apache.tomcat.jdbc.pool.DataSource();
  }
  // 提供SqlSeesion(數(shù)據(jù)庫事務操作相關的配置)
  @Bean
  public SqlSessionFactory sqlSessionFactoryBean() throws Exception {
    SqlSessionFactoryBean sqlSessionFactoryBean = new SqlSessionFactoryBean();
    sqlSessionFactoryBean.setDataSource(dataSource());
    PathMatchingResourcePatternResolver resolver = new PathMatchingResourcePatternResolver();
    sqlSessionFactoryBean.setMapperLocations(resolver.getResources("classpath:/mybatis/*.xml"));
    return sqlSessionFactoryBean.getObject();
  }
  @Bean
  public PlatformTransactionManager transactionManager() {
    return new DataSourceTransactionManager(dataSource());
  }
}

添加Pojo類

該類主要接收數(shù)據(jù)表中的數(shù)據(jù),所以屬性基本上跟數(shù)據(jù)表的屬性一致

package com.example.demo.bean;
public class Diary {
  private int id;
  private String title;
  private String content;
  private String pubTime;
  private int userId;
  public int getId() {
    return id;
  }
  public void setId(int id) {
    this.id = id;
  }
  public String getTitle() {
    return title;
  }
  public void setTitle(String title) {
    this.title = title;
  }
  public String getContent() {
    return content;
  }
  public void setContent(String content) {
    this.content = content;
  }
  public String getPubTime() {
    return pubTime;
  }
  public void setPubTime(String pubTime) {
    this.pubTime = pubTime;
  }
  public int getUserId() {
    return userId;
  }
  public void setUserId(int userId) {
    this.userId = userId;
  }
  @Override
  public String toString() {
    return "Diary [id=" + id + ", title=" + title + ", content=" + content + ", pubTime=" + pubTime + ", userId="
        + userId + "]";
  }
}

添加數(shù)據(jù)表操作接口

該類描述了操作數(shù)據(jù)表的過程,SprintBoot在運行中會根據(jù)類上的@Mapper注解找到它,因此不能落下這個注解

package com.example.demo.mapper;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
import com.example.demo.bean.Diary;
@Mapper
public interface DiaryMapper {
  @Select("select * from diary where _id = #{id}")
  public Diary getDiaryById(@Param("id")Integer id);
}

使用

package com.example.demo.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.alibaba.fastjson.JSON;
import com.example.demo.bean.Diary;
import com.example.demo.mapper.DiaryMapper;
@RestController
public class DiaryMappingController {
  @Autowired
  DiaryMapper diaryMapper;
  @RequestMapping("/diary")
  public String getDiary(Integer id){
    Diary d = diaryMapper.getDiaryById(id);
    String json = JSON.toJSONString(d);
    return json;
  }
}

最后運行SpringBoot項目,然后在瀏覽器上輸入網(wǎng)址:

http://localhost:8080/diary?id=2

這樣即可看到結果

使用Spring Boot如何對Mybatis進行整合 

看完上述內容,你們對使用Spring Boot如何對Mybatis進行整合有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。


網(wǎng)站標題:使用SpringBoot如何對Mybatis進行整合
瀏覽路徑:http://weahome.cn/article/pssijo.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部