: 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.










share|improve this question






















  • 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










  • I think it won't be a problem ! Try model and view as regular way !
    – Avijit Barua
    Nov 7 at 11:27















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.










share|improve this question






















  • 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










  • I think it won't be a problem ! Try model and view as regular way !
    – Avijit Barua
    Nov 7 at 11:27













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.










share|improve this question













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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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 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


















  • 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










  • 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

















active

oldest

votes











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',
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%2f53186012%2fjspinclude-page-couldnt-load-multiple-nested-jspinclude-page%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















 

draft saved


draft discarded



















































 


draft saved


draft discarded














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





















































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







這個網誌中的熱門文章

Tangent Lines Diagram Along Smooth Curve

Yusuf al-Mu'taman ibn Hud

Zucchini