We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@Component
Sorter는 원래 Recommender들과 같이 Bean 후보를 모두 Map에 담아두고, 팩토리 클래스의 로직에 따라 후보 중 특정 구현체를 반환하는 구조로 되어 있었기 때문에 빈으로 등록되어야 했습니다.
Sorter
Recommender
Map
팩토리 클래스를 제거하고 Enum을 활용하는 구현으로 변경되면서 빈으로 관리될 필요성이 없어졌으나 어노테이션 제거 작업이 누락되어 있습니다.
Enum
XXXSorter
The text was updated successfully, but these errors were encountered:
hw0603
No branches or pull requests
이슈 요약
Sorter
는 원래Recommender
들과 같이 Bean 후보를 모두Map
에 담아두고, 팩토리 클래스의 로직에 따라 후보 중 특정 구현체를 반환하는 구조로 되어 있었기 때문에 빈으로 등록되어야 했습니다.팩토리 클래스를 제거하고
Enum
을 활용하는 구현으로 변경되면서 빈으로 관리될 필요성이 없어졌으나 어노테이션 제거 작업이 누락되어 있습니다.상세 작업 내용
XXXSorter
구현체에서@Component
어노테이션 제거레퍼런스
The text was updated successfully, but these errors were encountered: