ws

Simple JAX-RS service

Service class:

package com.training.rs;

import javax.ws.rs.ApplicationPath;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.core.Application;

@ApplicationPath("/")
@Path("/")
public class SimpleRsService extends Application {

    @GET
    public String serverName() {
        return "SimpleRsService";
    }

    @GET
    @Path("{name}")
    public String hello(@PathParam("name") String name) {
        return "Hello: " + name;
    }
}