提前编译处理

人们使用 Spring Boot 应用程序的提前编译处理时,经常会产生一些问题。本节将解答这些问题。

条件

提前处理(Ahead-of-time processing)会优化应用程序,并在构建时根据环境评估@Conditional 注解。配置文件 (Profiles) 通过条件实现,因此也会受到影响。

如果您希望在提前优化后的应用程序中基于条件创建 Bean,则必须在构建应用程序时设置环境。在构建时提前处理期间创建的 Bean 在运行应用程序时始终会被创建,并且无法关闭。为此,您可以设置构建应用程序时应使用的配置文件。

对于 Maven,可以通过设置spring-boot-maven-plugin:process-aot 执行的profiles 配置来实现。

<profile>
    <id>native</id>
    <build>
        <pluginManagement>
            <plugins>
                <plugin>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-maven-plugin</artifactId>
                    <executions>
                        <execution>
                            <id>process-aot</id>
                            <configuration>
                                <profiles>profile-a,profile-b</profiles>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </pluginManagement>
    </build>
</profile>

对于 Gradle,您需要配置ProcessAot 任务。

tasks.withType(org.springframework.boot.gradle.tasks.aot.ProcessAot).configureEach {
    args('--spring.profiles.active=profile-a,profile-b')
}

在运行提前优化后的应用程序时,仅更改不影响条件的配置属性的配置文件不受限制。