Как заменить основной класс Spring Boot 1.4 / 1.5 в MANIFEST.MF для упаковки и использования моего пользовательского класса JarLauncher - PullRequest
0 голосов
/ 23 октября 2019

Я хочу расширить org.springframework.boot.loader.JarLauncher, чтобы добавить свою специализацию.

Как заменить атрибут Main-Class в MANIFEST.MF на:

Manifest-Version: 1.0
Implementation-Title: my-project
Implementation-Version: 1.0.0.0
Archiver-Version: Plexus Archiver
Built-By: Roberto
Implementation-Vendor-Id: my.project
Spring-Boot-Version: 1.4.7.RELEASE
Implementation-Vendor: Pivotal Software, Inc.
Main-Class: org.springframework.boot.loader.JarLauncher
Start-Class: my.project.MyApplication
Spring-Boot-Classes: BOOT-INF/classes/
Spring-Boot-Lib: BOOT-INF/lib/
Created-By: Apache Maven 3.5.2
Build-Jdk: 1.8.0_181
Implementation-URL: http://projects.spring.io/spring-boot/my-project/

И изменить на что-товот так (см. атрибут Main-Class был изменен):

Manifest-Version: 1.0
Implementation-Title: my-project
Implementation-Version: 1.0.0.0
Archiver-Version: Plexus Archiver
Built-By: Roberto
Implementation-Vendor-Id: my.project
Spring-Boot-Version: 1.4.7.RELEASE
Implementation-Vendor: Pivotal Software, Inc.
Main-Class: my.project.MyCustomJarLauncher
Start-Class: my.project.MyApplication
Spring-Boot-Classes: BOOT-INF/classes/
Spring-Boot-Lib: BOOT-INF/lib/
Created-By: Apache Maven 3.5.2
Build-Jdk: 1.8.0_181
Implementation-URL: http://projects.spring.io/spring-boot/my-project/

Я уже изменил раздел сборки pom.xml, чтобы добавить свой собственный класс запуска:

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

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-antrun-plugin</artifactId>
            <executions>
                <execution>
                    <phase>package</phase>
                    <configuration>
                        <target>
                            <zip
                                destfile="${project.build.directory}/${project.build.finalName}.jar"
                                update="true" compress="store">
                                <fileset dir="${project.build.directory}/classes"
                                    includes="my/project/MyCustomJarLauncher.class" />
                            </zip>
                        </target>
                    </configuration>
                    <goals>
                        <goal>run</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

1 Ответ

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

Я решил с помощью скрипта Groovy:

<plugin>
    <groupId>org.codehaus.gmaven</groupId>
    <artifactId>groovy-maven-plugin</artifactId>
    <executions>
        <execution>
            <phase>package</phase>
            <goals>
                <goal>execute</goal>
            </goals>
            <configuration>
                <source>
                    import java.io.*
                    import java.nio.file.*
                    import java.util.jar.Manifest
                    import java.net.URI

                    def uri = new File(project.build.directory, project.build.finalName + '.jar').toURI()
                    def fs = FileSystems.newFileSystem(URI.create("jar:${uri.toString()}"), ['create':'false'])
                    try {
                        def path = fs.getPath("/META-INF/MANIFEST.MF")
                        def data = Files.readAllBytes(path)
                        def mf = new Manifest(new ByteArrayInputStream(data))
                        mf.mainAttributes.putValue("Main-Class", "my.project.MyCustomJarLauncher")
                        def out = new ByteArrayOutputStream()
                        mf.write(out);
                        data = out.toByteArray()
                        Files.delete(path)
                        Files.write(path, data)
                    } finally {
                        fs.close()
                    }                           
                </source>
            </configuration>
        </execution>
    </executions>
</plugin>

Этот скрипт Groovy делает:

  • Load de JAR
  • Загрузка байтов MANIFEST.MF
  • Создание класса Manifest из этих байтов
  • Изменение Main-Class на мою собственную реализацию
  • Запись этого экземпляра Manifest в массив байтов
  • Удалите файл MANIFEST.MF из JAR
  • Создайте новый файл MANIFEST.MF в JAR, используя новые байты

Таким образом, каждый раз, когда я запускаю mvn package this groovyскрипт выполняется после плагина Spring Boot Maven.

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