中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

MybatisPlus使用@TableId主鍵id自增長無效如何解決

發布時間:2023-04-12 16:26:23 來源:億速云 閱讀:163 作者:iii 欄目:開發技術

這篇文章主要介紹“MybatisPlus使用@TableId主鍵id自增長無效如何解決”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“MybatisPlus使用@TableId主鍵id自增長無效如何解決”文章能幫助大家解決問題。

問題情況:

MybatisPlus使用@TableId主鍵id自增長無效如何解決

在使用 @TableId(type = IdType.AUTO)之后添加的id數字特別大

原因:

因為在第一次使用的時候沒有加注解 所以mybatis自動生成了一個特別大的數字
當我們第二次加上注解之后他的id實際上還是第一次那個特別大的數字+1

解決方法

修改表的自動添加值再添加
因為第一次添加的id值特別大我就把那一行給刪了
然后改了自增長的數字
如圖所示

MybatisPlus使用@TableId主鍵id自增長無效如何解決

修改之后就好了

MybatisPlus使用@TableId主鍵id自增長無效如何解決

package com.tong.pojo;

import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

@Data
@NoArgsConstructor
@AllArgsConstructor
@TableName("tb_user")
public class User {
    @TableId(type = IdType.AUTO) //指定id類型為自增長
    private Long id;
    private String user_name;
    private String password;
    private String name;
    private Integer age;
    private String email;

}
package org.example;

import com.tong.MyApplication;
import com.tong.mapper.UserMapper;
import com.tong.pojo.User;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest(classes= MyApplication.class)
public class TestUserMapper {
    @Autowired
    private UserMapper userMapper;
    上面這一行報錯是正常現象

    @Test
    public void test(){
        User user = new User();

        user.setEmail("12345.com");
        user.setAge(20);
        user.setUser_name("caocao1");
        user.setName("曹操1");
        user.setPassword("123456");
        //user.setAddress("北京");


        int insert = userMapper.insert(user);
        System.out.println(insert);
        System.out.println(user.getId());
    }
}

關于“MybatisPlus使用@TableId主鍵id自增長無效如何解決”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

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

AI

湖州市| 尼木县| 图们市| 朝阳区| 饶河县| 平遥县| 阿瓦提县| 彝良县| 闽清县| 贡觉县| 南平市| 连山| 章丘市| 秀山| 威宁| 松溪县| 丹江口市| 莫力| 卢龙县| 嘉善县| 乐安县| 从江县| 左贡县| 都匀市| 田东县| 英德市| 新干县| 曲沃县| 忻州市| 双桥区| 乐陵市| 方山县| 乌恰县| 冷水江市| 凤凰县| 临猗县| 保康县| 新绛县| 资兴市| 江城| 奈曼旗|