依赖项阻止 Spring 启动应用程序中的组件扫描
Dependency prevents component scan in Spring Boot Application
我建立了一个最小的例子来展示我最近几天遇到的问题。简而言之,我尝试过的 apereo CAS 的所有依赖项都会阻止我的 Spring 引导应用程序自动配置或创建组件和 bean。当不存在 CAS 依赖项时,应用程序会按预期进行配置。我是否使用该依赖项中的任何 类 都没有关系,只是让依赖项存在就把事情搞砸了。
我使用 spring inizializr 创建了一个演示项目,其中包含 Spring 引导版本 2.5.9、Java 11、Maven 和 Spring Web 依赖项(见下文) .
结构
demo/
├── src/
│ ├── main/
│ │ ├── java/
│ │ │ └── com.example.demo/
│ │ │ ├── beans/
│ │ │ │ ├── BeanComponent.java
│ │ │ │ └── BeanWithoutComponent.java
│ │ │ ├── config/
│ │ │ │ └── DemoConfiguration.java
│ │ │ └── DemoApplication.java
│ │ └── resources/
│ │ ├── static/
│ │ ├── templates/
│ │ └── application.properties
│ └── test/
│ └── java/
│ └── com.example.demo/
│ └── DemoApplicationTests.java
└── pom.xml
DemoApplication.java
@SpringBootApplication
public class DemoApplication {
@Autowired
private BeanWithoutComponent beanWithoutComponent;
@Autowired
private BeanComponent beanComponent;
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
BeanComponent.java
@Component
@AutoConfigureOrder(Ordered.HIGHEST_PRECEDENCE)
public class BeanComponent {
public BeanComponent() {
System.out.println("BeanComponent created");
}
}
BeanWithoutComponent.java
public class BeanWithoutComponent {
public BeanWithoutComponent() {
System.out.println("BeanWithoutComponent created");
}
}
DemoConfiguration.java
@Configuration
public class DemoConfiguration {
@Bean
public BeanWithoutComponent beanWithoutComponent() {
return new BeanWithoutComponent();
}
}
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.9</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>demo</name>
<description>Demo project for Spring Boot</description>
<properties>
<cas.version>6.4.5</cas.version>
<java.version>11</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apereo.cas</groupId>
<artifactId>cas-server-core-services</artifactId>
<version>${cas.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
application.properties 为空。
删除 org.apereo.cas 依赖项后,应用程序启动正常,bean 会按预期自动装配。
是否有任何东西可以禁用 Spring 引导自动配置/组件扫描?我不希望依赖项弄乱我自己的配置,并希望防止这种行为。
刚刚查看了此依赖项的源代码,其中有一些配置文件。
您可以尝试排除不需要的配置文件:
示例:
@SpringBootApplication(exclude = {
CasCoreServicesConfiguration.class,
})
CAS 版本 6.4.5 使用 Spring 5,就像项目本身使用 Spring 引导版本 2.5.9。 Spring 5 添加了 编译时组件索引 特性,供 CAS 使用。
由于项目不包含自动索引器依赖项,因此在编译时找不到组件,因此在启动时不存在。
此问题的解决方案是在 pom.xml
中包含此依赖项
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-indexer</artifactId>
<version>5.3.16</version>
<optional>true</optional>
</dependency>
</dependencies>
其他 Whosebug 帖子对此进行了讨论和回答。有关详细信息,请参阅
和
https://docs.spring.io/spring-framework/docs/current/reference/html/core.html#beans-scanning-index
我建立了一个最小的例子来展示我最近几天遇到的问题。简而言之,我尝试过的 apereo CAS 的所有依赖项都会阻止我的 Spring 引导应用程序自动配置或创建组件和 bean。当不存在 CAS 依赖项时,应用程序会按预期进行配置。我是否使用该依赖项中的任何 类 都没有关系,只是让依赖项存在就把事情搞砸了。
我使用 spring inizializr 创建了一个演示项目,其中包含 Spring 引导版本 2.5.9、Java 11、Maven 和 Spring Web 依赖项(见下文) .
结构
demo/
├── src/
│ ├── main/
│ │ ├── java/
│ │ │ └── com.example.demo/
│ │ │ ├── beans/
│ │ │ │ ├── BeanComponent.java
│ │ │ │ └── BeanWithoutComponent.java
│ │ │ ├── config/
│ │ │ │ └── DemoConfiguration.java
│ │ │ └── DemoApplication.java
│ │ └── resources/
│ │ ├── static/
│ │ ├── templates/
│ │ └── application.properties
│ └── test/
│ └── java/
│ └── com.example.demo/
│ └── DemoApplicationTests.java
└── pom.xml
DemoApplication.java
@SpringBootApplication
public class DemoApplication {
@Autowired
private BeanWithoutComponent beanWithoutComponent;
@Autowired
private BeanComponent beanComponent;
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
BeanComponent.java
@Component
@AutoConfigureOrder(Ordered.HIGHEST_PRECEDENCE)
public class BeanComponent {
public BeanComponent() {
System.out.println("BeanComponent created");
}
}
BeanWithoutComponent.java
public class BeanWithoutComponent {
public BeanWithoutComponent() {
System.out.println("BeanWithoutComponent created");
}
}
DemoConfiguration.java
@Configuration
public class DemoConfiguration {
@Bean
public BeanWithoutComponent beanWithoutComponent() {
return new BeanWithoutComponent();
}
}
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.9</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>demo</name>
<description>Demo project for Spring Boot</description>
<properties>
<cas.version>6.4.5</cas.version>
<java.version>11</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apereo.cas</groupId>
<artifactId>cas-server-core-services</artifactId>
<version>${cas.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
application.properties 为空。
删除 org.apereo.cas 依赖项后,应用程序启动正常,bean 会按预期自动装配。
是否有任何东西可以禁用 Spring 引导自动配置/组件扫描?我不希望依赖项弄乱我自己的配置,并希望防止这种行为。
刚刚查看了此依赖项的源代码,其中有一些配置文件。
您可以尝试排除不需要的配置文件:
示例:
@SpringBootApplication(exclude = {
CasCoreServicesConfiguration.class,
})
CAS 版本 6.4.5 使用 Spring 5,就像项目本身使用 Spring 引导版本 2.5.9。 Spring 5 添加了 编译时组件索引 特性,供 CAS 使用。
由于项目不包含自动索引器依赖项,因此在编译时找不到组件,因此在启动时不存在。
此问题的解决方案是在 pom.xml
中包含此依赖项<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-indexer</artifactId>
<version>5.3.16</version>
<optional>true</optional>
</dependency>
</dependencies>
其他 Whosebug 帖子对此进行了讨论和回答。有关详细信息,请参阅
和
https://docs.spring.io/spring-framework/docs/current/reference/html/core.html#beans-scanning-index