我的计算机和远程共享开发环境中有一个开发环境。两者都具有“相同”配置的WebLogic 10.3服务器。但是,在我的本地开发环境中,下面的元标记按预期工作。在部署到镜像WebLogic 10.3服务器后,元标记不再有效。
<meta http-equiv="refresh" content="5; URL=sessionTimedOut.jspx"/>
有什么想法吗?
<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
<jsp:directive.page contentType="text/html;charset=UTF-8"/>
<f:view>
<meta http-equiv="refresh" content="5; URL=sessionTimedOut.jspx"/>
<af:document id="d1" title="#{backing_login.appTitle} - Logged Out">
<af:resource type="javascript"/>
</af:document>
</f:view>
</jsp:root>
答案 0 :(得分:1)
问题原因是Internet Explorer 9区域安全设置。已为Intranet站点启用了“Allow META REFRESH”选项,但对外部站点禁用了该选项。
答案 1 :(得分:0)
试试这个
<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
<jsp:directive.page contentType="text/html;charset=UTF-8"/>
<f:view>
<af:document id="d1" title="#{backing_login.appTitle} - Logged Out">
<af:resource type="javascript"/>
<f:facet name="metaContainer">
<af:outputText value="<meta http-equiv='refresh' content='5; URL=sessionTimedOut.jspx' />"
escape="false" />
</f:facet>
</af:document>
</f:view>
</jsp:root>