spring roo(gvnix) を使用して 1 つの単純なプロジェクト (ユーザーの作成) を作成し、tomcat7 にデプロイしました。Chrome と Microsoft Edge で閲覧している間は正常に動作していますが、IE(11) で閲覧している間は正常に動作します。上部の固定メニューが表示されません。以下は私のindex.jspxコードです。
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<div xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:spring="http://www.springframework.org/tags" xmlns:util="urn:jsptagdir:/WEB-INF/tags/jquery/util" version="2.0">
<jsp:directive.page contentType="text/html;charset=UTF-8"/>
<jsp:output omit-xml-declaration="yes"/>
<spring:message code="application_name" htmlEscape="false" var="app_name"/>
<spring:message arguments="${app_name}" code="welcome_titlepane" htmlEscape="false" var="title"/>
<div class="jumbotron">
<h1><spring:message arguments="${app_name}" code="welcome_h3"/></h1>
<p><spring:message code="welcome_text"/></p>
</div>
</div>
どこが間違っているのか教えてください。
マイクロソフトエッジを使用
ie(11) の使用