Как передать несколько идентификаторов в API Get метод Endpoint с помощью Spring Boot - PullRequest
0 голосов
/ 01 июня 2018

Я пытаюсь передать несколько идентификаторов в конечной точке GET.Например: если моя база данных содержит сведения о 10 сотрудниках с идентификатором в качестве первичного ключа, и предположим, что я хочу передать более одного идентификатора в конечной точке в определенной точке.Это возможно.Предположим:

    http://localhost:8080/api/v/listempoloyee/{1,2,3,4}

{1,2,3,4} - это список идентификаторов сотрудников, которые мы хотим получить из базы данных.

Возможно ли это с помощью Spring Boot и JDBC.

Ответы [ 2 ]

0 голосов
/ 01 июня 2018
                    you can send a post request to your controller.please follow these steps-:

                    1. **I need to  create a html file because of ajax calling.**
                    <!DOCTYPE html>
                    <html>
                        <head>
                            <title>Ajax Test</title>
                            <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
                            <script src="/js/ajaxCall.js"></script>
                        </head>

                        <body>
                            <button type="button" class="btn btn-sm btn-update btn-primary" id="send">
                            <span class="glyphicon glyphicon-ok"></span>Send Parameter
                            </button>
                        </body>
                    </html>

                2. **create a js file and create a function for ajax calling.**
                $(document).ready(function() {
                    $("#send").on("click",function(){
                        var paramIds = ["1", "2", "3", "4","5"];
                        var parameterData = JSON.stringify({
                            'paramList' :paramIds
                        });
                        $.ajax({
                            contentType: 'application/json',
                            method:'post',
                            data: parameterData,
                            url: "http://localhost:8080/get",
                            dataType: 'json',
                        }).done(function(data, textStatus, xhr, options) {

                        }).fail(function(xhr, textStatus, errorThrown) {

                        }).always(function(xhr, textStatus) {
                        });
                    })  

                });
            please focus on **JSON.stringify**.JSON.stringify convert javascript object to a string following the JSON notation.
        3. **create a form to accept paramter as a post request.**
        package com.example.demo;

        import java.util.List;

        import java.util.ArrayList;

        import lombok.Data;

        @Data
        public class ParameterForm {
        List<String> paramList=new ArrayList<>();
        }

            4. **create a controller class for accepting the post request.**
            package com.example.demo;

            import java.util.List;

            import org.springframework.stereotype.Controller;
            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
            public class TestController {
            @RequestMapping(value="/home")
            public String checkParam()
            {
            return "test";  
            }
            @RequestMapping(value="/get",method = RequestMethod.POST)
            @ResponseBody
            public String getId(@RequestBody ParameterForm parameterForm)
            {
                List<String> paramList=parameterForm.getParamList();
                for(String param:paramList)
                {
                    System.out.println(param);
                }
                return "success";
            }
            }
    please focus on getId controller.
    you will find **@RequestBody ParameterForm parameterForm**.This form will accept the parameter which i send in ajax call. 

******************output**********************
1
2
3
4
5
0 голосов
/ 01 июня 2018

Это должно сделать это.

  @GetMapping("/{employeeIds}")
  public void trigger(@PathVariable String employeeIds) {
        List<String> ids = Arrays.asList(employeeIds.split(","));
        ..........
  }

теперь у вас есть список идентификаторов в идентификаторах .

...