1. 程式人生 > >The dependencies of some of the beans in the application context form a cycle:

The dependencies of some of the beans in the application context form a cycle:

啟動服務報錯 :

┌─────┐ |  userServiceImpl defined in file [D:\IdeaProjects\pro_new\diich-ecology\diich-biz\diich-biz-core\out\production\classes\com\diich\biz\service\core\UserServiceImpl.class] ↑     ↓ |  favoriteServiceImpl defined in file [D:\IdeaProjects\pro_new\diich-ecology\diich-biz\diich-biz-core\out\production\classes\com\diich\biz\service\core\FavoriteServiceImpl.class] └─────┘ 原因:service層 互相引用。

注入方式用的是@RequiredArgsConstructor 註解final方式注入 報錯。

改變注入方式為@Autowired 成功解決