spring boot 启动报:Composite-id class must implement Serializable: xxx错误

Posted codecat

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot 启动报:Composite-id class must implement Serializable: xxx错误相关的知识,希望对你有一定的参考价值。

问题

在对spring boot项目进行修改后,重新启动时报如下错误:

Composite-id class must implement Serializable: xxx

xxx为具体的类

原因

找到xxx类,查看是否定义了多个@Id,如下图:

技术图片

解决

如果该实体类对应的表只有一个主键,即图中的id,把linkName上面的@Id注解删除即可,重新启动就不会报错了。

如果该实体类对应的表确实使用的两个字段(联合主键),则要求该实体类必须可序列化,该类要实现 Serializable 接口,并添加如下代码:

private static final long serialVersionUID = 1L;

如下图:

技术图片

然后重新启动即可。

 

以上是关于spring boot 启动报:Composite-id class must implement Serializable: xxx错误的主要内容,如果未能解决你的问题,请参考以下文章

Spring-boot 启动报错 调试小技巧

spring boot启动报错

spring boot启动报错

spring_boot启动报错

spring-boot:run启动报错

Spring Boot 启动报错:LoggingFailureAnalysisReporter