实体信息如下
@Data public class ApiCertificate{ @Id @GeneratedValue(generator = "JDBC") private Integer id; private String url; }
插入方法在saveCertificate中,返回结果如下:
最终发现原因:设计数据库的时候没有给设置主键id自增
原文地址:https://www.cnblogs.com/passedbylove/p/11684170.html
时间: 2024-11-06 03:55:32