Error creating bean with name 'favoriteRepository': Invocation of init method failed; nested exception is java.lang.IllegalArgumentException: Not a managed type: class com.my.blog.website.model.Vo.Favorite
时间: 2024-04-06 18:30:40 浏览: 124
scrcpy投屏 AssertionError: java.lang.reflect.InvocationTargetExcep
5星 · 资源好评率100%
这个错误通常出现在 Spring Boot 应用程序中,它表示 Favorite 类不是 Spring 托管的实体类。这可能是因为您没有在应用程序中正确配置 Favorite 类。请确保在应用程序的配置文件中包含以下内容:
1. 在 @SpringBootApplication 注解的类上添加 @EntityScan(basePackages = "com.my.blog.website.model.Vo"),指定实体类所在的包。
2. 在 Favorite 类上添加 @Entity 注解,使其成为 Spring 托管的实体类。
如果您已经完成了以上步骤,但仍然遇到该错误,请检查 Favorite 类是否存在语法错误或其他问题。您还可以尝试清除应用程序的缓存并重新启动应用程序,以确保所有配置都正确加载。
阅读全文