我有一个标准的干净 Web 项目,我用它来构建 Wildfly swarm 工件。我的 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.test.swarm</groupId>
<artifactId>test_security_module</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>war</packaging>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.wildfly.swarm</groupId>
<artifactId>bom-all</artifactId>
<version>2017.6.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>7.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.wildfly.swarm</groupId>
<artifactId>security</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.wildfly.swarm</groupId>
<artifactId>wildfly-swarm-plugin</artifactId>
<version>2017.6.1</version>
<executions>
<execution>
<goals>
<goal>package</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
我还有一个 jboss-web.xml 应该注册一个上下文根,看起来像:
<?xml version="1.0" encoding="UTF-8"?>
<jboss-web xmlns="http://www.jboss.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.jboss.com/xml/ns/javaee http://www.jboss.org/j2ee/schema/jboss-web_6_0.xsd"
version="6.0">
<context-root>/Tiles</context-root>
</jboss-web>
因此,在构建并运行项目之后,必须注册 /Tiles 上下文根,并且应用程序可以在以下位置访问:http://localhost:8080/Tiles。
但后来我尝试使用标准 java -jar 运行 uber jar,Swarm 部署项目名称的哈希名称(而不是项目名称)。它甚至不注册上下文根。堆栈跟踪的片段是:
2017-07-04 04:32:14,329 INFO [org.jboss.as](控制器引导线程)WFLYSRV0025:WildFly Swarm 2017.6.1(WildFly Core 2.2.1.Final)在 5762 毫秒内启动 - 启动了 59 个服务中的 55 个(4服务是惰性的、被动的或按需的)2017-07-04 04:32:14,383 INFO [org.wildfly.swarm.runtime.deployer](主要)部署 3d31f81a-29d6-4ea1-b3eb-0a2a98a3c3f5.war 2017-07 -04 04:32:14,405 INFO [org.jboss.as.server.deployment](MSC 服务线程 1-3)WFLYSRV0027:开始部署“3d31f81a-29d6-4ea1-b3eb-0a2a98a3c3f5.war”(运行时名称: “3d31f81a-29d6-4ea1-b3eb-0a2a98a3c3f5.war”)2017-07-04 04:32:14,464 信息 [org.jboss.as.server](主要)WFLYSRV0010:已部署“3d31f81a-29d6-4ea1-b3eb-0a2a98a3c3f5 .war”(运行时名称:“3d31f81a-29d6-4ea1-b3eb-0a2a98a3c3f5.war”)2017-07-04 04:32:14,466 信息 [org.wildfly.swarm] (main) WFSWARM99999: WildFly Swarm 已准备就绪
什么可能导致 swarm 使用项目的哈希名称运行应用程序?