Package com.example.helloworld.resources

Source Code of com.example.helloworld.resources.JsonResource

package com.example.helloworld.resources;

import com.example.helloworld.resources.api.HelloMessage;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;

@Path("/json")
@Produces(MediaType.APPLICATION_JSON)
public class JsonResource {

    @GET
    public HelloMessage sayHello() {
        return new HelloMessage("Hello, World!");
    }
}
TOP

Related Classes of com.example.helloworld.resources.JsonResource

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.