[3주차] 관심사 분리 1 : 리플렉션 및 빈 주입 구현#82
Open
MINJOOOONG wants to merge 23 commits into
Open
Conversation
…template-main 2주차 자바 웹 요청 추상화
jude-loopers
reviewed
May 6, 2026
jude-loopers
left a comment
Collaborator
There was a problem hiding this comment.
고생하셨습니다~ 깔끔하게 잘 구현하셨어요
Comment on lines
+65
to
+67
| if (!beanClasses.contains(beanClass)) { | ||
| throw new IllegalArgumentException("빈 클래스를 찾을 수 없습니다: " + beanClass.getName()); | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
#아직 PR미완성..
진행한 내용
Lecture생성자 조회Lecture객체 동적 생성@MethodOrderAnnotation 값 조회@ComponentAnnotation 추가BeanScanner로@Component클래스 조회BeanFactory로 Bean 저장, 조회, 초기화 구현@AutowiredAnnotation 추가@Autowired생성자 조회LectureRepository분리LectureService가LectureRepository를 사용하도록 수정LectureController가LectureService를 사용하도록 수정LectureApplication에서BeanFactory로 Bean 생성 후 Controller에 주입Lecture를 Bean 대상에서 제외DispatcherServlet중복 등록 문제 수정