Плагин Spring boot maven - каталог BOOT-INF, вызывающий сбой приложения AWS Lambda - PullRequest
0 голосов
/ 01 октября 2019

Произошло изменение в сгенерированной структуре пакета (при извлечении файла uber jar ) в SpringBoot 2.1.0.RELEASE .

The 1.5.9.RELEASE jar Файл содержит com, lib, META-INF и org каталогов

2.1.0.RELEASE имеет каталоги BOOT-INF, META-INF и org

В основном начиная с 2.0.0.RELEASE и далее - все классы и библиотеки находятся в каталоге BOOT-INF.

Из-за этого - при попытке запустить проект Spring Boot на Amazon Lambda - он говорит, что jar не найден, так как он не может прочитатьновая структура Jar Spring Boot Uber

Мой вопрос:

  • Возможно ли в новых версиях плагина Spring Boot Maven сгенерировать Uber Jar такой же структуры, как вверсия 1.5.9.RELEASE?

Я попробовал maven-shade-plugin - но это приводит к другим проблемам. Любая помощь приветствуется.

Ссылочная ссылка из StackOverflow: Плагин Spring Boot Maven - без каталога BOOT-INF

1 Ответ

0 голосов
/ 09 октября 2019

Этот фрагмент XML-плагина maven помог мне:

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <version>3.1.1</version>
                <executions>
                    <execution>
                        <id>copy-dependencies</id>
                        <phase>package</phase>
                        <goals>
                            <goal>copy-dependencies</goal>
                        </goals>
                        <configuration>
                            <outputDirectory>${project.build.directory}/lib</outputDirectory>
                            <includeScope>runtime</includeScope>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>3.1.0</version>
                <executions>
                    <execution>
                        <id>zip-assembly</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                        <configuration>
                            <finalName>${project.artifactId}-${project.version}</finalName>
                            <descriptors>
                                <descriptor>src${file.separator}assembly${file.separator}bin.xml</descriptor>
                            </descriptors>
                            <attach>false</attach>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

Кроме того, вам потребуется файл assembly/bin.xml со следующим содержимым:

<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd">
    <id>lambda-package</id>
    <formats>
        <format>zip</format>
    </formats>
    <includeBaseDirectory>false</includeBaseDirectory>
    <fileSets>
        <!-- copy runtime dependencies with some exclusions -->
        <fileSet>
            <directory>${project.build.directory}${file.separator}lib</directory>
            <outputDirectory>lib</outputDirectory>
            <excludes>
                <exclude>tomcat-embed*</exclude>
            </excludes>
        </fileSet>
        <!-- copy all classes -->
        <fileSet>
            <directory>${project.build.directory}${file.separator}classes</directory>
            <includes>
                <include>**</include>
            </includes>
            <outputDirectory>${file.separator}</outputDirectory>
        </fileSet>
    </fileSets>
</assembly>

Примечаниечто вам придется использовать сгенерированный файл .zip вместо файла .jar.

Полный рабочий пример использования Spring Boot 2 с Lambda доступен на awslabs: https://github.com/awslabs/aws-serverless-java-container/tree/master/samples/springboot2/pet-store

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...