Jersey RESTful WebService框架学习(八)maven搭建
程序员文章站
2022-06-16 09:39:40
...
一、pom文件:
二、功程结构:
一个主应用RestApplication,一个接口类,其他的就写自己的业务逻辑
三、web.xml配置
能够扫描到自己的主应用类即可
附件附上源码
<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.lx</groupId> <artifactId>JerseyTest</artifactId> <packaging>war</packaging> <version>0.0.1-SNAPSHOT</version> <name>JerseyTest Maven Webapp</name> <url>http://maven.apache.org</url> <properties> <jersey.version>2.15</jersey.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.glassfish.jersey.containers</groupId> <artifactId>jersey-container-servlet</artifactId> <version>${jersey.version}</version> </dependency> <dependency> <groupId>org.glassfish.jersey.media</groupId> <artifactId>jersey-media-moxy</artifactId> <version>${jersey.version}</version> </dependency> </dependencies> <build> <finalName>JerseyTest</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.2</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.2</version> <configuration> <uriEncoding>UTF-8</uriEncoding> <path>/</path> </configuration> </plugin> </plugins> </build> </project>
二、功程结构:
一个主应用RestApplication,一个接口类,其他的就写自己的业务逻辑
三、web.xml配置
能够扫描到自己的主应用类即可
<!-- jersey start --> <servlet> <servlet-name>Jersey Web Application</servlet-name> <servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class> <init-param> <param-name>javax.ws.rs.Application</param-name> <param-value>com.lx.RestApplication</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>Jersey Web Application</servlet-name> <url-pattern>/rest/*</url-pattern> </servlet-mapping> <!-- jersey end -->
附件附上源码
推荐阅读
-
Jersey RESTful WebService框架学习(六)接收MultivaluedMap类型参数
-
Jersey RESTful WebService框架学习(四)使用@FormParam
-
Jersey RESTful WebService框架学习(三)使用@QueryParam
-
Jersey RESTful WebService框架学习(一)
-
Jersey RESTful WebService框架学习(八)maven搭建
-
Jersey RESTful WebService框架学习(八)文件下载防乱码
-
Jersey RESTful WebService框架学习(八)文件下载防乱码
-
Jersey RESTful WebService框架学习(七)文件上传