gpt4 book ai didi

java - Wildfly Swarm (Thorntail) 无法启动 - InvocationTargetException

转载 作者:行者123 更新时间:2023-11-30 10:11:46 26 4
gpt4 key购买 nike

我的 JavaEE 应用程序有问题,我尝试创建将自动部署的应用程序,所以我选择了 Thorntail,但在使用 mvn thorntail:run 启动它后,我'我收到了这个错误信息

Exception in thread "main" java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.wildfly.swarm.bootstrap.MainInvoker.invoke(MainInvoker.java:53)
at org.wildfly.swarm.bootstrap.MainInvoker.main(MainInvoker.java:106)
Caused by: java.lang.RuntimeException: org.jboss.shrinkwrap.api.importer.ArchiveImportException: Could not obtain ZIP File from File
at org.wildfly.swarm.Swarm.initializeConfigView(Swarm.java:635)
at org.wildfly.swarm.Swarm.<init>(Swarm.java:254)
at org.wildfly.swarm.Swarm.<init>(Swarm.java:192)
at org.wildfly.swarm.Swarm.<init>(Swarm.java:179)
at org.wildfly.swarm.Swarm.main(Swarm.java:739)
... 6 more
Caused by: org.jboss.shrinkwrap.api.importer.ArchiveImportException: Could not obtain ZIP File from File
at org.jboss.shrinkwrap.impl.base.importer.zip.ZipImporterImpl.importFrom(ZipImporterImpl.java:178)
at org.jboss.shrinkwrap.impl.base.importer.zip.ZipImporterImpl.importFrom(ZipImporterImpl.java:157)
at org.jboss.shrinkwrap.impl.base.importer.zip.ZipImporterImpl.importFrom(ZipImporterImpl.java:49)
at org.wildfly.swarm.Swarm.initializeConfigFiltersClassPath(Swarm.java:693)
at org.wildfly.swarm.Swarm.initializeConfigFilters(Swarm.java:643)
at org.wildfly.swarm.Swarm.initializeConfigView(Swarm.java:632)
... 10 more
Caused by: java.util.zip.ZipException: error in opening zip file
at java.util.zip.ZipFile.open(Native Method)
at java.util.zip.ZipFile.<init>(ZipFile.java:225)
at java.util.zip.ZipFile.<init>(ZipFile.java:155)
at java.util.zip.ZipFile.<init>(ZipFile.java:169)
at org.jboss.shrinkwrap.impl.base.importer.zip.ZipImporterImpl.importFrom(ZipImporterImpl.java:176)
... 15 more

我的 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>com.edu</groupId>
<artifactId>money-transfer-app</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>war</packaging>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<javamoney.version>1.3</javamoney.version>
<h2.version>1.4.197</h2.version>
<junit.version>5.1.0</junit.version>
<junit.surefire.provider>1.3.0</junit.surefire.provider>
<assertj.version>3.11.1</assertj.version>
<maven.compiler.plugin.version>3.7.0</maven.compiler.plugin.version>
<maven.war.plugin.version>3.2.2</maven.war.plugin.version>
<maven.surefire.plugin.version>2.22.0</maven.surefire.plugin.version>
<version.thorntail>2.2.0.Final</version.thorntail>
<failOnMissingWebXml>false</failOnMissingWebXml>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.thorntail</groupId>
<artifactId>bom-all</artifactId>
<version>${version.thorntail}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>org.javamoney</groupId>
<artifactId>moneta</artifactId>
<version>${javamoney.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.thorntail</groupId>
<artifactId>jaxrs</artifactId>
</dependency>
<dependency>
<groupId>io.thorntail</groupId>
<artifactId>cdi</artifactId>
</dependency>
<dependency>
<groupId>io.thorntail</groupId>
<artifactId>ejb</artifactId>
</dependency>
<dependency>
<groupId>io.thorntail</groupId>
<artifactId>jpa</artifactId>
</dependency>
</dependencies>

<build>
<finalName>money-transfer-app</finalName>
<plugins>
<plugin>
<groupId>io.thorntail</groupId>
<artifactId>thorntail-maven-plugin</artifactId>
<version>${version.thorntail}</version>
<executions>
<execution>
<goals>
<goal>package</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.plugin.version}</version>
</plugin>
</plugins>
</build>
</project>

一开始以为是Java 10版本问题,降到8后问题依旧。预先感谢您的所有提示

编辑。在 mvn clean packagejava -jar target/money-transfer-app-thorntail.jar 之后还有一个错误

2018-09-10 19:37:05,388 ERROR [stderr] (main) org.wildfly.swarm.container.DeploymentException: org.wildfly.swarm.container.DeploymentException: THORN0004: Deployment failed: {"WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.undefined"],"WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.persistenceunit.\"money-transfer-app.war#h2DataBase\" is missing [jboss.naming.context.java.undefined]","jboss.persistenceunit.\"money-transfer-app.war#h2DataBase\".__FIRST_PHASE__ is missing [jboss.naming.context.java.undefined]"]}

最佳答案

persistence.xml 很可能不是问题的原因。

如果我对 Thorntail 的理解正确,它会从您的 Maven 存储库中提取依赖项,并期望它们已经存在。如果由于某种原因它们还不存在(例如,您的 pom 缺少 Thorntail 需要的依赖项),它在读取 jar 文件时只会失败。如果是这种情况,那么错误处理可能会得到改进。

关于java - Wildfly Swarm (Thorntail) 无法启动 - InvocationTargetException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52262538/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com