jsp include vs jquery ajax [关闭]

                <div class="grid--cell fl1 lh-lg">
                    <div class="grid--cell fl1 lh-lg">
                        As it currently stands, this question is not a good fit for our Q&amp;A format. We expect answers to be supported by facts, references,   or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question   can be improved and possibly reopened, <a href="/help/reopen-questions">visit the help center</a> for guidance.

                    </div>
                </div>
            </div>
            <div class="grid--cell mb0 mt8">Closed <span title="2013-03-11 22:38:34Z" class="relativetime">7 years ago</span>.</div>
        </div>
    </aside>

I have a jsp page that has separate modules or widgets on it. To improve the overall load-time of the page, I was thinking of fetching those independent modules in parallel. I have 2 strategies :

1: JQUERY AJAX

function getSimilars(){
    $('#similars').load('getSimilars.jsp');
}
function getActivity(){
    $('#activity').load('getActivity.jsp');
}

$(document).ready(function(){
    var funcList = ['getSimilars','getActivity'];
        $.each(funcList, function(i,v){
            window[v]();
    })
});

2: STATIC INCLUDE

<div id="similars">
    <%@include file="getSimilars.jsp" %>
</div>
<div id="activity">
    <%@include file="getActivity.jsp" %>
</div>

I know that 1 runs from the browser while 2 runs during compile time. But which of these would make my page load faster?

EDIT: While the jquery method runs both function in parallel, I think the 2nd method makes those 2 includes run serially. Am I right ?

</div>

Option 1> Loading page via ajax will make load the partial page loading faster, but the rest of the 2 pages load time will vary every time during page call and those will depend on network bandwidth.

Option 2> We know from Java EE Specification, that all jsp pages are compiled first time as servlet and then no further compilation are needed and the generated .class file executes directly in all later calls to the page.

So there will not be any further time dependency here for page loading.

Now if the application needs the full page at same time the Option 2 should be chosen.

Where as

if the application page loading with lazy loading experience can be used for better user experience then the Option 1 should be chosen.