亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在SpringBoot中使用MyBatis操作數據

發布時間:2021-04-07 16:44:04 來源:億速云 閱讀:209 作者:Leah 欄目:編程語言

怎么在SpringBoot中使用MyBatis操作數據?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

首先我們先創建一個SpringBoot 項目。

怎么在SpringBoot中使用MyBatis操作數據

數據庫連接配置

##數據庫連接配置(部署到哪臺,對應的ip需修改)
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/mybatis?connectTimeout=1000&useSSL=false&useUnicode=true&characterEncoding=UTF-8
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driver=com.mysql.jdbc.Driver

數據庫中的數據

怎么在SpringBoot中使用MyBatis操作數據

環境配好之后,下面分別介紹一下通過注解或者通過xml映射的形式這兩種方法來使用MyBatis。

通過xml映射的形式

測試Bean

package com.example.demo.model;

public class User {
 private int id;
 private String name;
 private String sex;
 private int age;

 public User() {
 }

 public User(String name, String sex, int age) {
  this.name = name;
  this.sex = sex;
  this.age = age;
 }

 public User(int id, String name, String sex, int age) {
  this.id = id;
  this.name = name;
  this.sex = sex;
  this.age = age;
 }

 public int getId() {
  return id;
 }

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

 public String getName() {
  return name;
 }

 public void setName(String name) {
  this.name = name;
 }

 public String getSex() {
  return sex;
 }

 public void setSex(String sex) {
  this.sex = sex;
 }

 public int getAge() {
  return age;
 }

 public void setAge(int age) {
  this.age = age;
 }
}

XML形式的具體操作

將mapper定義為接口,只定義方法。具體的實現在同名的xml文件中。

package com.example.demo.mapper;

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

@Mapper
public interface UserMapper {
 User getByName(@Param("name") String name);

 boolean insert(User user);

 boolean update(@Param("name") String name, @Param("sex") String sex, @Param("age") int age);

 void delete(@Param("name") String name);
}
<?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.mapper.UserMapper">
 <select id="getByName" resultType="com.example.demo.model.User" parameterType="java.lang.String">
  SELECT * FROM tb_user WHERE name = #{name}
 </select>

 <insert id="insert" parameterType="com.example.demo.model.User" useGeneratedKeys="true">
  INSERT INTO tb_user(name, sex, age) VALUES(#{name}, #{sex}, #{age})
 </insert>

 <update id="update" parameterType="com.example.demo.model.User">
  UPDATE tb_user SET sex=#{sex}, age=#{age} WHERE name=#{name}
 </update>

 <delete id="delete" parameterType="java.lang.String">
  DELETE FROM tb_user WHERE name = #{name}
 </delete>
</mapper>

兩個文件通過mapper.xml文件中的 namespace 形成映射。

一般情況下,我們用到的資源文件(各種xml,properites,xsd文件等)都放在src/main/resources下面(springboot回到對應的位置加載文件),利用maven打包時,maven能把這些資源文件打包到相應的jar或者war里。但是,有的時候我們習慣把它和Mapper.java放一起,都在src/main/java下面,這樣利用maven打包時,就需要修改pom.xml文件,來把mapper.xml文件一起打包進jar或者war里了,否則,這些文件不會被打包的。(maven認為src/main/java只是java的源代碼路徑)。

所以說,如果要將mapper.java和mapper.xml文件放在同一個位置,就需要在pom文件中指定xml文件的加載位置。

怎么在SpringBoot中使用MyBatis操作數據

 <build>
 <resources> 
  <!-- maven項目中src源代碼下的xml等資源文件編譯進classes文件夾,
   注意:如果沒有這個,它會自動搜索resources下是否有mapper.xml文件,
   如果沒有就會報org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): ... -->
  <resource> 
  <directory>src/main/java</directory> 
  <includes> 
   <include>**/*.xml</include> 
  </includes> 
  <filtering>true</filtering>
  </resource>
  
  <!--將resources目錄下的配置文件編譯進classes文件 --> 
  <resource>
   <directory>src/main/resources</directory>
   <filtering>true</filtering>
  </resource>
 </resources> 
 </build>

如果mapper.java和mapper.xml文件是分開放置的,則不需要以上配置。

怎么在SpringBoot中使用MyBatis操作數據

Service服務

package com.example.demo.service;

import com.example.demo.model.User;

public interface UserService {
 User getUserByName(String name);

 boolean addUser(User user);

 boolean updateUser(String name, String sex, int age);

 void deleteUser(String name);
}

Service服務的實現類

package com.example.demo.service.impl;

import com.example.demo.mapper.UserMapper;
import com.example.demo.model.User;
import com.example.demo.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

@Service
public class UserServiceImpl implements UserService{
 @Autowired
 UserMapper userMapper;

 @Override
 public User getUserByName(String name) {
  User user = userMapper.getByName(name);
  if (null != user){
   return user;
  }
  return null;
 }

 @Override
 public boolean addUser(User user) {
  return userMapper.insert(user);
 }

 @Override
 public boolean updateUser(String name, String sex, int age) {
  return userMapper.update(name, sex, age);
 }

 @Override
 public void deleteUser(String name) {
  userMapper.delete(name);
 }
}

測試接口

package com.example.demo.controller;

import com.example.demo.model.User;
import com.example.demo.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class UserController {
 @Autowired
 UserService userService;

 @RequestMapping(value = "/index", method = RequestMethod.GET)
 public String index(){
  User user = userService.getUserByName("gyl");
  return user.getName()+"--"+user.getSex()+"--"+user.getAge();
 }
}

如果一切順利,即將輸入localhost:8080/index 你將看到如下內容

怎么在SpringBoot中使用MyBatis操作數據

通過注解的方式

package com.example.demo.mapper;

import com.example.demo.model.User;
import org.apache.ibatis.annotations.*;

@Mapper
public interface UserMapper {

 @Select("select * from TB_USER where NAME = #{name}")
 User getByName(@Param("name") String name);

 @Insert("insert into TB_USER(NAME, SEX, AGE) values(#{name}, #{sex}, #{age})")
 boolean insert(User user);

 @Update("update TB_USER set SEX=#{sex}, AGE=#{age} where NAME=#{name}")
 boolean update(@Param("name") String name, @Param("sex") String sex, @Param("age") int age);

 @Delete("delete from TB_USER where NAME = #{name}")
 void delete(@Param("name") String name);
}

如果一切順利,即將輸入localhost:8080/index 你將看到如下內容

怎么在SpringBoot中使用MyBatis操作數據

關于怎么在SpringBoot中使用MyBatis操作數據問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

民勤县| 延寿县| 霍林郭勒市| 嘉定区| 邢台县| 丰原市| 若尔盖县| 峨眉山市| 绥芬河市| 昌宁县| 聂荣县| 静乐县| 东源县| 南皮县| 晋江市| 习水县| 达尔| 社会| 穆棱市| 阿尔山市| 兰溪市| 大石桥市| 沈阳市| 乌兰察布市| 开化县| 龙江县| 佛学| 垫江县| 化州市| 牡丹江市| 乌苏市| 武宣县| 建德市| 揭东县| 敦化市| 九寨沟县| 溧阳市| 开封县| 贡嘎县| 铁岭市| 新余市|