Created
September 16, 2010 19:26
-
-
Save KirinDave/582999 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. | |
| * | |
| * Copyright 2007 Sun Microsystems, Inc. All rights reserved. | |
| * | |
| * The contents of this file are subject to the terms of the Common Development | |
| * and Distribution License("CDDL") (the "License"). You may not use this file | |
| * except in compliance with the License. | |
| * | |
| * You can obtain a copy of the License at: | |
| * https://jersey.dev.java.net/license.txt | |
| * See the License for the specific language governing permissions and | |
| * limitations under the License. | |
| * | |
| * When distributing the Covered Code, include this CDDL Header Notice in each | |
| * file and include the License file at: | |
| * https://jersey.dev.java.net/license.txt | |
| * If applicable, add the following below this CDDL Header, with the fields | |
| * enclosed by brackets [] replaced by your own identifying information: | |
| * "Portions Copyrighted [year] [name of copyright owner]" | |
| */ | |
| package com.sun.jersey.samples.helloworld.resources; | |
| import javax.ws.rs.GET; | |
| import javax.ws.rs.Path; | |
| import javax.ws.rs.Produces; | |
| // The Java class will be hosted at the URI path "/helloworld" | |
| @Path("/helloworld") | |
| public class HelloWorldResource { | |
| // The Java method will process HTTP GET requests | |
| @GET | |
| // The Java method will produce content identified by the MIME Media | |
| // type "text/plain" | |
| @Produces("text/plain") | |
| public String getClichedMessage() { | |
| // Return some cliched textual content | |
| return "Hello World"; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. | |
| * | |
| * Copyright 2007 Sun Microsystems, Inc. All rights reserved. | |
| * | |
| * The contents of this file are subject to the terms of the Common Development | |
| * and Distribution License("CDDL") (the "License"). You may not use this file | |
| * except in compliance with the License. | |
| * | |
| * You can obtain a copy of the License at: | |
| * https://jersey.dev.java.net/license.txt | |
| * See the License for the specific language governing permissions and | |
| * limitations under the License. | |
| * | |
| * When distributing the Covered Code, include this CDDL Header Notice in each | |
| * file and include the License file at: | |
| * https://jersey.dev.java.net/license.txt | |
| * If applicable, add the following below this CDDL Header, with the fields | |
| * enclosed by brackets [] replaced by your own identifying information: | |
| * "Portions Copyrighted [year] [name of copyright owner]" | |
| */ | |
| package com.sun.jersey.samples.helloworld; | |
| import com.sun.grizzly.http.SelectorThread; | |
| import com.sun.jersey.api.container.grizzly.GrizzlyWebContainerFactory; | |
| import java.io.IOException; | |
| import java.net.URI; | |
| import java.util.HashMap; | |
| import java.util.Map; | |
| import javax.ws.rs.core.UriBuilder; | |
| public class Main { | |
| private static int getPort(int defaultPort) { | |
| String port = System.getenv("JERSEY_HTTP_PORT"); | |
| if (null != port) { | |
| try { | |
| return Integer.parseInt(port); | |
| } catch (NumberFormatException e) { | |
| } | |
| } | |
| return defaultPort; | |
| } | |
| private static URI getBaseURI() { | |
| return UriBuilder.fromUri("http://localhost/").port(getPort(9998)).build(); | |
| } | |
| public static final URI BASE_URI = getBaseURI(); | |
| protected static SelectorThread startServer() throws IOException { | |
| final Map<String, String> initParams = new HashMap<String, String>(); | |
| initParams.put("com.sun.jersey.config.property.packages", | |
| "com.sun.jersey.samples.helloworld.resources"); | |
| System.out.println("Starting grizzly..."); | |
| SelectorThread threadSelector = GrizzlyWebContainerFactory.create(BASE_URI, initParams); | |
| return threadSelector; | |
| } | |
| public static void main(String[] args) throws IOException { | |
| SelectorThread threadSelector = startServer(); | |
| System.out.println(String.format("Jersey app started with WADL available at " | |
| + "%sapplication.wadl\nTry out %shelloworld\nHit enter to stop it...", | |
| BASE_URI, BASE_URI)); | |
| System.in.read(); | |
| threadSelector.stopEndpoint(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment