How to get path of servlet to include in .jsp file?
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.
java jsp servlets
add a comment |
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.
java jsp servlets
add a comment |
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.
java jsp servlets
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.
java jsp servlets
java jsp servlets
edited Nov 20 '18 at 17:39
user7294900
21.8k113258
21.8k113258
asked Aug 28 '18 at 15:06
chanduchandu
205
205
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
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
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
add a comment |
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
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
|
show 3 more comments
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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
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
add a comment |
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
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
add a comment |
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
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
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
add a comment |
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
add a comment |
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
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
|
show 3 more comments
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
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
|
show 3 more comments
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
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
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
|
show 3 more comments
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
|
show 3 more comments
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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