看到 myproject.war.undeployed 无法在已部署的 .war 中部署

Posted

技术标签:

【中文标题】看到 myproject.war.undeployed 无法在已部署的 .war 中部署【英文标题】:Not able to deploy in deployed .war seeing myproject.war.undeployed 【发布时间】:2018-09-18 06:47:59 【问题描述】:

我是 JavaEE 开发新手。我有来自我朋友的代码 - 一个 Maven 项目。当我尝试在 maven 中构建它并通过 maven deploy 插件进行部署(编写“wildfly:deploy”)时,我在部署战争期间遇到了异常。

我在 server.log 中收到以下异常:

WFLYCTL0186: 无法启动的服务: 服务 jboss.deployment.unit."com.nada.jar".POST_MODULE 服务 jboss.deployment.subunit."coivoiturage-ear.ear"."coivoiturage-web.war".INSTALL

21:10:05,410 信息 [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004:在部署目录中找到 coivoiturage-ear.ear。要触发部署,请创建一个名为 coivoiturage-ear.ear.dodeploy 的文件

21:10:05,411 INFO [org.jboss.as.server.deployment.scanner](DeploymentScanner-threads - 1)WFLYDS0004:在部署目录中找到 com.nada.jar。要触发部署,请创建一个名为 com.nada.jar.dodeploy 的文件

21:10:05,411 INFO [org.jboss.as.server.deployment.scanner](DeploymentScanner-threads - 1)WFLYDS0004:在部署目录中找到 FabricaEAR.ear。要触发部署,请创建一个名为 FabricaEAR.ear.dodeploy 的文件

我的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>
<parent>
    <groupId>pfa.covoit</groupId>
    <artifactId>coivoiturage</artifactId>
    <version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>coivoiturage-ear</artifactId>
<packaging>ear</packaging>

<dependencies>
    <dependency>
        <groupId>pfa.covoit</groupId>
        <artifactId>coivoiturage-web</artifactId>
        <type>war</type>
    </dependency>
    <dependency>
        <groupId>pfa.covoit</groupId>
        <artifactId>coivoiturage-ejb</artifactId>
        <type>ejb</type>
    </dependency>
    <dependency>
        <groupId>org.wildfly</groupId>
        <artifactId>wildfly-ejb-client-bom</artifactId>
        <version>9.0.0.Alpha1</version>
        <type>pom</type>
    </dependency>
</dependencies>

<build>
    <finalName>$project.artifactId</finalName>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-ear-plugin</artifactId>
            <version>$version.ear.plugin</version>
            <configuration>
                <version>7</version>
                <fileNameMapping>no-version</fileNameMapping>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.wildfly.plugins</groupId>
            <artifactId>wildfly-maven-plugin</artifactId>
            <version>$version.wildfly.maven.plugin</version>
            <configuration>
                <filename>$project.artifactId.ear</filename>
                <port>19990</port>
            </configuration>
            <executions>
                <execution>
                    <phase>install</phase>
                    <goals>
                        <goal>deploy</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

我无法正确部署我的战争。我在 server.log 中没有看到对我的战争部署的任何引用,或者我也没有看到任何错误。 有人可以帮我吗

【问题讨论】:

【参考方案1】:

不要使用 maven 插件进行部署,而是尝试通过管理控制台进行部署,并检查日志文件中是否出现任何内容。 在这一点上,我最好的猜测是部署所需的 jar 或文件可能丢失,您必须为此创建模块。 如果它通过管理控制台部署。我建议您提供文件的绝对路径并查看它是否有效。

“文件的完整路径”

【讨论】:

【参考方案2】:

我也是 Wildfly 的新手,但我找到了解决方案:

    按右键停止standalone.bat Ctrl + C 将 your_project.war 复制到 [Drive]:\wildfly[version of wildfly]\standalone\deployments 创建文件 your_project.war.dodeploy 到 [Drive]:\wildfly[version of wildfly]\standalone\deployments 再次启动standalone.bat(看到your_project.war.deploying 时可能需要按回车键)

wildfly 似乎无法自行创建 .war.dodeploy。

希望对 JBoss 和 Wildfly 的新用户有所帮助。

【讨论】:

以上是关于看到 myproject.war.undeployed 无法在已部署的 .war 中部署的主要内容,如果未能解决你的问题,请参考以下文章

怎么才能看到TCP数据包

什么是网页的HTML,在哪里可以看到?

并非左眼球看到的东西会传到右脑,右眼球看到的东西会传到左脑

回忆杀书房翻杂物,看到初恋的信件,看到奖牌,看到梅西力宏,帅丙的眼角又湿了.....

回忆杀书房翻杂物,看到初恋的信件,看到奖牌,看到梅西力宏,帅丙的眼角又湿了.....

Maven 构建中的 -B 开关是啥?我在 GitHub Actions 中看到它,但在其他地方没有看到