我想在liferay中弹出的警告中操纵不活动会话超时 但不知道该怎么做。我是liferay的新手,所以寻求你的帮助。
谢谢, Sourav
答案 0 :(得分:4)
我想你想知道在闲置时弹出在Liferay中弹出的时间在哪里更新。
# Specify the number of minutes before a warning is sent to the user
# informing the user of the session expiration. Specify 0 to disable any
# warnings.
#
session.timeout.warning=1
您可以覆盖portal-ext.properties
中的上述值,如果您不想弹出警告,则设置为0.
与您的问题无关:发生此检查的地方是..deploy / ROOT.war / html / common / themes - > Liferay 6.0中的session_timeout.jspf
页面
您可以在..deploy / ROOT.war / WEB-INF / web.xml文件中设置session-timeout
间隔。
以下是您需要更改的地方,
<session-config>
<session-timeout>30</session-timeout>
</session-config>
这表示如果用户处于非活动状态30分钟后,您的会话将被销毁。