1. 程式人生 > 程式設計 >JavaEE Spring MyBatis如何一步一步實現資料庫查詢功能

JavaEE Spring MyBatis如何一步一步實現資料庫查詢功能

配置好一個SptingBoot專案配置好MyBatis

JavaEE Spring~MyBatis是什麼? 它和Hibernate的區別有哪些?如何配置MyBatis?

SpringBoot配置檔案application.properties簡單介紹

在這裡插入圖片描述
在這裡插入圖片描述
在這裡插入圖片描述
在這裡插入圖片描述

確保MyBatis配置正確

在這裡插入圖片描述
在這裡插入圖片描述

手動實現一個xml檔案

上面我是用的是一個自定義的介面 此時沒有它對應的xml檔案 此時我們需要

在這裡插入圖片描述

下圖中column表示查詢列,property表示返回型別中的屬性

在這裡插入圖片描述
在這裡插入圖片描述

在Controller中進行測試

package listen.controller;

import listen.mapper.TestMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * Created with IntelliJ IDEA.
 * Description: If you don't work hard,you will a loser.
 * User: Listen-Y.
 * Date: 2020-08-21
 * Time: 23:14
 */
@RestController
@RequestMapping(value = "user")
public class MyselfTest {

 @Autowired
 private TestMapper testMapper;

 @RequestMapping(value = "test")
 public Object test() {
 return testMapper.query(1);
 }

}

在這裡插入圖片描述

總結

到此這篇關於JavaEE Spring MyBatis如何一步一步實現資料庫查詢功能的文章就介紹到這了,更多相關JavaEE Spring MyBatis資料庫查詢內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!