首頁  >  問答  >  主體

java - spring boot多模組項目如打包?

我建立了一個簡單的多模組的專案:
結構:

#外層pom.xml如下

<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檔`<?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>
`

能運行 打包封包IndexService 不存在

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();
    }
}
巴扎黑巴扎黑2702 天前709

全部回覆(1)我來回復

  • 大家讲道理

    大家讲道理2017-05-27 17:43:23

    這不是Spring-boot的問題,這是Maven依賴的問題

    假設我有一個maven工程是醬紫的

    尖括號是工程類型,前面是工程層級

    iot-cloud

    iot-http
    iot-mqtt
    iot-oauth
    iot-sql-service
    iot-restful

    iot-cloud總工程下有5個子工程,其中iot-restful是入口工程,也就是Spring-boot的啟動工程,它依賴其他四個工程來提供服務,那麼你就在iot-resutful中引入其它四個作為dependency,然後maven install就好了

    當然啦,測試用例不打包,設定檔引入優先順序還是要考慮的

    
    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>

    回覆
    0
  • 取消回覆