xml RESTEasy Web应用程序的示例maven构建文件,包括下载依赖项。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml RESTEasy Web应用程序的示例maven构建文件,包括下载依赖项。相关的知识,希望对你有一定的参考价值。

<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>com.mariodiana.rest</groupId>
  <artifactId>RESTfulExample</artifactId>
  <packaging>war</packaging>
  <version>1.0-SNAPSHOT</version>
  <name>RESTfulExample Maven Webapp</name>
  <url>http://maven.apache.org</url>
  
  <properties>
    <!-- http://maven.apache.org/general.html#encoding-warning -->
    <project.build.sourceEncoding>
    UTF-8</project.build.sourceEncoding>
  </properties>
  
  <repositories>
    <repository>
      <id>JBoss repository</id>
      <url>
      https://repository.jboss.org/nexus/content/groups/public-jboss/</url>
    </repository>
  </repositories>
  
  <dependencies>
    
    <!-- RESTEasy -->
    <dependency>
      <groupId>org.jboss.resteasy</groupId>
      <artifactId>resteasy-jaxrs</artifactId>
      <version>3.0.8.Final</version>
    </dependency>
    
    <!-- Needed to load the service automagically. -->
    <dependency>
      <groupId>org.jboss.resteasy</groupId>
      <artifactId>resteasy-servlet-initializer</artifactId>
      <version>3.0.8.Final</version>
    </dependency>
    
    <!-- Needed for RESTEasy to have access to servlet context. -->
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>javax.servlet-api</artifactId>
      <version>3.0.1</version>
    </dependency>
    
    <!-- Support files. -->
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
    
    <dependency> 
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-jdk14</artifactId>
      <version>1.7.7</version>
    </dependency>
    
  </dependencies>
  
  <build>
    <finalName>RESTfulExample</finalName>
    
    <plugins>
    
      <plugin>
        <artifactId>maven-clean-plugin</artifactId>
        <version>2.5</version>
        
        <configuration>
          <filesets>
            <fileset>
              <directory>.</directory>
              <includes>
                <include>**/*~</include>
              </includes>
              <followSymlinks>false</followSymlinks>
            </fileset>
          </filesets>
        </configuration>
      </plugin>
      
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.0</version>
        <configuration>
          <source>1.7</source>
          <target>1.7</target>
          <compilerArgument>-Xlint:unchecked</compilerArgument>
        </configuration>
      </plugin>
      
    </plugins>
  </build>
  
</project>

以上是关于xml RESTEasy Web应用程序的示例maven构建文件,包括下载依赖项。的主要内容,如果未能解决你的问题,请参考以下文章

RESTEasy 与 Apache Ant

干货运用resteasy整合web框架,同时将后台接口以js形式导出到前台

RestEasy 客户端提供找不到内容类型应用程序/xml 类型的编写器

使用 RestEasy 处理没有“根”元素的 JSON 响应

RESTEasy:@FormParam@PathParam@QueryParam@HeaderParam@CookieParam@MatrixParam说明

resteasy经验谈