org.apache.servicecomb.demo.jaxrs.server.CodeFirstJaxrs.java Source code

Java tutorial

Introduction

Here is the source code for org.apache.servicecomb.demo.jaxrs.server.CodeFirstJaxrs.java

Source

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.apache.servicecomb.demo.jaxrs.server;

import java.io.IOException;
import java.io.InputStream;
import java.util.Date;
import java.util.List;
import java.util.Map;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.Part;
import javax.ws.rs.Consumes;
import javax.ws.rs.CookieParam;
import javax.ws.rs.DELETE;
import javax.ws.rs.FormParam;
import javax.ws.rs.GET;
import javax.ws.rs.HeaderParam;
import javax.ws.rs.POST;
import javax.ws.rs.PUT;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.QueryParam;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response.Status;

import org.apache.commons.io.IOUtils;
import org.apache.servicecomb.common.rest.codec.RestObjectMapperFactory;
import org.apache.servicecomb.core.Const;
import org.apache.servicecomb.demo.compute.Person;
import org.apache.servicecomb.demo.ignore.InputModelForTestIgnore;
import org.apache.servicecomb.demo.ignore.OutputModelForTestIgnore;
import org.apache.servicecomb.demo.jaxbbean.JAXBPerson;
import org.apache.servicecomb.demo.server.User;
import org.apache.servicecomb.provider.rest.common.RestSchema;
import org.apache.servicecomb.swagger.extend.annotations.RawJsonRequestBody;
import org.apache.servicecomb.swagger.extend.annotations.ResponseHeaders;
import org.apache.servicecomb.swagger.invocation.Response;
import org.apache.servicecomb.swagger.invocation.context.ContextUtils;
import org.apache.servicecomb.swagger.invocation.context.InvocationContext;
import org.apache.servicecomb.swagger.invocation.response.Headers;

import io.swagger.annotations.ApiImplicitParam;
import io.swagger.annotations.ApiImplicitParams;
import io.swagger.annotations.ApiResponse;
import io.swagger.annotations.ResponseHeader;
import io.vertx.core.json.JsonObject;

@RestSchema(schemaId = "codeFirst")
@Path("/codeFirstJaxrs")
@Produces(MediaType.APPLICATION_JSON)
public class CodeFirstJaxrs {
    //    public Response getUserResponse() {
    //
    //    }
    @ApiResponse(code = 200, response = User.class, message = "")
    @ResponseHeaders({ @ResponseHeader(name = "h1", response = String.class),
            @ResponseHeader(name = "h2", response = String.class) })
    @Path("/cseResponse")
    @GET
    public Response cseResponse(InvocationContext c1) {
        Response response = Response.createSuccess(Status.ACCEPTED, new User());
        Headers headers = response.getHeaders();
        headers.addHeader("h1", "h1v " + c1.getContext().get(Const.SRC_MICROSERVICE).toString());

        InvocationContext c2 = ContextUtils.getInvocationContext();
        headers.addHeader("h2", "h2v " + c2.getContext().get(Const.SRC_MICROSERVICE).toString());

        return response;
    }

    @Path("/testUserMap")
    @POST
    public Map<String, User> testUserMap(Map<String, User> userMap) {
        return userMap;
    }

    @Path("/textPlain")
    @POST
    @Consumes(MediaType.TEXT_PLAIN)
    public String textPlain(String body) {
        return body;
    }

    @Path("/appXml")
    @POST
    @Consumes(MediaType.APPLICATION_JSON)
    @Produces(MediaType.APPLICATION_XML)
    public JAXBPerson appXml(JAXBPerson body) {
        return body;
    }

    @Path("/bytes")
    @POST
    public byte[] bytes(byte[] input) {
        input[0] = (byte) (input[0] + 1);
        return input;
    }

    @Path("/addDate")
    @POST
    public Date addDate(@FormParam("date") Date date, @QueryParam("seconds") long seconds) {
        return new Date(date.getTime() + seconds * 1000);
    }

    @GET
    public int defaultPath() {
        return 100;
    }

    @Path("/add")
    @POST
    public int add(@FormParam("a") int a, @FormParam("b") int b) {
        return a + b;
    }

    @Path("/reduce")
    @GET
    @ApiImplicitParams({
            @ApiImplicitParam(name = "a", dataType = "integer", format = "int32", paramType = "query") })
    public int reduce(HttpServletRequest request, @CookieParam("b") int b) {
        int a = Integer.parseInt(request.getParameter("a"));
        return a - b;
    }

    @Path("/sayhello")
    @POST
    public Person sayHello(Person user) {
        user.setName("hello " + user.getName());
        return user;
    }

    @SuppressWarnings("unchecked")
    @Path("/testrawjson")
    @POST
    public String testRawJsonString(String jsonInput) {
        Map<String, String> person;
        try {
            person = RestObjectMapperFactory.getRestObjectMapper().readValue(jsonInput.getBytes(), Map.class);
        } catch (Exception e) {
            e.printStackTrace();
            return null;
        }
        return "hello " + person.get("name");
    }

    @Path("/saysomething")
    @POST
    public String saySomething(@HeaderParam("prefix") String prefix, Person user) {
        return prefix + " " + user.getName();
    }

    @Path("/sayhi/{name}")
    @PUT
    public String sayHi(@PathParam("name") String name) {
        ContextUtils.getInvocationContext().setStatus(202);
        return name + " sayhi";
    }

    @Path("/sayhi/{name}/v2")
    @PUT
    public String sayHi2(@PathParam("name") String name) {
        return name + " sayhi 2";
    }

    @Path("/istrue")
    @GET
    public boolean isTrue() {
        return true;
    }

    @Path("/addstring")
    @DELETE
    @Produces(MediaType.TEXT_PLAIN)
    public String addString(@QueryParam("s") List<String> s) {
        String result = "";
        for (String x : s) {
            result += x;
        }
        return result;
    }

    @Path("/ignore")
    @POST
    public OutputModelForTestIgnore testModelWithIgnoreField(InputModelForTestIgnore input) {
        return new OutputModelForTestIgnore("output_id", input.getInputId(), input.getContent(),
                input.getInputObject(), input.getInputJsonObject(), input.getInputIgnoreInterface(),
                new Person("outputSomeone"), new JsonObject("{\"OutputJsonKey\" : \"OutputJsonValue\"}"), () -> {
                });
    }

    @SuppressWarnings("unchecked")
    @Path("/rawJsonAnnotation")
    @POST
    public String testRawJsonAnnotation(@RawJsonRequestBody String jsonInput) {
        Map<String, String> person;
        try {
            person = RestObjectMapperFactory.getRestObjectMapper().readValue(jsonInput.getBytes(), Map.class);
        } catch (Exception e) {
            e.printStackTrace();
            return null;
        }
        return "hello " + person.get("name");
    }

    @Path("/traceId")
    @GET
    public String getTraceId() {
        return ContextUtils.getInvocationContext().getContext(Const.TRACE_ID_NAME);
    }

    @Path("/upload1")
    @POST
    @Produces(MediaType.TEXT_PLAIN)
    public String fileUpload1(@FormParam("file1") Part file1, @FormParam("file2") Part file2) throws IOException {
        if (file1 == null || file2 == null) {
            return "null file";
        }
        try (InputStream is1 = file1.getInputStream(); InputStream is2 = file2.getInputStream()) {
            String content1 = IOUtils.toString(is1);
            String content2 = IOUtils.toString(is2);
            return String.format("%s:%s:%s\n" + "%s:%s:%s", file1.getSubmittedFileName(), file1.getContentType(),
                    content1, file2.getSubmittedFileName(), file2.getContentType(), content2);
        }
    }

    @Path("/upload2")
    @POST
    @Produces(MediaType.TEXT_PLAIN)
    public String fileUpload2(@FormParam("file1") Part file1, @FormParam("message") String message)
            throws IOException {
        try (InputStream is1 = file1.getInputStream()) {
            String content1 = IOUtils.toString(is1);
            return String.format("%s:%s:%s:%s", file1.getSubmittedFileName(), file1.getContentType(), content1,
                    message);
        }
    }
}