Jersey 2.x Glassfish 中基於 Servlet 的應用

若是你使用的是 Glassfish 做爲你應用服務器,你不須要在你的引用中包含引用任何東西,全部你須要的都已經包含進去了。java

你只須要定義 JAX-RS API 以便於你可以對你的應用進行編輯,使用 (provided)依賴。api

1服務器

2ide

3spa

4code

5server

6ci

<dependency>get

    <groupId>javax.ws.rs</groupId>servlet

    <artifactId>javax.ws.rs-api</artifactId>

    <version>2.1</version>

    <scope>provided</scope>

</dependency>

若是你須要使用 Jersey 的一些特定特性,你須要基於你的 Jersey 目錄進行添加。

1

2

3

4

5

6

7

8

9

10

11

12

13

<dependency>

<groupId>org.glassfish.jersey.containers</groupId>

<artifactId>jersey-container-servlet</artifactId>

<version>2.27</version>

<scope>provided</scope>

</dependency>

<!-- if you are using Jersey client specific features without the server side -->

<dependency>

<groupId>org.glassfish.jersey.core</groupId>

<artifactId>jersey-client</artifactId>

<version>2.27</version>

<scope>provided</scope>

</dependency>

https://www.cwiki.us/display/JERSEYZH/Common+Jersey+Use+Cases

相關文章
相關標籤/搜索