2

我们可以恢复tiles.xml 中的活动配置文件吗?

我需要在活动配置文件的标题中显示一个指示器。

web.xml

<context-param>
    <param-name>spring.profiles.active</param-name>
    <param-value>QA</param-value>
</context-param>

瓷砖.xml

<definition name="base.layout" template="/WEB-INF/views/layout/layout.jsp">
    <put-attribute name="title" value="My title - GET PROFILE ACTIVE HERE" />
    <put-attribute name="header" value="/WEB-INF/views/layout/header.jsp" />
    <put-attribute name="contentLayout" value="" />
    <put-attribute name="footer" value="/WEB-INF/views/layout/footer.jsp" />
</definition>

4

1 回答 1

1

为什么不使用 app.properties 如下?

spring.profiles.active=QA

然后在你的xml中你可以使用:

<util:properties id="app.properties" location="classpath:application.properties"/>

<definition name="base.layout" template="/WEB-INF/views/layout/layout.jsp">
    <put-attribute name="title" value="${spring.profiles.active}"/>
 ...
</definition>
于 2013-09-04T11:23:23.587 回答