简体   繁体   中英

get pathvariable with sending and recieving json data Rest spring mvc

I am trying to learn Rest web services using spring mvc. I have followed this link.

I am able to receive and send Json data but I am not able to pass pathvariable with the call. I am unable to understand the issue.

Here is my controller:

package com.akash.controller;

import java.util.ArrayList;
import java.util.List;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
@RequestMapping(value = "/myRest")
public class MyRestController {

    @RequestMapping(value = "/myAction1/{param1}/", method = RequestMethod.GET, headers = "Accept=application/json")
    public @ResponseBody List<Abc> myAction1(@PathVariable String param1) {

        Abc ob = new Abc();
        ob.setAge(20);
        ob.setName("obama-"+param1);
        List<Abc> listOfAbc = new ArrayList<Abc>();
        listOfAbc.add(ob);
        return listOfAbc;
    }

    /*
     * curl -X GET -H "Accept:application/json"
     * http://localhost:8080/myRest/myAction1/123
     */

    @RequestMapping(value = "/myAction2", method = RequestMethod.POST, headers = {
            "Accept=application/json", "Content-type=application/json" })
    public @ResponseBody List<Abc> myAction2(@RequestBody AbcWrapper wrapper) {

        Abc ob = new Abc();
        ob.setAge(wrapper.getListOfAbc().size());
        ob.setName("obama");
        List<Abc> listOfAbc = new ArrayList<Abc>();
        listOfAbc.add(ob);
        return listOfAbc;
    }

    /*
     * curl -X POST -H "Accept: application/json" -H
     * "Content-Type: application/json" http://localhost:8080/myRest/myAction2
     * -d "{\"listOfAbc\":[{\"age\":20,\"name\":\"akash\"}]}"
     */
}

class Abc {
    private int age;
    private String name;

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
}

class AbcWrapper {
    List<Abc> listOfAbc;

    public List<Abc> getListOfAbc() {
        return listOfAbc;
    }

    public void setListOfAbc(List<Abc> listOfAbc) {
        this.listOfAbc = listOfAbc;
    }
}

I am able to execute myAction2 but myAction1 cannot be executed. If I remove pathvariable from myAction1 everything works fine.

Please help.

I found the solution to my problem. There were many mistakes.

(1)The first problem was spring security which was authenticating the url and redirecting it to login page.

I changed this

<http pattern="/myRest/*" security="none" />

to

<http pattern="/myRest/**" security="none" />

(2)Changed myAction1 method to

@RequestMapping(value = "/myAction1/{param1}", method = RequestMethod.GET, headers = "Accept=application/json")
    public @ResponseBody List<Abc> myAction1(@PathVariable("param1") String param1, Model model) {

removed an extra slash after {param1}

All that information I got from curl -i parameter

Before solving problem

HTTP/1.1 302 Found
Date: Sat, 07 Feb 2015 05:35:55 GMT
Set-Cookie: JSESSIONID=1kk70yuy7kc501glpcd0m9t4py;Path=/
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Location: http://localhost:8080/login;jsessionid=1kk70yuy7kc501glpcd0m9t4py
Content-Length: 0
Server: Jetty(9.2.3.v20140905)

After Solving problem

HTTP/1.1 200 OK
Date: Sat, 07 Feb 2015 05:37:55 GMT
Content-Type: application/json
Transfer-Encoding: chunked
Server: Jetty(9.2.3.v20140905)

[{"age":20,"name":"obama-123"}]

cheers

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