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

溫馨提示×

溫馨提示×

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

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

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

康马县| 西城区| 邹平县| 阿鲁科尔沁旗| 临朐县| 海丰县| 南漳县| 五常市| 聂荣县| 普陀区| 九龙坡区| 平阳县| 定日县| 红桥区| 九江县| 织金县| 格尔木市| 五莲县| 钟祥市| 旺苍县| 简阳市| 广安市| 贡嘎县| 府谷县| 亚东县| 赤壁市| 铜鼓县| 滦平县| 夏河县| 绥宁县| 磐安县| 五家渠市| 九寨沟县| 滁州市| 临洮县| 犍为县| 宜兴市| 清镇市| 肃宁县| 江西省| 留坝县|