字符串引导多模块应用程序运行

问题描述 投票:0回答:1

很长一段时间,我都在苦苦寻找解决办法。我正在尝试构建一个 Spring Boot 多模块项目。

我有两个模块用于练习目的,稍后我将在我的实际项目中添加更多模块。

名为

application
的模块 1 是我实现
Controller
的地方。

模块 2

(boot)
是整个项目的运行者。两者都是从父母那里继承的。

当我启动应用程序并向控制器的端点发出请求时,我陷入困境。看来Spring不认识它。

项目结构:

控制器类

启动

请求

启动pom.xml

<?xml version="1.0" encoding="UTF-8"?>

4.0.0

<parent>
    <groupId>org.onebox</groupId>
    <artifactId>onebox</artifactId>
    <version>1.0-SNAPSHOT</version>
</parent>

<artifactId>boot</artifactId>

<properties>
    <maven.compiler.source>17</maven.compiler.source>
    <maven.compiler.target>17</maven.compiler.target>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

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

应用程序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>
    <parent>
        <groupId>org.onebox</groupId>
        <artifactId>onebox</artifactId>
        <version>1.0-SNAPSHOT</version>
    </parent>

    <artifactId>application</artifactId>

    <properties>
        <maven.compiler.source>17</maven.compiler.source>
        <maven.compiler.target>17</maven.compiler.target>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

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

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

    <groupId>org.onebox</groupId>
    <artifactId>onebox</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>pom</packaging>
    <modules>
        <module>boot</module>
        <module>application</module>
    </modules>

    <properties>
        <maven.compiler.source>17</maven.compiler.source>
        <maven.compiler.target>17</maven.compiler.target>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>3.0.5</version>
    </parent>

    <!--<dependencies>
        <dependency>
            <groupId>org.springdoc</groupId>
            <artifactId>springdoc-openapi-ui</artifactId>
            <version>1.7.0</version>
        </dependency>
    </dependencies>-->

</project>
java spring spring-boot maven multi-module
1个回答
0
投票

让我们从默认包中的控制器类开始

a) 本身就是一个禁忌;
b) 不会被 com.example 包中的 @SpringBootApplication 扫描。

© www.soinside.com 2019 - 2024. All rights reserved.