系统横幅警报消息
您可以创建将在 Windchill 应用程序中的所有页面上显示的系统级横幅消息。
打开警报横幅功能
1. 将以下行代码放入 <Windchill>\codebase\netmarkets\jsp\util\begin_custom.jspf
<%@ include file="/netmarkets/jsp/util/banner_custom.jspf"%>
2. 重新启动 Embedded Servlet Engine
字符编码注意事项
在最新版本的 Tomcat 中,应将以下行添加到 begin_custom.jspf 中,以确保将字符集设置为 UTF-8。否则内容可能无法正确显示。
<%@ page contentType="text/html; charset=UTF-8" %>
在 Windchill UI 页面的顶部显示警报消息
将 html 格式的警报消息写入以下文件:<Windchill>\codebase\netmarkets\jsp\util\banner.txt
例如:
<div
style="float:left;
clear: both;
position: absolute;
margin: 2px 170px;
padding: 3px;
border: 1px solid #000;
background-color: #fff;
top: 3px;
color: #006600;
font-weight: bold;
font-size: 12px;
z-index: 1000">

<font face="verdana">
<!-- Banner begins here -->
Windchill server will be down 1/1 for maintenance
<!-- Banner ends here -->
</font>
</div>
从 Windchill UI 页面移除警报消息
<Windchill>\codebase\netmarkets\jsp\util\banner.txt 设置为空文件。
关闭警报横幅功能
1. <Windchill>\codebase\netmarkets\jsp\util\begin_custom.jspf 设置为空文件
2. 重新启动 Embedded Servlet Engine
这对您有帮助吗?