게시글에 대한 댓글을 연관관계없이 게시글 조회시 해당 게시글의 댓글 리스트를 직접 가져오는 방식으로 구현 결과
처음으로 맞이한.... 순한참조 이거였구나 ㅋㅋㅋㅋ
Description:
The dependencies of some of the beans in the application context form a cycle:
contactCommentController defined in file [C:\Users\wjdek\OneDrive\바탕 화면\finalProject8\out\production\classes\com\team\final8teamproject\contact\Comment\controller\ContactCommentController.class]
┌─────┐
| contactCommentServiceImpl defined in file [C:\Users\wjdek\OneDrive\바탕 화면\finalProject8\out\production\classes\com\team\final8teamproject\contact\Comment\servive\ContactCommentServiceImpl.class]
↑ ↓
| inquiryServiceImpl defined in file [C:\Users\wjdek\OneDrive\바탕 화면\finalProject8\out\production\classes\com\team\final8teamproject\contact\service\InquiryServiceImpl.class]
└─────┘
게시글서비스와 댓글서비스가 서로를 호출하고 있어 순환참조되고 있었다.
서로를 호출하지않게 다른 방향으로 값을 받아왔다.