package app.ebay.com.aol.micro.server; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.Produces; import org.springframework.stereotype.Component; import com.aol.micro.server.auto.discovery.RestResource; @Path("/single") @Component public class CorsResource implements RestResource{ @GET @Produces("text/plain") @Path("/ping") public String ping() { return "ok"; } }