1

我一直面临着弹簧靴和 Maven 的一些问题。

似乎<packaging>pom</packaging>标签,当添加到 时pom.xml,不知何故让spring完全不知道父级applications.properties配置文件。运行时,无论声明的属性如何,spring 仍然会显示横幅和信息级日志记录。为什么会这样?有没有办法将这些属性添加到我的父级,以便所有模块都可以在给定的配置下运行?这会成为反模式吗?

主类:

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);
    }

}

应用程序属性:

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

(父)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>


4

1 回答 1

2

完全同意 Andy 对您的问题的评论,我想指出,如果您想将工件表示为某种模块容器是基础项目,则使用该packaging类型pom是合适的,您可以在其中为您的 (sub- ) 模块。

但是,@SpringBootApplication在您的情况下,向我们表明您希望使用您的工件来运行业务代码。另一方面,这会导致packaging类似jaror的类型war。将其切换到其中之一,一切都应该运行良好。

有关更多信息,请参阅Maven 打包参考

于 2019-03-27T13:19:03.417 回答