call two different rest methods with same URI












0















I have two Rest URIs :



// URI n1 :  GET /users/{userName}  
public ResponseEntity<userDto> findUserByName(
@PathVariable( value = "userName", required = true)
String userName
);

// URI n2 : GET /users/{userID}
public ResponseEntity<userDto> findUserByID(
@PathVariable( value = "userID", required = true)
Long userID
);


When I call GET /users/SuperUser123 I want the first function to respond and when I call GET /users/1854 I want the second one respond. What really happens is that the first function is always called for both cases (as the param is always of type String).



So how can I achieve what I want while respecting REST API URI recommendations ?










share|improve this question



























    0















    I have two Rest URIs :



    // URI n1 :  GET /users/{userName}  
    public ResponseEntity<userDto> findUserByName(
    @PathVariable( value = "userName", required = true)
    String userName
    );

    // URI n2 : GET /users/{userID}
    public ResponseEntity<userDto> findUserByID(
    @PathVariable( value = "userID", required = true)
    Long userID
    );


    When I call GET /users/SuperUser123 I want the first function to respond and when I call GET /users/1854 I want the second one respond. What really happens is that the first function is always called for both cases (as the param is always of type String).



    So how can I achieve what I want while respecting REST API URI recommendations ?










    share|improve this question

























      0












      0








      0








      I have two Rest URIs :



      // URI n1 :  GET /users/{userName}  
      public ResponseEntity<userDto> findUserByName(
      @PathVariable( value = "userName", required = true)
      String userName
      );

      // URI n2 : GET /users/{userID}
      public ResponseEntity<userDto> findUserByID(
      @PathVariable( value = "userID", required = true)
      Long userID
      );


      When I call GET /users/SuperUser123 I want the first function to respond and when I call GET /users/1854 I want the second one respond. What really happens is that the first function is always called for both cases (as the param is always of type String).



      So how can I achieve what I want while respecting REST API URI recommendations ?










      share|improve this question














      I have two Rest URIs :



      // URI n1 :  GET /users/{userName}  
      public ResponseEntity<userDto> findUserByName(
      @PathVariable( value = "userName", required = true)
      String userName
      );

      // URI n2 : GET /users/{userID}
      public ResponseEntity<userDto> findUserByID(
      @PathVariable( value = "userID", required = true)
      Long userID
      );


      When I call GET /users/SuperUser123 I want the first function to respond and when I call GET /users/1854 I want the second one respond. What really happens is that the first function is always called for both cases (as the param is always of type String).



      So how can I achieve what I want while respecting REST API URI recommendations ?







      rest api spring-mvc






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 23 '18 at 14:15









      AminosAminos

      114




      114
























          1 Answer
          1






          active

          oldest

          votes


















          0














          It will give ambiguous mapping runtime exception as the url pattern is same for both the methods.



          If your url has some pattern like starting for superuser or something then you can use regex patterns to make it work.



          In below example first method method will get called if the path variable is a digit otherwise second method for alphabets.you can change regex pattern accordingly.



          @RequestMapping("{id:[0-9]+}")
          public String handleRequest(@PathVariable("id") String userId, Model model){
          model.addAttribute("msg", "profile id: "+userId);
          return "my-page";

          }

          @RequestMapping("{name:[a-zA-Z]+}")
          public String handleRequest2 (@PathVariable("name") String deptName, Model model) {
          model.addAttribute("msg", "dept name : " + deptName);
          return "my-page";
          }





          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53448309%2fcall-two-different-rest-methods-with-same-uri%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            It will give ambiguous mapping runtime exception as the url pattern is same for both the methods.



            If your url has some pattern like starting for superuser or something then you can use regex patterns to make it work.



            In below example first method method will get called if the path variable is a digit otherwise second method for alphabets.you can change regex pattern accordingly.



            @RequestMapping("{id:[0-9]+}")
            public String handleRequest(@PathVariable("id") String userId, Model model){
            model.addAttribute("msg", "profile id: "+userId);
            return "my-page";

            }

            @RequestMapping("{name:[a-zA-Z]+}")
            public String handleRequest2 (@PathVariable("name") String deptName, Model model) {
            model.addAttribute("msg", "dept name : " + deptName);
            return "my-page";
            }





            share|improve this answer




























              0














              It will give ambiguous mapping runtime exception as the url pattern is same for both the methods.



              If your url has some pattern like starting for superuser or something then you can use regex patterns to make it work.



              In below example first method method will get called if the path variable is a digit otherwise second method for alphabets.you can change regex pattern accordingly.



              @RequestMapping("{id:[0-9]+}")
              public String handleRequest(@PathVariable("id") String userId, Model model){
              model.addAttribute("msg", "profile id: "+userId);
              return "my-page";

              }

              @RequestMapping("{name:[a-zA-Z]+}")
              public String handleRequest2 (@PathVariable("name") String deptName, Model model) {
              model.addAttribute("msg", "dept name : " + deptName);
              return "my-page";
              }





              share|improve this answer


























                0












                0








                0







                It will give ambiguous mapping runtime exception as the url pattern is same for both the methods.



                If your url has some pattern like starting for superuser or something then you can use regex patterns to make it work.



                In below example first method method will get called if the path variable is a digit otherwise second method for alphabets.you can change regex pattern accordingly.



                @RequestMapping("{id:[0-9]+}")
                public String handleRequest(@PathVariable("id") String userId, Model model){
                model.addAttribute("msg", "profile id: "+userId);
                return "my-page";

                }

                @RequestMapping("{name:[a-zA-Z]+}")
                public String handleRequest2 (@PathVariable("name") String deptName, Model model) {
                model.addAttribute("msg", "dept name : " + deptName);
                return "my-page";
                }





                share|improve this answer













                It will give ambiguous mapping runtime exception as the url pattern is same for both the methods.



                If your url has some pattern like starting for superuser or something then you can use regex patterns to make it work.



                In below example first method method will get called if the path variable is a digit otherwise second method for alphabets.you can change regex pattern accordingly.



                @RequestMapping("{id:[0-9]+}")
                public String handleRequest(@PathVariable("id") String userId, Model model){
                model.addAttribute("msg", "profile id: "+userId);
                return "my-page";

                }

                @RequestMapping("{name:[a-zA-Z]+}")
                public String handleRequest2 (@PathVariable("name") String deptName, Model model) {
                model.addAttribute("msg", "dept name : " + deptName);
                return "my-page";
                }






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 25 '18 at 3:56









                AlienAlien

                5,00831026




                5,00831026






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53448309%2fcall-two-different-rest-methods-with-same-uri%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    404 Error Contact Form 7 ajax form submitting

                    How to know if a Active Directory user can login interactively

                    TypeError: fit_transform() missing 1 required positional argument: 'X'