How to get path of servlet to include in .jsp file?












1















I'm trying to call a servlet in a jsp file by using the following tag to read some data sent by the servlet.



<jsp:include page="../View_Accountant.java" flush = "true" /> 


It's not working, I think the URL of servlet is wrong.



My project directory.



project directory image










share|improve this question





























    1















    I'm trying to call a servlet in a jsp file by using the following tag to read some data sent by the servlet.



    <jsp:include page="../View_Accountant.java" flush = "true" /> 


    It's not working, I think the URL of servlet is wrong.



    My project directory.



    project directory image










    share|improve this question



























      1












      1








      1








      I'm trying to call a servlet in a jsp file by using the following tag to read some data sent by the servlet.



      <jsp:include page="../View_Accountant.java" flush = "true" /> 


      It's not working, I think the URL of servlet is wrong.



      My project directory.



      project directory image










      share|improve this question
















      I'm trying to call a servlet in a jsp file by using the following tag to read some data sent by the servlet.



      <jsp:include page="../View_Accountant.java" flush = "true" /> 


      It's not working, I think the URL of servlet is wrong.



      My project directory.



      project directory image







      java jsp servlets






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 20 '18 at 17:39









      user7294900

      21.8k113258




      21.8k113258










      asked Aug 28 '18 at 15:06









      chanduchandu

      205




      205
























          2 Answers
          2






          active

          oldest

          votes


















          2














          jsp include page need to get as parameter a JSP file (or other file) and not the Servlet class file




          The jsp:include element is processed when a JSP page is executed







          share|improve this answer
























          • If I should pass url of .class file of servlet.. what should be the url of View_Accountant.class..how do i get it?

            – chandu
            Aug 28 '18 at 15:28













          • Edit: If I should pass url of .jsp file of servlet.. what should be the url of View_Accountant file ..how do i get it?

            – chandu
            Aug 28 '18 at 15:39











          • @chandu usually you define entry point for servlet in web.xml or in annotation and then call the endpoint as /servlet/viewaccount with ajax call or form submission or browser GET request

            – user7294900
            Aug 29 '18 at 5:53



















          0














          All the Project Servlet's names are stored in the web.xml file. Just take the servlet URL from there and use it instead of View_Accountant.java






          share|improve this answer
























          • All I can see in web.xml is stack of welcome-file tags..

            – chandu
            Aug 28 '18 at 15:31











          • attach a screenshot of your web.xml

            – Anchit
            Aug 28 '18 at 15:40











          • <welcome-file>index.jsp</welcome-file> <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> these tags..

            – chandu
            Aug 28 '18 at 15:43













          • Is there any tag like this?: <servlet-mapping> <servlet-name>FirstServlet1</servlet-name> <url-pattern>/firstservlet1.do</url-pattern> </servlet-mapping>

            – Anchit
            Aug 28 '18 at 15:47











          • I am using annotations instead url mapping.

            – chandu
            Aug 28 '18 at 15:48











          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%2f52061087%2fhow-to-get-path-of-servlet-to-include-in-jsp-file%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          2














          jsp include page need to get as parameter a JSP file (or other file) and not the Servlet class file




          The jsp:include element is processed when a JSP page is executed







          share|improve this answer
























          • If I should pass url of .class file of servlet.. what should be the url of View_Accountant.class..how do i get it?

            – chandu
            Aug 28 '18 at 15:28













          • Edit: If I should pass url of .jsp file of servlet.. what should be the url of View_Accountant file ..how do i get it?

            – chandu
            Aug 28 '18 at 15:39











          • @chandu usually you define entry point for servlet in web.xml or in annotation and then call the endpoint as /servlet/viewaccount with ajax call or form submission or browser GET request

            – user7294900
            Aug 29 '18 at 5:53
















          2














          jsp include page need to get as parameter a JSP file (or other file) and not the Servlet class file




          The jsp:include element is processed when a JSP page is executed







          share|improve this answer
























          • If I should pass url of .class file of servlet.. what should be the url of View_Accountant.class..how do i get it?

            – chandu
            Aug 28 '18 at 15:28













          • Edit: If I should pass url of .jsp file of servlet.. what should be the url of View_Accountant file ..how do i get it?

            – chandu
            Aug 28 '18 at 15:39











          • @chandu usually you define entry point for servlet in web.xml or in annotation and then call the endpoint as /servlet/viewaccount with ajax call or form submission or browser GET request

            – user7294900
            Aug 29 '18 at 5:53














          2












          2








          2







          jsp include page need to get as parameter a JSP file (or other file) and not the Servlet class file




          The jsp:include element is processed when a JSP page is executed







          share|improve this answer













          jsp include page need to get as parameter a JSP file (or other file) and not the Servlet class file




          The jsp:include element is processed when a JSP page is executed








          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Aug 28 '18 at 15:12









          user7294900user7294900

          21.8k113258




          21.8k113258













          • If I should pass url of .class file of servlet.. what should be the url of View_Accountant.class..how do i get it?

            – chandu
            Aug 28 '18 at 15:28













          • Edit: If I should pass url of .jsp file of servlet.. what should be the url of View_Accountant file ..how do i get it?

            – chandu
            Aug 28 '18 at 15:39











          • @chandu usually you define entry point for servlet in web.xml or in annotation and then call the endpoint as /servlet/viewaccount with ajax call or form submission or browser GET request

            – user7294900
            Aug 29 '18 at 5:53



















          • If I should pass url of .class file of servlet.. what should be the url of View_Accountant.class..how do i get it?

            – chandu
            Aug 28 '18 at 15:28













          • Edit: If I should pass url of .jsp file of servlet.. what should be the url of View_Accountant file ..how do i get it?

            – chandu
            Aug 28 '18 at 15:39











          • @chandu usually you define entry point for servlet in web.xml or in annotation and then call the endpoint as /servlet/viewaccount with ajax call or form submission or browser GET request

            – user7294900
            Aug 29 '18 at 5:53

















          If I should pass url of .class file of servlet.. what should be the url of View_Accountant.class..how do i get it?

          – chandu
          Aug 28 '18 at 15:28







          If I should pass url of .class file of servlet.. what should be the url of View_Accountant.class..how do i get it?

          – chandu
          Aug 28 '18 at 15:28















          Edit: If I should pass url of .jsp file of servlet.. what should be the url of View_Accountant file ..how do i get it?

          – chandu
          Aug 28 '18 at 15:39





          Edit: If I should pass url of .jsp file of servlet.. what should be the url of View_Accountant file ..how do i get it?

          – chandu
          Aug 28 '18 at 15:39













          @chandu usually you define entry point for servlet in web.xml or in annotation and then call the endpoint as /servlet/viewaccount with ajax call or form submission or browser GET request

          – user7294900
          Aug 29 '18 at 5:53





          @chandu usually you define entry point for servlet in web.xml or in annotation and then call the endpoint as /servlet/viewaccount with ajax call or form submission or browser GET request

          – user7294900
          Aug 29 '18 at 5:53













          0














          All the Project Servlet's names are stored in the web.xml file. Just take the servlet URL from there and use it instead of View_Accountant.java






          share|improve this answer
























          • All I can see in web.xml is stack of welcome-file tags..

            – chandu
            Aug 28 '18 at 15:31











          • attach a screenshot of your web.xml

            – Anchit
            Aug 28 '18 at 15:40











          • <welcome-file>index.jsp</welcome-file> <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> these tags..

            – chandu
            Aug 28 '18 at 15:43













          • Is there any tag like this?: <servlet-mapping> <servlet-name>FirstServlet1</servlet-name> <url-pattern>/firstservlet1.do</url-pattern> </servlet-mapping>

            – Anchit
            Aug 28 '18 at 15:47











          • I am using annotations instead url mapping.

            – chandu
            Aug 28 '18 at 15:48
















          0














          All the Project Servlet's names are stored in the web.xml file. Just take the servlet URL from there and use it instead of View_Accountant.java






          share|improve this answer
























          • All I can see in web.xml is stack of welcome-file tags..

            – chandu
            Aug 28 '18 at 15:31











          • attach a screenshot of your web.xml

            – Anchit
            Aug 28 '18 at 15:40











          • <welcome-file>index.jsp</welcome-file> <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> these tags..

            – chandu
            Aug 28 '18 at 15:43













          • Is there any tag like this?: <servlet-mapping> <servlet-name>FirstServlet1</servlet-name> <url-pattern>/firstservlet1.do</url-pattern> </servlet-mapping>

            – Anchit
            Aug 28 '18 at 15:47











          • I am using annotations instead url mapping.

            – chandu
            Aug 28 '18 at 15:48














          0












          0








          0







          All the Project Servlet's names are stored in the web.xml file. Just take the servlet URL from there and use it instead of View_Accountant.java






          share|improve this answer













          All the Project Servlet's names are stored in the web.xml file. Just take the servlet URL from there and use it instead of View_Accountant.java







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Aug 28 '18 at 15:16









          AnchitAnchit

          1269




          1269













          • All I can see in web.xml is stack of welcome-file tags..

            – chandu
            Aug 28 '18 at 15:31











          • attach a screenshot of your web.xml

            – Anchit
            Aug 28 '18 at 15:40











          • <welcome-file>index.jsp</welcome-file> <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> these tags..

            – chandu
            Aug 28 '18 at 15:43













          • Is there any tag like this?: <servlet-mapping> <servlet-name>FirstServlet1</servlet-name> <url-pattern>/firstservlet1.do</url-pattern> </servlet-mapping>

            – Anchit
            Aug 28 '18 at 15:47











          • I am using annotations instead url mapping.

            – chandu
            Aug 28 '18 at 15:48



















          • All I can see in web.xml is stack of welcome-file tags..

            – chandu
            Aug 28 '18 at 15:31











          • attach a screenshot of your web.xml

            – Anchit
            Aug 28 '18 at 15:40











          • <welcome-file>index.jsp</welcome-file> <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> these tags..

            – chandu
            Aug 28 '18 at 15:43













          • Is there any tag like this?: <servlet-mapping> <servlet-name>FirstServlet1</servlet-name> <url-pattern>/firstservlet1.do</url-pattern> </servlet-mapping>

            – Anchit
            Aug 28 '18 at 15:47











          • I am using annotations instead url mapping.

            – chandu
            Aug 28 '18 at 15:48

















          All I can see in web.xml is stack of welcome-file tags..

          – chandu
          Aug 28 '18 at 15:31





          All I can see in web.xml is stack of welcome-file tags..

          – chandu
          Aug 28 '18 at 15:31













          attach a screenshot of your web.xml

          – Anchit
          Aug 28 '18 at 15:40





          attach a screenshot of your web.xml

          – Anchit
          Aug 28 '18 at 15:40













          <welcome-file>index.jsp</welcome-file> <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> these tags..

          – chandu
          Aug 28 '18 at 15:43







          <welcome-file>index.jsp</welcome-file> <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> these tags..

          – chandu
          Aug 28 '18 at 15:43















          Is there any tag like this?: <servlet-mapping> <servlet-name>FirstServlet1</servlet-name> <url-pattern>/firstservlet1.do</url-pattern> </servlet-mapping>

          – Anchit
          Aug 28 '18 at 15:47





          Is there any tag like this?: <servlet-mapping> <servlet-name>FirstServlet1</servlet-name> <url-pattern>/firstservlet1.do</url-pattern> </servlet-mapping>

          – Anchit
          Aug 28 '18 at 15:47













          I am using annotations instead url mapping.

          – chandu
          Aug 28 '18 at 15:48





          I am using annotations instead url mapping.

          – chandu
          Aug 28 '18 at 15:48


















          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%2f52061087%2fhow-to-get-path-of-servlet-to-include-in-jsp-file%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

          Can a sorcerer learn a 5th-level spell early by creating spell slots using the Font of Magic feature?

          Does disintegrating a polymorphed enemy still kill it after the 2018 errata?

          A Topological Invariant for $pi_3(U(n))$