Skip to content

rapito/Jersey-Gest

Repository files navigation

Jersey-Gest

Jersey Java Annotation Extension for creating REST GET/POST Methods

A simple utility which allows you to use a single java method to create a GET and a POST Operation Method for Jersey.

Example Annotation Usage

@RestClass(path = "/wsdl")
public class TestService
{

    @RestMethod(path = "/helloGest")
    public static String helloGest()
    {
        return "Hello Gest!";
    }

}

How it Works

The class annotated with @RestClass is processed on compile time by apt-maven-plugin which then loads our custom AnnotationProcessor to generate a new Java Class. This new class contains a GET and POST method that calls back to our method annotated with @RestMethod.

Why?

I was developing an application that needed to have a lot of services which had to be accessed with both GET and POST Operations, but unfortunately Jersey doesn't support it.

A workaround is creating not one but 3 methods for every Service Operation I wanted, using one as a Business container and the other two just for declaring jersey's operation methods like this:

    @GET
    @Path("/helloGest")
    @Produces(MediaType.APPLICATION_XML)
    public String helloGestGet()
    {
        return TestService.helloGest();
    }

    @POST
    @Path("/helloGest")
    @Consumes(MediaType.WILDCARD)
    @Produces(MediaType.APPLICATION_XML)
    public String helloGestPost()
    {
        return TestService.helloGest();
    }
    
    

This was very troublesome so I decided to create my own annotation that would generate this for me.

Dependencies

Core

About

Jersey Java Annotation Extension for creating REST GET/POST Methods

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages