jersey学习笔记2-web服务

创建服务

mvn archetype:generate -DarchetypeArtifactId=jersey-quickstart-webapp -DarchetypeGroupId=org.glassfish.jersey.archetypes -DinteractiveMode=false -DgroupId=com.example -DartifactId=simple-service-webapp -Dpackage=com.example -DarchetypeVersion=2.9

执行上面的mvn语句,从中央仓库取一个已经编译好的web项目。

项目下载成功后,用tree /f命令查看项目的结构,这个版本没有服务入口程序,但增加了web项目经典的两个文件index.jsp和web.xml。

jersey学习笔记2-web服务_第1张图片

将项目导入到myeclipse中,并按web项目进行配置。

资源类MyResource分析

@Path("myresource")
public class MyResource {
    @GET
    @Produces(MediaType.TEXT_PLAIN)
    public String getIt() {
        return "Got it!";
    }
}

@Path("myresource")是资料路径,@GET是请求方法,@Produces(MediaType.TEXT_PLAIN)是请求参数类型


服务首页index.html分析





Insert title here


    

Jersey RESTFul Web Application!


    


        Jersey resource
    


    


        Visit Project Jersey WebSite for
        more information on Jersey!
    



这是一个静态的html文件,当点击  Jersey resource时,浏览器会发起请求,直接访问后台的资源类的get方法。

web服务配置web.xml分析


    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
    
        index.html
    


    
        Jersey Web Application
        org.glassfish.jersey.servlet.ServletContainer
        
            jersey.config.server.provider.packages
            com.example
        

        1
    

    
        Jersey Web Application
        /webapi/*
    

web.xml可定义为三部分:

1、servlet版本的定义,本例中使用2.5,如果使用3.0版本。可以不需要web.xml配置。

2、定义servlet,定义名称、类、属性。

3、定义servlet-mapping,本例中servlet的作用域为/webapi/

运行服务

在jetty上运行服务

具体如何配置不再这里讲述。

启动服务后,在浏览器中访问:http://localhost:8080/simple-service-webapp/,可以正常访问index.html

jersey学习笔记2-web服务_第2张图片

点击html中的"Jersey resource"链接,访问资源api:webapi/myresource,可以访问并成功返回,则表示服务发表成功。

jersey学习笔记2-web服务_第3张图片


在tomcat上运行服务



1、安装tomcat服务,不讲述过程了。

2、将simple-service-webapp工程打成war包。mvn clean package -D skipTests=true,简单的mvn clean install,skipTests会忽略测试代码。

3、发布simple-service-webapp工程。

访问http://localhost:8080/simple-service-webapp/和http://localhost:8080/simple-service-webapp/webapi/myresource与在jetty上访问一致。


其它形式发布服务

public class AirApplication extends Application {
    @Override
    public Set> getClasses() {
        final Set> classes = new HashSet>();
        classes.add(MyResource.class);
        return classes;
    }
}


public class AirApplication2 extends ResourceConfig {

    public AirApplication2() {
        packages("com.example");
    }
}

最后需要在web.xml中配置在启动时加载这些服务:

   
        Jersey Web Application
        org.glassfish.jersey.servlet.ServletContainer
        
            javax.ws.rs.Application
            com.example.AirApplication2
        

        1
    

    
        Jersey Web Application
        /webapi/*
    



你可能感兴趣的:(JAVA,jersey,JAVA,jersey)