Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以告诉spring只扫描(用于注释)指定给它的那些罐子。我知道我们可以指定类路径,但它很慢,因为它需要进入 web-inf/lib 中的每个 jar 以查找与该类路径匹配的类
是否可以告诉spring只扫描(用于注释)指定给它的那些罐子?
那么你不能扫描罐子,但你可以扫描packages里面jars,但那些包应该包含Stereotyped annotated classes。
packages
jars
Stereotyped annotated classes
我知道我们可以指定类路径,但它很慢,因为它需要进入 web-inf/lib 中的每个 jar 以查找与该类路径匹配的类。
你知道的都是错的。Spring 不扫描类路径,而是扫描类路径下的Stereotyped annotated classes.