大家好,又见面了,我是你们的朋友全栈君。
简介
Jersey是JAX-RS(JSR311)开源参考实现用于构建RESTful Web service,它包含三个部分:
核心服务器(Core Server):通过提供JSR 311中标准化的注释和API标准化,可以用直观的方式开发RESTful Web服务。
核心客户端(Core Client):Jersey客户端API能够帮助开发者与RESTful服务轻松通信;
集成(Integration):Jersey还提供可以轻松继承Spring、Guice、Apache Abdera的库。
在项目中构架:
设置Jersey环境
Maven
org.glassfish.jersey.containers
jersey-container-grizzly2-servlet
${jersey-version}
org.glassfish.jersey.containers
jersey-container-servlet-core
${jersey-version}
org.glassfish.jersey.media
jersey-media-json-jackson
${jersey-version}
org.glassfish.jersey.core
jersey-client
${jersey-version}
基本步骤演示:
1.编写一个名为HelloResource的资源,它接受Http Get请求并响应
package com.lgy.resource;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import com.lgy.bean.Result;
@Path(“hello”)
public class HelloResource {
@Path(“say”)
@GET
@Produces(MediaType.TEXT_PLAIN)
public String say() {
System.out.println(“hello world”);
return “hello world”;
}
@Path(“test”)
@GET
@Produces(MediaType.APPLICATION_JSON)
public Result test() {
Result result = new Result();
result.success(“aaaaaa”);
return result;
}
}
2.编写JAX-RS application,并注册HelloResource
package com.lgy.config;
import org.glassfish.jersey.filter.LoggingFilter;
import org.glassfish.jersey.server.ResourceConfig;
import com.fasterxml.jackson.jaxrs.json.JacksonJsonProvider;
import com.lgy.resource.HelloResource;
public class MyApplication extends ResourceConfig {
public MyApplication() {
//加载Resource
register(HelloResource.class);
//注册数据转换器
register(JacksonJsonProvider.class);
// Logging.
register(LoggingFilter.class);
}
}
3.在web.xml核心配置文件配置jersey servlet,随着容器的启动,项目进行启动
/p>
“-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN”
“http://java.sun.com/dtd/web-app_2_3.dtd” >
Archetype Created Web Application
SpringApplication
org.glassfish.jersey.servlet.ServletContainer
javax.ws.rs.Application
com.lgy.config.MyApplication
1
SpringApplication
/*
用tomcat或者jetty启动:localhots:8080/hello/say
项目源码(oschina git):https://git.oschina.net/fengchao111/restful-jersey.git
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/157881.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...