0

我构建了一个最小的示例,显示了我最近几天面临的问题。简而言之,我尝试过的所有 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 自动配置/组件扫描吗?我不希望依赖项弄乱我自己的配置,并希望阻止这种行为。

4

2 回答 2

0

刚刚查看了此依赖项的来源,并且有一些配置文件。

您可以尝试排除您不想要的配置文件:

例子:

@SpringBootApplication(exclude = {
    CasCoreServicesConfiguration.class, 
})

在此处输入图像描述

于 2022-02-11T09:32:17.917 回答
0

CAS 版本 6.4.5 使用 Spring 5,就像项目本身与 Spring Boot 版本 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>

其他 stackoverflow 帖子对此进行了讨论和回答。有关更多详细信息,请参阅https://stackoverflow.com/a/48407939

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

于 2022-03-03T11:36:25.357 回答