spring roo(gvnix) 在 ie 中不工作

spring roo(gvnix) not working in ie

我使用 spring roo( gvnix) 创建了一个简单的项目(创建用户)并部署在 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)

我遇到了同样的问题并解决了。

转到WEB-INF/layouts/default.jspx

设置<jsp:output doctype-root-element="html" doctype-system="about:legacy-compat"/>

而不是

<jsp:output doctype-root-element="HTML" doctype-system="about:legacy-compat"/>

和评论:

<!-- <meta content="IE=8" http-equiv="X-UA-Compatible"/>  --> 

让我知道这是否解决了问题