⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pathparamasprimitivetest.java

📁 resetful样式的ws样例,一种面向资源的webservices服务
💻 JAVA
字号:
/* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. *  * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved. *  * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution License("CDDL") (collectively, 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/CDDL+GPL.html * or jersey/legal/LICENSE.txt.  See the License for the specific * language governing permissions and limitations under the License. *  * When distributing the software, include this License Header Notice in each * file and include the License file at jersey/legal/LICENSE.txt. * Sun designates this particular file as subject to the "Classpath" exception * as provided by Sun in the GPL Version 2 section of the License file that * accompanied this code.  If applicable, add the following below the License * Header, with the fields enclosed by brackets [] replaced by your own * identifying information: "Portions Copyrighted [year] * [name of copyright owner]" *  * Contributor(s): *  * If you wish your version of this file to be governed by only the CDDL or * only the GPL Version 2, indicate your decision by adding "[Contributor] * elects to include this software in this distribution under the [CDDL or GPL * Version 2] license."  If you don't indicate a single choice of license, a * recipient has the option to distribute your version of this file under * either the CDDL, the GPL Version 2 or to extend the choice of license to * its licensees as provided above.  However, if you add GPL Version 2 code * and therefore, elected the GPL Version 2 license, then the option applies * only if the new code is made subject to such option by the copyright * holder. */package com.sun.jersey.impl.methodparams;import com.sun.jersey.impl.AbstractResourceTester;import javax.ws.rs.PathParam;import javax.ws.rs.Path;import com.sun.jersey.impl.AbstractResourceTester;import com.sun.jersey.api.client.ClientResponse;import javax.ws.rs.GET;/** * * @author Paul.Sandoz@Sun.Com */public class PathParamAsPrimitiveTest extends AbstractResourceTester {    public PathParamAsPrimitiveTest(String testName) {        super(testName);        initiateWebApplication(                ResourceUriBoolean.class,                ResourceUriByte.class,                ResourceUriShort.class,                ResourceUriInt.class,                ResourceUriLong.class,                ResourceUriFloat.class,                ResourceUriDouble.class,                ResourceUriBooleanWrapper.class,                ResourceUriByteWrapper.class,                ResourceUriShortWrapper.class,                ResourceUriIntWrapper.class,                ResourceUriLongWrapper.class,                ResourceUriFloatWrapper.class,                ResourceUriDoubleWrapper.class        );    }    @Path("/boolean/{arg}")    public static class ResourceUriBoolean {        @GET        public String doGet(@PathParam("arg") boolean v) {            assertEquals(true, v);            return "content";        }            }        @Path("/byte/{arg}")    public static class ResourceUriByte {        @GET        public String doGet(@PathParam("arg") byte v) {            assertEquals(127, v);            return "content";        }            }        @Path("/short/{arg}")    public static class ResourceUriShort {        @GET        public String doGet(@PathParam("arg") short v) {            assertEquals(32767, v);            return "content";        }            }        @Path("/int/{arg}")    public static class ResourceUriInt {        @GET        public String doGet(@PathParam("arg") int v) {            assertEquals(2147483647, v);            return "content";        }            }        @Path("/long/{arg}")    public static class ResourceUriLong {        @GET        public String doGet(@PathParam("arg") long v) {            assertEquals(9223372036854775807L, v);            return "content";        }            }        @Path("/float/{arg}")    public static class ResourceUriFloat {        @GET        public String doGet(@PathParam("arg") float v) {            assertEquals(3.14159265f, v);            return "content";        }            }        @Path("/double/{arg}")    public static class ResourceUriDouble {        @GET        public String doGet(@PathParam("arg") double v) {            assertEquals(3.14159265358979d, v);            return "content";        }            }            @Path("/boolean/wrapper/{arg}")    public static class ResourceUriBooleanWrapper {        @GET        public String doGet(@PathParam("arg") Boolean v) {            assertEquals(true, v.booleanValue());            return "content";        }            }        @Path("/byte/wrapper/{arg}")    public static class ResourceUriByteWrapper {        @GET        public String doGet(@PathParam("arg") Byte v) {            assertEquals(127, v.byteValue());            return "content";        }            }        @Path("/short/wrapper/{arg}")    public static class ResourceUriShortWrapper {        @GET        public String doGet(@PathParam("arg") Short v) {            assertEquals(32767, v.shortValue());            return "content";        }            }        @Path("/int/wrapper/{arg}")    public static class ResourceUriIntWrapper {        @GET        public String doGet(@PathParam("arg") Integer v) {            assertEquals(2147483647, v.intValue());            return "content";        }            }        @Path("/long/wrapper/{arg}")    public static class ResourceUriLongWrapper {        @GET        public String doGet(@PathParam("arg") Long v) {            assertEquals(9223372036854775807L, v.longValue());            return "content";        }            }        @Path("/float/wrapper/{arg}")    public static class ResourceUriFloatWrapper {        @GET        public String doGet(@PathParam("arg") Float v) {            assertEquals(3.14159265f, v.floatValue());            return "content";        }            }        @Path("/double/wrapper/{arg}")    public static class ResourceUriDoubleWrapper {        @GET        public String doGet(@PathParam("arg") Double v) {            assertEquals(3.14159265358979d, v.doubleValue());            return "content";        }            }            void _test(String type, String value) {        resource("/"+ type + "/" + value).                get(String.class);        resource("/"+ type + "/wrapper/" + value).                get(String.class);    }        public void testGetBoolean() {        _test("boolean", "true");    }            public void testGetByte() {        _test("byte", "127");    }            public void testGetShort() {        _test("short", "32767");    }            public void testGetInt() {        _test("int", "2147483647");    }            public void testGetLong() {        _test("long", "9223372036854775807");    }            public void testGetFloat() {        _test("float", "3.14159265");    }            public void testGetDouble() {        _test("double", "3.14159265358979");    }        public void testBadPrimitiveValue() {        ClientResponse response = resource("/int/abcdef", false).                get(ClientResponse.class);                assertEquals(404, response.getStatus());    }        public void testBadPrimitiveWrapperValue() {        ClientResponse response = resource("/int/wrapper/abcdef", false).                get(ClientResponse.class);                assertEquals(404, response.getStatus());    }    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -