Setting value to a variable in RESTful Web Service URI












0















I am wondering if there is a way to put a variable in the path of a RESTful Web Service using GlassFish 4.1, in order to let the user set the value of that variable. I am thinking if there is a way to do that just like you can do with an SQL statement where you can use "?" which you later will set to a variable that you have received as a parameter.



What I am trying to explain is the following type of example (but this is with a JDBC):



private PreparedStatement getEducation;
private final String GET_ED = "SELECT EDUCATION FROM STUDENT WHERE STUDENTID = ?";

void getEducation (int studId) {
int studentId = studId;
getEducation.setInt(1, studentId);
}


The code below is the code for my web service



@Path ("generic")
@GET
@Produces(MediaType.APPLICATION_JSON)
public String getJson(@QueryParam ("name") String name) {
return "Your name is: " +name;
}


The code below is from my main class where I want to "call" the web service from above.



Client client = ClientBuilder.newClient();
WebTarget target = client.target("http://localhost:52801/WebServiceTest/webresources/generic?name=Smith")


So, is there a way to avoid writing "Smith" in the URI, and instead do something like this (the parameter is set by the user before this step):



void setName (String name) { 
setString (1, name);
}


I hope you understand, I am new to this and thought that this should work, I've tried to test around in NetBeans but so far I haven't solved it. I've looked at different websites and tried to understand but it's all a bit confusing to me.










share|improve this question



























    0















    I am wondering if there is a way to put a variable in the path of a RESTful Web Service using GlassFish 4.1, in order to let the user set the value of that variable. I am thinking if there is a way to do that just like you can do with an SQL statement where you can use "?" which you later will set to a variable that you have received as a parameter.



    What I am trying to explain is the following type of example (but this is with a JDBC):



    private PreparedStatement getEducation;
    private final String GET_ED = "SELECT EDUCATION FROM STUDENT WHERE STUDENTID = ?";

    void getEducation (int studId) {
    int studentId = studId;
    getEducation.setInt(1, studentId);
    }


    The code below is the code for my web service



    @Path ("generic")
    @GET
    @Produces(MediaType.APPLICATION_JSON)
    public String getJson(@QueryParam ("name") String name) {
    return "Your name is: " +name;
    }


    The code below is from my main class where I want to "call" the web service from above.



    Client client = ClientBuilder.newClient();
    WebTarget target = client.target("http://localhost:52801/WebServiceTest/webresources/generic?name=Smith")


    So, is there a way to avoid writing "Smith" in the URI, and instead do something like this (the parameter is set by the user before this step):



    void setName (String name) { 
    setString (1, name);
    }


    I hope you understand, I am new to this and thought that this should work, I've tried to test around in NetBeans but so far I haven't solved it. I've looked at different websites and tried to understand but it's all a bit confusing to me.










    share|improve this question

























      0












      0








      0








      I am wondering if there is a way to put a variable in the path of a RESTful Web Service using GlassFish 4.1, in order to let the user set the value of that variable. I am thinking if there is a way to do that just like you can do with an SQL statement where you can use "?" which you later will set to a variable that you have received as a parameter.



      What I am trying to explain is the following type of example (but this is with a JDBC):



      private PreparedStatement getEducation;
      private final String GET_ED = "SELECT EDUCATION FROM STUDENT WHERE STUDENTID = ?";

      void getEducation (int studId) {
      int studentId = studId;
      getEducation.setInt(1, studentId);
      }


      The code below is the code for my web service



      @Path ("generic")
      @GET
      @Produces(MediaType.APPLICATION_JSON)
      public String getJson(@QueryParam ("name") String name) {
      return "Your name is: " +name;
      }


      The code below is from my main class where I want to "call" the web service from above.



      Client client = ClientBuilder.newClient();
      WebTarget target = client.target("http://localhost:52801/WebServiceTest/webresources/generic?name=Smith")


      So, is there a way to avoid writing "Smith" in the URI, and instead do something like this (the parameter is set by the user before this step):



      void setName (String name) { 
      setString (1, name);
      }


      I hope you understand, I am new to this and thought that this should work, I've tried to test around in NetBeans but so far I haven't solved it. I've looked at different websites and tried to understand but it's all a bit confusing to me.










      share|improve this question














      I am wondering if there is a way to put a variable in the path of a RESTful Web Service using GlassFish 4.1, in order to let the user set the value of that variable. I am thinking if there is a way to do that just like you can do with an SQL statement where you can use "?" which you later will set to a variable that you have received as a parameter.



      What I am trying to explain is the following type of example (but this is with a JDBC):



      private PreparedStatement getEducation;
      private final String GET_ED = "SELECT EDUCATION FROM STUDENT WHERE STUDENTID = ?";

      void getEducation (int studId) {
      int studentId = studId;
      getEducation.setInt(1, studentId);
      }


      The code below is the code for my web service



      @Path ("generic")
      @GET
      @Produces(MediaType.APPLICATION_JSON)
      public String getJson(@QueryParam ("name") String name) {
      return "Your name is: " +name;
      }


      The code below is from my main class where I want to "call" the web service from above.



      Client client = ClientBuilder.newClient();
      WebTarget target = client.target("http://localhost:52801/WebServiceTest/webresources/generic?name=Smith")


      So, is there a way to avoid writing "Smith" in the URI, and instead do something like this (the parameter is set by the user before this step):



      void setName (String name) { 
      setString (1, name);
      }


      I hope you understand, I am new to this and thought that this should work, I've tried to test around in NetBeans but so far I haven't solved it. I've looked at different websites and tried to understand but it's all a bit confusing to me.







      java rest web-services variables netbeans






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 1 at 20:27









      a.e.m.na.e.m.n

      62




      62
























          1 Answer
          1






          active

          oldest

          votes


















          0














          You can generate a proxy client instead of call service by writing long URI address.
          Just separate interface of your web service and implementation. Then use interface class in your client like this:



          WebTarget target = client.target(BASE_PATH_ONLY)
          MyServiceInterface proxy = target.proxy(MyServiceInterface.class);

          String result = proxy.getJson("Smith");


          See this link for more detailed info with Resteasy implementation






          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%2f53998704%2fsetting-value-to-a-variable-in-restful-web-service-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














            You can generate a proxy client instead of call service by writing long URI address.
            Just separate interface of your web service and implementation. Then use interface class in your client like this:



            WebTarget target = client.target(BASE_PATH_ONLY)
            MyServiceInterface proxy = target.proxy(MyServiceInterface.class);

            String result = proxy.getJson("Smith");


            See this link for more detailed info with Resteasy implementation






            share|improve this answer






























              0














              You can generate a proxy client instead of call service by writing long URI address.
              Just separate interface of your web service and implementation. Then use interface class in your client like this:



              WebTarget target = client.target(BASE_PATH_ONLY)
              MyServiceInterface proxy = target.proxy(MyServiceInterface.class);

              String result = proxy.getJson("Smith");


              See this link for more detailed info with Resteasy implementation






              share|improve this answer




























                0












                0








                0







                You can generate a proxy client instead of call service by writing long URI address.
                Just separate interface of your web service and implementation. Then use interface class in your client like this:



                WebTarget target = client.target(BASE_PATH_ONLY)
                MyServiceInterface proxy = target.proxy(MyServiceInterface.class);

                String result = proxy.getJson("Smith");


                See this link for more detailed info with Resteasy implementation






                share|improve this answer















                You can generate a proxy client instead of call service by writing long URI address.
                Just separate interface of your web service and implementation. Then use interface class in your client like this:



                WebTarget target = client.target(BASE_PATH_ONLY)
                MyServiceInterface proxy = target.proxy(MyServiceInterface.class);

                String result = proxy.getJson("Smith");


                See this link for more detailed info with Resteasy implementation







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Jan 1 at 20:48

























                answered Jan 1 at 20:42









                RuslanRuslan

                3,569827




                3,569827
































                    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%2f53998704%2fsetting-value-to-a-variable-in-restful-web-service-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

                    MongoDB - Not Authorized To Execute Command

                    Npm cannot find a required file even through it is in the searched directory

                    in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith