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
P170中第一行如下所示: 没有标注@Component的情况下,通过sanner.addIncludeFilter(newAnnotationTypeFilter(Service.class))的方式达到识别@Service所标注类的目的
没有标注@Component的情况下,通过sanner.addIncludeFilter(newAnnotationTypeFilter(Service.class))的方式达到识别@Service所标注类的目的
其中newAnnotationTypeFilter(Service.class)的new没有空格隔开new AnnotationTypeFilter(Service.class)
newAnnotationTypeFilter(Service.class)
new
new AnnotationTypeFilter(Service.class)
The text was updated successfully, but these errors were encountered:
感谢反馈,该问题已在 #3 (comment) 中记录~
Sorry, something went wrong.
mercyblitz
No branches or pull requests
P170中第一行如下所示:
没有标注@Component的情况下,通过sanner.addIncludeFilter(newAnnotationTypeFilter(Service.class))的方式达到识别@Service所标注类的目的
其中
newAnnotationTypeFilter(Service.class)
的new
没有空格隔开new AnnotationTypeFilter(Service.class)
The text was updated successfully, but these errors were encountered: