简体   繁体   中英

REST Web service JSON format

I am trying to create a REST web service that returns the details of a user.

Here is my code:

//Actual web service methods implemented from here
    @GET
    @Path("login/{email}/{password}")
    @Produces("application/json")
    public Tourist loginUser(@PathParam("email") String email, @PathParam("password") String password) {
        List<Tourist> tourists = super.findAll();
        for (Tourist tourist : tourists) {
            if (tourist.getEmail().equals(email) && tourist.getPassword().equals(password)) {
                return tourist;
            }
        }
        //if we got here the login failed
        return null;
    }

This produces the following JSON:

{
    "email": "adrian.olar@email.ro",
    "fname": "Adrian",
    "lname": "Olar",
    "touristId": 1
}

What i need is:

    {"tourist":{
            "email": "adrian.olar@email.ro",
            "fname": "Adrian",
            "lname": "Olar",
            "touristId": 1
        }
    }

What would i need to add to my code to produce this?

If you really want to wrap a Tourist into another object, you can do this.

Tourist.java :

package entities;

import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement
public class Tourist {

    int touristId;
    String email;
    String fname;
    String lname;

TouristWrapper.java :

package entities;

import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement
public class TouristWrapper {

    Tourist tourist;

SOResource.java :

package rest;

import entities.Tourist;
import entities.TouristWrapper;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;

@Path("/so")
public class SOResource {

    @GET
    @Path("/tourists/{id}")
    @Produces("application/json")
    public TouristWrapper loginUser(@PathParam("id") int id) {
        Tourist tourist = new Tourist(id, "foo@example.com", "John", "Doe");
        TouristWrapper touristWrapper = new TouristWrapper(tourist);
        return touristWrapper;
    }
}

I have simplified your usecase but you get the point: No Tourist is returned but a TouristWrapper . The JSON returned is this:

{
    "tourist": {
        "email": "foo@example.com",
        "fname": "John",
        "lname": "Doe",
        "touristId": 1
    }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM