我想试试这个很酷的微应用服务器 - Payara Micro,但我无法部署最简单的示例。我使用没有依赖关系的 JavaEE7 从 netbeans 创建了一个空白的 web-app maven 项目。尝试编译它(编译不多),并使用 Glassfish 4.1.1 成功运行它 - 出现 Hello World 欢迎页面,一切正常。
进行了清理和构建,并尝试将生成的 WARfile 部署到 payara。(java -jar payara-micro.jar --deploy mywarfile.war) 启动很快,只注意到输出中有两条消息 - >“No META-INF/deploy”目录和“Deployed 1 archives”。试图打开索引页面,但是 oops -> 错误 404(如下所示)。
这个项目真的很简单,我可能在部署时做错了。也许项目结构中的一些错误?在此我介绍使用的原始项目结构:
非常感谢您提供任何有价值的解决方案/反馈。我想我只是忽略了一些次要的,愚蠢的事情。
编辑:附上pomfile。尝试使用两个依赖项运行它,仅使用 EE 或 payara,但没有变化:(
<?xml version="1.0" encoding="UTF-8"?>
http://maven.apache.org/xsd/maven-4.0.0.xsd">4.0.0
<groupId>com.myproject.sigag</groupId>
<artifactId>sigag</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>war</packaging>
<name>sigag</name>
<properties>
<endorsed.dir>${project.build.directory}/endorsed</endorsed.dir>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<!--<dependency>
<groupId>javax</groupId>
<artifactId>javaee-web-api</artifactId>
<version>7.0</version>
<scope>provided</scope>
</dependency>-->
<dependency>
<groupId>fish.payara.extras</groupId>
<artifactId>payara-micro</artifactId>
<version>4.1.152.1</version>
<scope>provided</scope>
<type>jar</type>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<compilerArguments>
<endorseddirs>${endorsed.dir}</endorseddirs>
</compilerArguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.3</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<outputDirectory>${endorsed.dir}</outputDirectory>
<silent>true</silent>
<artifactItems>
<artifactItem>
<groupId>javax</groupId>
<artifactId>javaee-endorsed-api</artifactId>
<version>7.0</version>
<type>jar</type>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>