我正在将 Spring MVC 3.1.x 与 Tiles 2.2.2(使用 Roo 的引导项目)一起使用,并尝试使用如下图块模板创建视图:
<html xmlns:jsp="http://java.sun.com/JSP/Page"
xmlns:c="http://java.sun.com/jsp/jstl/core"
xmlns:tiles="http://tiles.apache.org/tags-tiles"
xmlns:spring="http://www.springframework.org/tags"
xmlns:util="urn:jsptagdir:/WEB-INF/tags/util" >
<jsp:output doctype-root-element="HTML" doctype-system="about:legacy-compat" />
<jsp:directive.page contentType="text/html;charset=UTF-8" />
<jsp:directive.page pageEncoding="UTF-8" />
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=8" />
<util:load-scripts />
<spring:message code="application_name" var="app_name" htmlEscape="false"/>
<title><spring:message code="welcome_h3" arguments="${app_name}" /></title>
</head>
<body>
<!--Comments -->
<!--[if IE]>
something
<![endif]-->
...
<tiles:insertAttribute name="menu" ignore="true" />
...
</body>
</html>
Tiles 属性运行良好,但注释和条件 CSS 均未呈现;它们只是不存在于输出代码中。
渲染这个“html 注释元素”代码的任何想法?