无法使用 Wildfly Web 服务器运行 JaxRs Web 服务

Posted

技术标签:

【中文标题】无法使用 Wildfly Web 服务器运行 JaxRs Web 服务【英文标题】:Unable to run JaxRs web service using Wildfly web server 【发布时间】:2018-06-26 19:07:38 【问题描述】:

您好,我正在尝试在 JBoss 开发人员工作室和 Wildfly 11 上构建一个简单的 JaxRs Web 服务作为应用程序服务器,但是当我尝试部署我的 maven 项目时出现以下错误:

Failed to start service jboss.undertow.deployment.default-server.default-host."/JaxRsTest-0.0.1-SNAPSHOT": org.jboss.msc.service.StartException in service jboss.undertow.deployment.default-server.default-host."/JaxRsTest-0.0.1-SNAPSHOT": java.lang.NoSuchMethodError: org.apache.tomcat.util.descriptor.DigesterFactory.newDigester(ZZLorg/apache/tomcat/util/digester/RuleSet;Z)Lorg/apache/tomcat/util/digester/Digester;

我还想通知您,当我使用 apache tomcat 9 时,该项目运行良好但是当我切换到 wildfly 11 时,它会引发上述错误。我是 java 和特别是 web 服务的新手,刚刚开始为一家公司工作它使用与wildfly完全相同的Jboss eap服务器,不幸的是我在处理Web服务分配时也收到了同样的错误。

For more reference below is my pom.xml file :

    <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>JaxRsServiceTest</groupId>
      <artifactId>JaxRsServiceTest</artifactId>
      <version>0.0.1-SNAPSHOT</version>
      <packaging>war</packaging>
      <dependencies>
            <dependency>
                <groupId>com.sun.jersey</groupId>
                <artifactId>jersey-server</artifactId>
                <version>1.19</version>
            </dependency>
            <dependency>
                <groupId>com.sun.jersey</groupId>
                <artifactId>jersey-servlet</artifactId>
                <version>1.19</version>
            </dependency>
        </dependencies>
      <build>
        <sourceDirectory>src</sourceDirectory>
        <plugins>
          <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.5.1</version>
            <configuration>
              <source>1.8</source>
              <target>1.8</target>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-war-plugin</artifactId>
            <version>3.0.0</version>
            <configuration>
              <warSourceDirectory>WebContent</warSourceDirectory>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </project>

而我的 web.xml 文件内容是:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
  <display-name>JaxRsServiceTest</display-name>    
    <servlet>
        <servlet-name>Jersey REST Service</servlet-name>
        <servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class>
        <init-param>
            <param-name>com.sun.jersey.config.property.packages</param-name>
            <param-value>com.test.jaxrs.service</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>Jersey REST Service</servlet-name>
        <url-pattern>/rest/*</url-pattern>
    </servlet-mapping>
</web-app>

我在 com.test.jaxrs.service 包中的 java 类是

  package com.test.jaxrs.service;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;

@Path("/test")
public class JaxRsTest 

    @GET
    @Path("/hello/msg")
    @Produces(MediaType.TEXT_PLAIN)
    public String processRequest(@PathParam(value="msg")String message)
    
        return "Hello : " + message;
    

请让我知道我的野蝇哪里出了问题......并提前致谢

【问题讨论】:

我可以建议您切换到 JBoss EAP 吗?如果您的公司正在使用它 - 使用相同的应用服务器平台可能会让您受益。您可以获取community developer edition,如果您还没有 JBoss 工具,请安装它们,然后添加 JBoss EAP 服务器。贵公司使用的是哪个版本的 EAP?我经常使用 EAP,最近让 JAX-RS 工作,所以我可以帮助你。最后,您是否在项目中包含任何特定的与 tomcat 相关的 jar,因为看起来您可能没有此类方法错误。 @JGlass 我的公司使用 jboss eap 6.1,但我无法将其安装为付费版本,它不是免费的,因为我在互联网上读到它虽然我有 jboss developer studio 社区版,但我没有关于服务器的想法你能分享一个确切的链接或地址吗?而且我不包括任何与 tomcat 相关的 jars。 看起来@stdunbar 可能对您的问题有所帮助! Here's JBoss EAP 6.1 的链接 - 他们也有 7.1 【参考方案1】:

Wildfly 和 EAP 是完整的 JEE 服务器 - 无需在您的 pom.xml 中包含 Jersey 依赖项。 Tomcat 要求这样做是因为它主要是一个 servlet/JSP 引擎。您的服务看起来不错,但您的 pom.xmlweb.xml 是使用 Tomcat 的结果。此外,如果您不想要 web.xml,则不再需要它,当然也不需要使用 Jersey 来映射它。

您还需要一个文件 - 让事情开始的 Application 类。它看起来像:

import javax.ws.rs.ApplicationPath;
import javax.ws.rs.core.Application;

/**
 * Used to bootstrap JAX-RS.  Otherwise this class is
 * not directly used.
 */
@ApplicationPath("/rest")
public class RestApplicationConfig extends Application 
    // intentionally empty

它可以放在源代码树中的任何位置。请注意,它会接管 /rest 路径,这与您在 web.xml 中的路径相似。

下面的pom.xml 将创建一个您可以部署到 Wildfly 的 .war 文件。这很简单,现在删除你的web.xml

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/maven-v4_0_0.xsd">

    <modelVersion>4.0.0</modelVersion>
    <groupId>JaxRsServiceTest</groupId>
    <artifactId>JaxRsServiceTest</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>war</packaging>

    <properties>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <failOnMissingWebXml>false</failOnMissingWebXml>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.jboss.resteasy</groupId>
            <artifactId>jaxrs-api</artifactId>
            <version>3.0.12.Final</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>
</project>

【讨论】:

感谢@stdunbar 的宝贵建议,您所建议的一切都很好......

以上是关于无法使用 Wildfly Web 服务器运行 JaxRs Web 服务的主要内容,如果未能解决你的问题,请参考以下文章

在 Wildfly 的战争部署期间无法访问 jar 中的类

配置 Wildfly 10 以使用 Jackson(作为 JSON 提供程序)

无法将 JSF + CDI 项目从 Tomcat 迁移到 Wildfly

在 Wildfly 10 上运行 EJB 2.1

JBoss EAP,Wildfly,JBoss web和JBoss服务器有什么区别?

Wildfly 8.1.0 以备用配置独立运行