springboot集成ElasticSearch同步数据库时报java.lang.IllegalStateException: Failed to execute CommandLineRunner

问题截图springboot集成ElasticSearch同步数据库时报java.lang.IllegalStateException: Failed to execute CommandLineRunner
在这里一致提示我HotalFeign里面的list方法问题,打印测试发现调用该方法之后出现的问题,

springboot集成ElasticSearch同步数据库时报java.lang.IllegalStateException: Failed to execute CommandLineRunner

经过重新检查代码发现问题在于实体类中的一个属性在表字段中不存在

springboot集成ElasticSearch同步数据库时报java.lang.IllegalStateException: Failed to execute CommandLineRunner

实体类中的该属性是自己创建的,数据库表中没有

springboot集成ElasticSearch同步数据库时报java.lang.IllegalStateException: Failed to execute CommandLineRunner
springboot集成ElasticSearch同步数据库时报java.lang.IllegalStateException: Failed to execute CommandLineRunner

@TableField(exist = false) 加上该注解表示数据库不存在该字段,再次运行问题解决