我构建了一个最小的示例,显示了我最近几天面临的问题。简而言之,我尝试过的所有 apereo CAS 依赖项都会阻止我的 Spring Boot 应用程序自动配置或创建组件和 bean。当不存在 CAS 依赖项时,应用程序按预期进行配置。我是否使用该依赖项中的任何类都没有关系,只是让依赖项出现会使事情变得混乱。
我使用带有 Spring Boot 版本 2.5.9、Java 11、Maven 和 Spring Web 依赖项的 spring inizializr 创建了一个演示项目(见下文)。
结构
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 Boot 自动配置/组件扫描吗?我不希望依赖项弄乱我自己的配置,并希望阻止这种行为。