您好,登錄后才能下訂單哦!
這篇文章主要介紹“MybatisPlus使用@TableId主鍵id自增長無效如何解決”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“MybatisPlus使用@TableId主鍵id自增長無效如何解決”文章能幫助大家解決問題。
在使用 @TableId(type = IdType.AUTO)之后添加的id數字特別大
因為在第一次使用的時候沒有加注解 所以mybatis自動生成了一個特別大的數字
當我們第二次加上注解之后他的id實際上還是第一次那個特別大的數字+1
修改表的自動添加值再添加
因為第一次添加的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自增長無效如何解決”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。