├── .gitignore ├── Chapter 1. Getting Started 开始 ├── 1.1. Creating a New Project from Maven Archetype 从Maven Archetype创建一个新项目.md ├── 1.2. Exploring the Newly Created Project 探索新项目.md ├── 1.3. Running the Project 运行项目.md ├── 1.4. Creating a JavaEE Web Application 创建一个JavaEE的Web项目.md ├── 1.5. Creating a Web Application that can be deployed on Heroku 创建能部署在Heroku上面的Web项目.md ├── 1.6. Exploring Other Jersey Examples 探索其他例子.md └── Chapter 1. Getting Started 开始.md ├── Chapter 10. Filters and Interceptors 过滤器和拦截器 └── Chapter 10. Filters and Interceptors 过滤器和拦截器.md ├── Chapter 11. Asynchronous Services and Clients 异步服务器和客户端 └── Chapter 11. Asynchronous Services and Clients 异步服务器和客户端.md ├── Chapter 15. Server-Sent Events (SSE) Support ├── 15.1. What are Server-Sent Events.md ├── 15.2. When to use Server-Sent Events.md ├── 15.3. Jersey Server-Sent Events API.md ├── 15.4. Implementing SSE support in a JAX-RS resource.md └── 15.5. Consuming SSE events with Jersey clients.md ├── Chapter 2. Modules and dependencies 模块和依赖 ├── 2.1. Java SE Compatibility 与 Java SE 兼容性.md ├── 2.2. Introduction to Jersey dependencies 介绍Jersey的依赖.md ├── 2.3. Common Jersey Use Cases 常见Jersey示例.md ├── 2.4. List of modules 模块列表.md └── Chapter 2. Modules and dependencies 模块和依赖.md ├── Chapter 20. MVC Templates ├── 20.1. Viewable.md ├── 20.2. Template.md ├── 20.3. Absolute vs. Relative template reference.md ├── 20.4. Handling errors with MVC.md ├── 20.5. Registration and Configuration.md ├── 20.6. Supported templating engines.md ├── 20.7. Writing Custom Templating Engines.md ├── 20.8. Other Examples.md └── Chapter 20. MVC Templates.md ├── Chapter 23. Spring DI 使用 Spring 注入 ├── 23.1. Dependencies 依赖.md ├── 23.2. Registration and Configuration 注册和配置.md ├── 23.3. Example 示例.md └── README.md ├── Chapter 24. Jersey Test Framework └── Chapter 24. Jersey Test Framework.md ├── Chapter 3. JAX-RS Application, Resources and Sub-Resources 关于JAX-RS应用,资源和子资源 ├── 3.1. Root Resource Classes 根资源类.md ├── 3.2. Parameter Annotations @Param 参数注解.md ├── 3.3. Sub-resources 子资源.md ├── 3.4. Life-cycle of Root Resource Classes 根资源类生命周期.md ├── 3.5. Rules of Injection 注入规则.md ├── 3.6. Use of @Context 使用 @Context.md ├── 3.7. Programmatic resource model 可编程的资源模型.md └── Chapter 3. JAX-RS Application, Resources and Sub-Resources 关于JAX-RS应用,资源和子资源.md ├── Chapter 4. Application Deployment and Runtime Environments 应用部署和运行时环境 ├── 4.1. Introduction 介绍.md ├── 4.10. Other Environments 其他环境.md ├── 4.2. JAX-RS Application Model 应用模型.md ├── 4.3. Auto-Discoverable Features 自动发现的特性.md ├── 4.4. Configuring the Classpath Scanning 配置 Classpath 扫描.md ├── 4.5. Java SE Deployment Environments Java 部署环境.md ├── 4.6. Creating programmatic JAX-RS endpoint 创建可编程的 JAX-RS 端点.md ├── 4.7. Servlet-based Deployment 基于 Servlet 的部署.md ├── 4.8. Java EE Platform 在 Java EE 平台.md ├── 4.9. OSGi.md └── Chapter 4. Application Deployment and Runtime Environments 应用部署和运行时环境.md ├── Chapter 5. Client API 客户端 API ├── 5.1. Uniform Interface Constraint 统一接口约束.md ├── 5.2 Ease of use and reusing JAX-RS artifacts 易于使用和可重用的 JAX-RS 工件.md ├── 5.3. Overview of the Client API 客户端 API 总览.md ├── 5.4. Java instances and types for representations 关于 Java 实例和表示的类型.md ├── 5.5. Client Transport Connectors 客户端传输连接器.md ├── 5.6. Using client request and response filters 使用客户端请求和响应过滤器.md ├── 5.7. Closing connections 关闭连接器.md ├── 5.8. Injections into client providers 注入到客户端提供者.md ├── 5.9. Securing a Client 保护 Client 安全.md └── Chapter 5. Client API 客户端 API.md ├── Chapter 6. Reactive Jersey Client API ├── 6.1. Motivation for Reactive Client Extension.md ├── 6.2. Usage and Extension Modules.md ├── 6.3. Supported Reactive Libraries.md ├── 6.4. Implementing Support for Custom Reactive Libraries.md ├── 6.5. Examples.md └── Chapter 6. Reactive Jersey Client API.md ├── Chapter 7. Representations and Responses 表现与响应 ├── 7.1. Representations and Java Types.md ├── 7.2. Building Responses.md ├── 7.3. WebApplicationException and Mapping Exceptions to Responses.md ├── 7.4. Conditional GETs and Returning 304 Not Modified Responses.md └── Chapter 7. Representations and Responses.md ├── Chapter 9. Support for Common Media Type Representations 支持常用媒体类型 ├── 9.1. JSON.md ├── 9.2. XML.md ├── 9.3. Multipart.md └── README.md ├── Preface 前言.md ├── README.md └── SUMMARY.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter 1. Getting Started 开始/1.1. Creating a New Project from Maven Archetype 从Maven Archetype创建一个新项目.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 1. Getting Started 开始/1.1. Creating a New Project from Maven Archetype 从Maven Archetype创建一个新项目.md -------------------------------------------------------------------------------- /Chapter 1. Getting Started 开始/1.2. Exploring the Newly Created Project 探索新项目.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 1. Getting Started 开始/1.2. Exploring the Newly Created Project 探索新项目.md -------------------------------------------------------------------------------- /Chapter 1. Getting Started 开始/1.3. Running the Project 运行项目.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 1. Getting Started 开始/1.3. Running the Project 运行项目.md -------------------------------------------------------------------------------- /Chapter 1. Getting Started 开始/1.4. Creating a JavaEE Web Application 创建一个JavaEE的Web项目.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 1. Getting Started 开始/1.4. Creating a JavaEE Web Application 创建一个JavaEE的Web项目.md -------------------------------------------------------------------------------- /Chapter 1. Getting Started 开始/1.5. Creating a Web Application that can be deployed on Heroku 创建能部署在Heroku上面的Web项目.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 1. Getting Started 开始/1.5. Creating a Web Application that can be deployed on Heroku 创建能部署在Heroku上面的Web项目.md -------------------------------------------------------------------------------- /Chapter 1. Getting Started 开始/1.6. Exploring Other Jersey Examples 探索其他例子.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 1. Getting Started 开始/1.6. Exploring Other Jersey Examples 探索其他例子.md -------------------------------------------------------------------------------- /Chapter 1. Getting Started 开始/Chapter 1. Getting Started 开始.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 1. Getting Started 开始/Chapter 1. Getting Started 开始.md -------------------------------------------------------------------------------- /Chapter 10. Filters and Interceptors 过滤器和拦截器/Chapter 10. Filters and Interceptors 过滤器和拦截器.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 10. Filters and Interceptors 过滤器和拦截器/Chapter 10. Filters and Interceptors 过滤器和拦截器.md -------------------------------------------------------------------------------- /Chapter 11. Asynchronous Services and Clients 异步服务器和客户端/Chapter 11. Asynchronous Services and Clients 异步服务器和客户端.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 11. Asynchronous Services and Clients 异步服务器和客户端/Chapter 11. Asynchronous Services and Clients 异步服务器和客户端.md -------------------------------------------------------------------------------- /Chapter 15. Server-Sent Events (SSE) Support/15.1. What are Server-Sent Events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 15. Server-Sent Events (SSE) Support/15.1. What are Server-Sent Events.md -------------------------------------------------------------------------------- /Chapter 15. Server-Sent Events (SSE) Support/15.2. When to use Server-Sent Events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 15. Server-Sent Events (SSE) Support/15.2. When to use Server-Sent Events.md -------------------------------------------------------------------------------- /Chapter 15. Server-Sent Events (SSE) Support/15.3. Jersey Server-Sent Events API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 15. Server-Sent Events (SSE) Support/15.3. Jersey Server-Sent Events API.md -------------------------------------------------------------------------------- /Chapter 15. Server-Sent Events (SSE) Support/15.4. Implementing SSE support in a JAX-RS resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 15. Server-Sent Events (SSE) Support/15.4. Implementing SSE support in a JAX-RS resource.md -------------------------------------------------------------------------------- /Chapter 15. Server-Sent Events (SSE) Support/15.5. Consuming SSE events with Jersey clients.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 15. Server-Sent Events (SSE) Support/15.5. Consuming SSE events with Jersey clients.md -------------------------------------------------------------------------------- /Chapter 2. Modules and dependencies 模块和依赖/2.1. Java SE Compatibility 与 Java SE 兼容性.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 2. Modules and dependencies 模块和依赖/2.1. Java SE Compatibility 与 Java SE 兼容性.md -------------------------------------------------------------------------------- /Chapter 2. Modules and dependencies 模块和依赖/2.2. Introduction to Jersey dependencies 介绍Jersey的依赖.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 2. Modules and dependencies 模块和依赖/2.2. Introduction to Jersey dependencies 介绍Jersey的依赖.md -------------------------------------------------------------------------------- /Chapter 2. Modules and dependencies 模块和依赖/2.3. Common Jersey Use Cases 常见Jersey示例.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 2. Modules and dependencies 模块和依赖/2.3. Common Jersey Use Cases 常见Jersey示例.md -------------------------------------------------------------------------------- /Chapter 2. Modules and dependencies 模块和依赖/2.4. List of modules 模块列表.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 2. Modules and dependencies 模块和依赖/2.4. List of modules 模块列表.md -------------------------------------------------------------------------------- /Chapter 2. Modules and dependencies 模块和依赖/Chapter 2. Modules and dependencies 模块和依赖.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 2. Modules and dependencies 模块和依赖/Chapter 2. Modules and dependencies 模块和依赖.md -------------------------------------------------------------------------------- /Chapter 20. MVC Templates/20.1. Viewable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 20. MVC Templates/20.1. Viewable.md -------------------------------------------------------------------------------- /Chapter 20. MVC Templates/20.2. Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 20. MVC Templates/20.2. Template.md -------------------------------------------------------------------------------- /Chapter 20. MVC Templates/20.3. Absolute vs. Relative template reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 20. MVC Templates/20.3. Absolute vs. Relative template reference.md -------------------------------------------------------------------------------- /Chapter 20. MVC Templates/20.4. Handling errors with MVC.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 20. MVC Templates/20.5. Registration and Configuration.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 20. MVC Templates/20.6. Supported templating engines.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 20. MVC Templates/20.7. Writing Custom Templating Engines.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 20. MVC Templates/20.8. Other Examples.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 20. MVC Templates/Chapter 20. MVC Templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 20. MVC Templates/Chapter 20. MVC Templates.md -------------------------------------------------------------------------------- /Chapter 23. Spring DI 使用 Spring 注入/23.1. Dependencies 依赖.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 23. Spring DI 使用 Spring 注入/23.1. Dependencies 依赖.md -------------------------------------------------------------------------------- /Chapter 23. Spring DI 使用 Spring 注入/23.2. Registration and Configuration 注册和配置.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 23. Spring DI 使用 Spring 注入/23.2. Registration and Configuration 注册和配置.md -------------------------------------------------------------------------------- /Chapter 23. Spring DI 使用 Spring 注入/23.3. Example 示例.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 23. Spring DI 使用 Spring 注入/23.3. Example 示例.md -------------------------------------------------------------------------------- /Chapter 23. Spring DI 使用 Spring 注入/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 23. Spring DI 使用 Spring 注入/README.md -------------------------------------------------------------------------------- /Chapter 24. Jersey Test Framework/Chapter 24. Jersey Test Framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 24. Jersey Test Framework/Chapter 24. Jersey Test Framework.md -------------------------------------------------------------------------------- /Chapter 3. JAX-RS Application, Resources and Sub-Resources 关于JAX-RS应用,资源和子资源/3.1. Root Resource Classes 根资源类.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 3. JAX-RS Application, Resources and Sub-Resources 关于JAX-RS应用,资源和子资源/3.1. Root Resource Classes 根资源类.md -------------------------------------------------------------------------------- /Chapter 3. JAX-RS Application, Resources and Sub-Resources 关于JAX-RS应用,资源和子资源/3.2. Parameter Annotations @Param 参数注解.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 3. JAX-RS Application, Resources and Sub-Resources 关于JAX-RS应用,资源和子资源/3.2. Parameter Annotations @Param 参数注解.md -------------------------------------------------------------------------------- /Chapter 3. JAX-RS Application, Resources and Sub-Resources 关于JAX-RS应用,资源和子资源/3.3. Sub-resources 子资源.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 3. JAX-RS Application, Resources and Sub-Resources 关于JAX-RS应用,资源和子资源/3.3. Sub-resources 子资源.md -------------------------------------------------------------------------------- /Chapter 3. JAX-RS Application, Resources and Sub-Resources 关于JAX-RS应用,资源和子资源/3.4. Life-cycle of Root Resource Classes 根资源类生命周期.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 3. JAX-RS Application, Resources and Sub-Resources 关于JAX-RS应用,资源和子资源/3.4. Life-cycle of Root Resource Classes 根资源类生命周期.md -------------------------------------------------------------------------------- /Chapter 3. JAX-RS Application, Resources and Sub-Resources 关于JAX-RS应用,资源和子资源/3.5. Rules of Injection 注入规则.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 3. JAX-RS Application, Resources and Sub-Resources 关于JAX-RS应用,资源和子资源/3.5. Rules of Injection 注入规则.md -------------------------------------------------------------------------------- /Chapter 3. JAX-RS Application, Resources and Sub-Resources 关于JAX-RS应用,资源和子资源/3.6. Use of @Context 使用 @Context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 3. JAX-RS Application, Resources and Sub-Resources 关于JAX-RS应用,资源和子资源/3.6. Use of @Context 使用 @Context.md -------------------------------------------------------------------------------- /Chapter 3. JAX-RS Application, Resources and Sub-Resources 关于JAX-RS应用,资源和子资源/3.7. Programmatic resource model 可编程的资源模型.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 3. JAX-RS Application, Resources and Sub-Resources 关于JAX-RS应用,资源和子资源/3.7. Programmatic resource model 可编程的资源模型.md -------------------------------------------------------------------------------- /Chapter 3. JAX-RS Application, Resources and Sub-Resources 关于JAX-RS应用,资源和子资源/Chapter 3. JAX-RS Application, Resources and Sub-Resources 关于JAX-RS应用,资源和子资源.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 3. JAX-RS Application, Resources and Sub-Resources 关于JAX-RS应用,资源和子资源/Chapter 3. JAX-RS Application, Resources and Sub-Resources 关于JAX-RS应用,资源和子资源.md -------------------------------------------------------------------------------- /Chapter 4. Application Deployment and Runtime Environments 应用部署和运行时环境/4.1. Introduction 介绍.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 4. Application Deployment and Runtime Environments 应用部署和运行时环境/4.1. Introduction 介绍.md -------------------------------------------------------------------------------- /Chapter 4. Application Deployment and Runtime Environments 应用部署和运行时环境/4.10. Other Environments 其他环境.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 4. Application Deployment and Runtime Environments 应用部署和运行时环境/4.10. Other Environments 其他环境.md -------------------------------------------------------------------------------- /Chapter 4. Application Deployment and Runtime Environments 应用部署和运行时环境/4.2. JAX-RS Application Model 应用模型.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 4. Application Deployment and Runtime Environments 应用部署和运行时环境/4.2. JAX-RS Application Model 应用模型.md -------------------------------------------------------------------------------- /Chapter 4. Application Deployment and Runtime Environments 应用部署和运行时环境/4.3. Auto-Discoverable Features 自动发现的特性.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 4. Application Deployment and Runtime Environments 应用部署和运行时环境/4.3. Auto-Discoverable Features 自动发现的特性.md -------------------------------------------------------------------------------- /Chapter 4. Application Deployment and Runtime Environments 应用部署和运行时环境/4.4. Configuring the Classpath Scanning 配置 Classpath 扫描.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 4. Application Deployment and Runtime Environments 应用部署和运行时环境/4.4. Configuring the Classpath Scanning 配置 Classpath 扫描.md -------------------------------------------------------------------------------- /Chapter 4. Application Deployment and Runtime Environments 应用部署和运行时环境/4.5. Java SE Deployment Environments Java 部署环境.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 4. Application Deployment and Runtime Environments 应用部署和运行时环境/4.5. Java SE Deployment Environments Java 部署环境.md -------------------------------------------------------------------------------- /Chapter 4. Application Deployment and Runtime Environments 应用部署和运行时环境/4.6. Creating programmatic JAX-RS endpoint 创建可编程的 JAX-RS 端点.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 4. Application Deployment and Runtime Environments 应用部署和运行时环境/4.6. Creating programmatic JAX-RS endpoint 创建可编程的 JAX-RS 端点.md -------------------------------------------------------------------------------- /Chapter 4. Application Deployment and Runtime Environments 应用部署和运行时环境/4.7. Servlet-based Deployment 基于 Servlet 的部署.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 4. Application Deployment and Runtime Environments 应用部署和运行时环境/4.7. Servlet-based Deployment 基于 Servlet 的部署.md -------------------------------------------------------------------------------- /Chapter 4. Application Deployment and Runtime Environments 应用部署和运行时环境/4.8. Java EE Platform 在 Java EE 平台.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 4. Application Deployment and Runtime Environments 应用部署和运行时环境/4.8. Java EE Platform 在 Java EE 平台.md -------------------------------------------------------------------------------- /Chapter 4. Application Deployment and Runtime Environments 应用部署和运行时环境/4.9. OSGi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 4. Application Deployment and Runtime Environments 应用部署和运行时环境/4.9. OSGi.md -------------------------------------------------------------------------------- /Chapter 4. Application Deployment and Runtime Environments 应用部署和运行时环境/Chapter 4. Application Deployment and Runtime Environments 应用部署和运行时环境.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 4. Application Deployment and Runtime Environments 应用部署和运行时环境/Chapter 4. Application Deployment and Runtime Environments 应用部署和运行时环境.md -------------------------------------------------------------------------------- /Chapter 5. Client API 客户端 API/5.1. Uniform Interface Constraint 统一接口约束.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 5. Client API 客户端 API/5.1. Uniform Interface Constraint 统一接口约束.md -------------------------------------------------------------------------------- /Chapter 5. Client API 客户端 API/5.2 Ease of use and reusing JAX-RS artifacts 易于使用和可重用的 JAX-RS 工件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 5. Client API 客户端 API/5.2 Ease of use and reusing JAX-RS artifacts 易于使用和可重用的 JAX-RS 工件.md -------------------------------------------------------------------------------- /Chapter 5. Client API 客户端 API/5.3. Overview of the Client API 客户端 API 总览.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 5. Client API 客户端 API/5.3. Overview of the Client API 客户端 API 总览.md -------------------------------------------------------------------------------- /Chapter 5. Client API 客户端 API/5.4. Java instances and types for representations 关于 Java 实例和表示的类型.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 5. Client API 客户端 API/5.4. Java instances and types for representations 关于 Java 实例和表示的类型.md -------------------------------------------------------------------------------- /Chapter 5. Client API 客户端 API/5.5. Client Transport Connectors 客户端传输连接器.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 5. Client API 客户端 API/5.5. Client Transport Connectors 客户端传输连接器.md -------------------------------------------------------------------------------- /Chapter 5. Client API 客户端 API/5.6. Using client request and response filters 使用客户端请求和响应过滤器.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 5. Client API 客户端 API/5.6. Using client request and response filters 使用客户端请求和响应过滤器.md -------------------------------------------------------------------------------- /Chapter 5. Client API 客户端 API/5.7. Closing connections 关闭连接器.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 5. Client API 客户端 API/5.7. Closing connections 关闭连接器.md -------------------------------------------------------------------------------- /Chapter 5. Client API 客户端 API/5.8. Injections into client providers 注入到客户端提供者.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 5. Client API 客户端 API/5.8. Injections into client providers 注入到客户端提供者.md -------------------------------------------------------------------------------- /Chapter 5. Client API 客户端 API/5.9. Securing a Client 保护 Client 安全.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 5. Client API 客户端 API/5.9. Securing a Client 保护 Client 安全.md -------------------------------------------------------------------------------- /Chapter 5. Client API 客户端 API/Chapter 5. Client API 客户端 API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 5. Client API 客户端 API/Chapter 5. Client API 客户端 API.md -------------------------------------------------------------------------------- /Chapter 6. Reactive Jersey Client API/6.1. Motivation for Reactive Client Extension.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 6. Reactive Jersey Client API/6.2. Usage and Extension Modules.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 6. Reactive Jersey Client API/6.3. Supported Reactive Libraries.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 6. Reactive Jersey Client API/6.4. Implementing Support for Custom Reactive Libraries.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 6. Reactive Jersey Client API/6.5. Examples.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 6. Reactive Jersey Client API/Chapter 6. Reactive Jersey Client API.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 7. Representations and Responses 表现与响应/7.1. Representations and Java Types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 7. Representations and Responses 表现与响应/7.1. Representations and Java Types.md -------------------------------------------------------------------------------- /Chapter 7. Representations and Responses 表现与响应/7.2. Building Responses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 7. Representations and Responses 表现与响应/7.2. Building Responses.md -------------------------------------------------------------------------------- /Chapter 7. Representations and Responses 表现与响应/7.3. WebApplicationException and Mapping Exceptions to Responses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 7. Representations and Responses 表现与响应/7.3. WebApplicationException and Mapping Exceptions to Responses.md -------------------------------------------------------------------------------- /Chapter 7. Representations and Responses 表现与响应/7.4. Conditional GETs and Returning 304 Not Modified Responses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 7. Representations and Responses 表现与响应/7.4. Conditional GETs and Returning 304 Not Modified Responses.md -------------------------------------------------------------------------------- /Chapter 7. Representations and Responses 表现与响应/Chapter 7. Representations and Responses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 7. Representations and Responses 表现与响应/Chapter 7. Representations and Responses.md -------------------------------------------------------------------------------- /Chapter 9. Support for Common Media Type Representations 支持常用媒体类型/9.1. JSON.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 9. Support for Common Media Type Representations 支持常用媒体类型/9.1. JSON.md -------------------------------------------------------------------------------- /Chapter 9. Support for Common Media Type Representations 支持常用媒体类型/9.2. XML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 9. Support for Common Media Type Representations 支持常用媒体类型/9.2. XML.md -------------------------------------------------------------------------------- /Chapter 9. Support for Common Media Type Representations 支持常用媒体类型/9.3. Multipart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 9. Support for Common Media Type Representations 支持常用媒体类型/9.3. Multipart.md -------------------------------------------------------------------------------- /Chapter 9. Support for Common Media Type Representations 支持常用媒体类型/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Chapter 9. Support for Common Media Type Representations 支持常用媒体类型/README.md -------------------------------------------------------------------------------- /Preface 前言.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/Preface 前言.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Jersey-2.x-User-Guide/HEAD/SUMMARY.md --------------------------------------------------------------------------------