: couldn't load multiple nested
up vote
1
down vote
favorite
I am using springMVC,and include pages with relative mapping.
But I couldn't load pages that multiple levels nested.
main.jsp:
<div id="mainInclude">
<jsp:include page="/service/sjjggl/scriptRetrieve/newHotInclude"></jsp:include>
</div>
newHotInclude.jsp:
<div class="row">
<div class="col-sm-8 hidden-xs" id="showScriptNormal">
<jsp:include page="/service/sjjggl/scriptRetrieve/showScriptNormal"></jsp:include>
</div>
<div class="col-sm-4">
col-sm-4
<jsp:include page="/service/sjjggl/scriptRetrieve/showScriptHot"></jsp:include>
</div>
</div>
I can not load showScriptNormal.jsp
and showScriptHot
in this way.
Is there a good way to realize multi-nested jsp pages?
Thanks.
jsp jsp-tags
add a comment |
up vote
1
down vote
favorite
I am using springMVC,and include pages with relative mapping.
But I couldn't load pages that multiple levels nested.
main.jsp:
<div id="mainInclude">
<jsp:include page="/service/sjjggl/scriptRetrieve/newHotInclude"></jsp:include>
</div>
newHotInclude.jsp:
<div class="row">
<div class="col-sm-8 hidden-xs" id="showScriptNormal">
<jsp:include page="/service/sjjggl/scriptRetrieve/showScriptNormal"></jsp:include>
</div>
<div class="col-sm-4">
col-sm-4
<jsp:include page="/service/sjjggl/scriptRetrieve/showScriptHot"></jsp:include>
</div>
</div>
I can not load showScriptNormal.jsp
and showScriptHot
in this way.
Is there a good way to realize multi-nested jsp pages?
Thanks.
jsp jsp-tags
Can you try<%@ include file="folder/.../BootstrapTag.jsp"%>
instead of<jsp:include page="/service/sjjggl/scriptRetrieve/showScriptNormal">
?
– Avijit Barua
Nov 7 at 10:48
Thank you for your advice.<%@ include file %>
just transfer a static page, but i need the return data fromModelAndView
.
– Bd Han
Nov 7 at 11:24
I think it won't be a problem ! Try model and view as regular way !
– Avijit Barua
Nov 7 at 11:27
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I am using springMVC,and include pages with relative mapping.
But I couldn't load pages that multiple levels nested.
main.jsp:
<div id="mainInclude">
<jsp:include page="/service/sjjggl/scriptRetrieve/newHotInclude"></jsp:include>
</div>
newHotInclude.jsp:
<div class="row">
<div class="col-sm-8 hidden-xs" id="showScriptNormal">
<jsp:include page="/service/sjjggl/scriptRetrieve/showScriptNormal"></jsp:include>
</div>
<div class="col-sm-4">
col-sm-4
<jsp:include page="/service/sjjggl/scriptRetrieve/showScriptHot"></jsp:include>
</div>
</div>
I can not load showScriptNormal.jsp
and showScriptHot
in this way.
Is there a good way to realize multi-nested jsp pages?
Thanks.
jsp jsp-tags
I am using springMVC,and include pages with relative mapping.
But I couldn't load pages that multiple levels nested.
main.jsp:
<div id="mainInclude">
<jsp:include page="/service/sjjggl/scriptRetrieve/newHotInclude"></jsp:include>
</div>
newHotInclude.jsp:
<div class="row">
<div class="col-sm-8 hidden-xs" id="showScriptNormal">
<jsp:include page="/service/sjjggl/scriptRetrieve/showScriptNormal"></jsp:include>
</div>
<div class="col-sm-4">
col-sm-4
<jsp:include page="/service/sjjggl/scriptRetrieve/showScriptHot"></jsp:include>
</div>
</div>
I can not load showScriptNormal.jsp
and showScriptHot
in this way.
Is there a good way to realize multi-nested jsp pages?
Thanks.
jsp jsp-tags
jsp jsp-tags
asked Nov 7 at 8:45
Bd Han
62
62
Can you try<%@ include file="folder/.../BootstrapTag.jsp"%>
instead of<jsp:include page="/service/sjjggl/scriptRetrieve/showScriptNormal">
?
– Avijit Barua
Nov 7 at 10:48
Thank you for your advice.<%@ include file %>
just transfer a static page, but i need the return data fromModelAndView
.
– Bd Han
Nov 7 at 11:24
I think it won't be a problem ! Try model and view as regular way !
– Avijit Barua
Nov 7 at 11:27
add a comment |
Can you try<%@ include file="folder/.../BootstrapTag.jsp"%>
instead of<jsp:include page="/service/sjjggl/scriptRetrieve/showScriptNormal">
?
– Avijit Barua
Nov 7 at 10:48
Thank you for your advice.<%@ include file %>
just transfer a static page, but i need the return data fromModelAndView
.
– Bd Han
Nov 7 at 11:24
I think it won't be a problem ! Try model and view as regular way !
– Avijit Barua
Nov 7 at 11:27
Can you try
<%@ include file="folder/.../BootstrapTag.jsp"%>
instead of <jsp:include page="/service/sjjggl/scriptRetrieve/showScriptNormal">
?– Avijit Barua
Nov 7 at 10:48
Can you try
<%@ include file="folder/.../BootstrapTag.jsp"%>
instead of <jsp:include page="/service/sjjggl/scriptRetrieve/showScriptNormal">
?– Avijit Barua
Nov 7 at 10:48
Thank you for your advice.
<%@ include file %>
just transfer a static page, but i need the return data from ModelAndView
.– Bd Han
Nov 7 at 11:24
Thank you for your advice.
<%@ include file %>
just transfer a static page, but i need the return data from ModelAndView
.– Bd Han
Nov 7 at 11:24
I think it won't be a problem ! Try model and view as regular way !
– Avijit Barua
Nov 7 at 11:27
I think it won't be a problem ! Try model and view as regular way !
– Avijit Barua
Nov 7 at 11:27
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f53186012%2fjspinclude-page-couldnt-load-multiple-nested-jspinclude-page%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
Can you try
<%@ include file="folder/.../BootstrapTag.jsp"%>
instead of<jsp:include page="/service/sjjggl/scriptRetrieve/showScriptNormal">
?– Avijit Barua
Nov 7 at 10:48
Thank you for your advice.
<%@ include file %>
just transfer a static page, but i need the return data fromModelAndView
.– Bd Han
Nov 7 at 11:24
I think it won't be a problem ! Try model and view as regular way !
– Avijit Barua
Nov 7 at 11:27