为了账号安全,请及时绑定邮箱和手机立即绑定

insert时没有生成id

    @Test
    public void insert(){
        User user = new User();
        user.setName("tom");
        user.setManagerId(1088248166370832385L);
        user.setCreateTime(new Date());
        int insert = userMapper.insert(user);
        System.out.println("insert = " + insert);
    }

org.springframework.dao.DataIntegrityViolationException: 

### Error updating database.  Cause: java.sql.SQLException: Field 'id' doesn't have a default value

### The error may exist in com/exam/demo/mapper/UserMapper.java (best guess)

### The error may involve com.exam.demo.mapper.UserMapper.insert-Inline

### The error occurred while setting parameters

### SQL: INSERT INTO user  ( name,   manager_id, create_time )  VALUES  ( ?,   ?, ? )

### Cause: java.sql.SQLException: Field 'id' doesn't have a default value

; Field 'id' doesn't have a default value; nested exception is java.sql.SQLException: Field 'id' doesn't have a default value


正在回答

1 回答

同学,你主键策略设置的是什么?包括mp和数据库的,我怀疑你mp设置的为自增,但数据库没设置。

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

insert时没有生成id

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信