添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

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

https://docs.spring.io/spring-framework/docs/current/reference/html/core.html#beans-scanning-filters

kotlin to:

@Configuration
@ComponentScan(basePackages = ["org.example"],
        includeFilters = [Filter(type = FilterType.REGEX, pattern = [".*Stub.*Repository"])],
        excludeFilters = [Filter(Repository::class)])
class AppConfig {
    // ...
Fix Kotlin example for basePackages parameter
Fix Kotlin example for @ComponentScan basePackages attribute
      Jun 15, 2022