How to package spring boot multi-module projects?
巴扎黑
巴扎黑 2017-05-27 17:41:23
0
1
703

I built a simple multi-module project:
Structure:

The outer pom.xml is as follows

<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>com.scum</groupId>
<artifactId>demo-package</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>

<modules>
    <module>demo-controller</module>
    <module>demo-service</module>
</modules>
<build>
    <plugins>
        <plugin>
            <!-- The plugin rewrites your manifest -->
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        <configuration><!-- 指定该Main Class为全局的唯一入口 -->
            <mainClass>com.example.demo.DemoControllerApplication</mainClass>
            <layout>ZIP</layout>
        </configuration>
        <executions>
            <execution>
                <goals>
                    <goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中-->
                </goals>
                <!--可以生成不含依赖包的不可执行Jar包-->
                <!-- configuration>
                  <classifier>exec</classifier>
                </configuration> -->
            </execution>
        </executions>
    </plugin>
</plugins>

</build>

</project>

`
web pom file`<?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>com.example</groupId>
<artifactId>demo-controller</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>demo-controller</name>
<description>Demo project for Spring Boot</description>

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.5.3.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    <java.version>1.8</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>
</dependencies>

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

</project>
`

Can run, packaged and reported that IndexService does not exist

package com.example.demo;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@SpringBootApplication
@Controller
public class DemoControllerApplication {
    @Autowired
    private IndexService indexService;

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

    @RequestMapping(value = "")
    @ResponseBody
    public String index(){
        return indexService.Index();
    }
}
巴扎黑
巴扎黑

reply all(1)
大家讲道理

This is not a Spring-boot problem, this is a Maven dependency problem

Suppose I have a maven project that is purple

The angle brackets are the project type, preceded by the project level

iot-cloud<pom>

iot-http<jar>
iot-mqtt<jar>
iot-oauth<jar>
iot-sql-service<jar>
iot-restful<war>

There are 5 sub-projects under the iot-cloud total project. Among them, iot-restful is the entry project, which is the startup project of Spring-boot. It relies on the other four projects to provide services, so you introduce the other four projects into iot-resutful. As a dependency, then maven install is fine

Of course, test cases are not packaged, and the priority of introducing configuration files still needs to be considered


iot-restful的pom.xml

<dependencies>
        <dependency>
            <groupId>pri.somnus</groupId>
            <artifactId>iot-http</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>pri.somnus</groupId>
            <artifactId>iot-http</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>pri.somnus</groupId>
            <artifactId>iot-mqtt</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>pri.somnus</groupId>
            <artifactId>iot-oauth</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>pri.somnus</groupId>
            <artifactId>iot-sql-service</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
    </dependencies>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!