Spring 引导属性与 maven pom 打包标签

Spring boot properties vs maven pom packaging tag

我在使用 spring 启动和 maven 时遇到了一些问题。

似乎 <packaging>pom</packaging> 标记添加到 pom.xml 后,不知何故使 spring 完全不知道 parent-level applications.properties 配置文件。当 运行 时,spring 仍然会显示横幅和 info-level 日志记录,而不管声明的属性如何。为什么会这样呢?有没有办法将这些属性添加到我的 parent 中,以便所有模块都能在给定配置下运行?这会变成 anti-pattern 吗?

主要class:

package com.example.app; //could also be inside the app-client module

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class Application {

    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }

}

application.properties:

spring.main.banner-mode=off
logging.level.root=info

(parent) 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <packaging>pom</packaging>
    <modules>
        <module>app-client</module>
    </modules>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.3.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.example.</groupId>
    <artifactId>app</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>app</name>
    <description>Demo app</description>

    <properties>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>


完全同意安迪对你的问题的评论,我想指出,如果你想将工件表示为某种类型,使用 packaging 类型 pom 是合适的模块容器是基础项目,您可以在其中收集(子)模块的依赖信息。

但是,您案例中的 @SpringBootApplication 向我们表明您希望将您的工件用于 运行ning 业务代码。另一方面,这会导致 packaging 类型,例如 jarwar。切换到其中之一,一切都应该 运行 没问题。

For more information please consult also the Maven reference for packaging.