如應用是運行在 JDK 上的話,你只須要使用 JAX-RS 中的客戶端部分就能夠了,這個根據你使用的客戶端有所調整。html
這裏有一系列的模塊是能夠供你使用的,例如 grizzly 或 apache 或 jetty connector(請參考下面的的依賴表格)。Jersey 客戶端默認使用 JDK 進行運行(使用的是 HttpUrlConnection)。git
請參考 Chapter 5, Client API 得到更多的細節。github
1apache 2spa 3code 4htm 5ci |
<dependency> get <groupId>org.glassfish.jersey.core</groupId> it <artifactId>jersey-client</artifactId> <version>2.27</version> </dependency> |
當前可用的鏈接器:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<dependency> <groupId>org.glassfish.jersey.connectors</groupId> <artifactId>jersey-grizzly-connector</artifactId> <version>2.27</version> </dependency> <dependency> <groupId>org.glassfish.jersey.connectors</groupId> <artifactId>jersey-apache-connector</artifactId> <version>2.27</version> </dependency> <dependency> <groupId>org.glassfish.jersey.connectors</groupId> <artifactId>jersey-jetty-connector</artifactId> <version>2.27</version> </dependency> |
https://www.cwiki.us/display/JERSEYZH/Common+Jersey+Use+Cases