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.
我有组件扫描问题:
<context:component-scan base-package="fr.example" />
我想修改(或覆盖)现有配置,但我不知道在哪里可以修改默认值
你应该了解@Configuration和@EnableAutoConfiguratiom
@Configuration是 xml 文件的模拟。通过使用@Bean 注解定义方法,此类类是 bean 定义的来源。
@EnableAutoConfiguratiom可以与@Configuration 一起使用,也可以不与@Configuration 一起使用。它告诉 Spring 设置一些基本的基础设施,这取决于你在类路径中的内容。
更多你可以在这里找到例如:
弹簧配置