给定一个现有的非基于Spring的代码,是否可以使用Spring将依赖关系连接在一起而不改变代码的其他部分如何工作?特别是,大多数Spring / Boot示例在main中调用SpringApplication.run,如下所示:
@Configuration
public class WebConfig extends WebMvcConfigurerAdapter {
@Override
public void configurePathMatch(PathMatchConfigurer configurer) {
AntPathMatcher matcher = new AntPathMatcher();
matcher.setCaseSensitive(false);
configurer.setPathMatcher(matcher);
}
}
我不能这样做,我只是希望Spring Boot在调用某个方法(getter)时连接依赖项。这可能吗?
感谢。