本文整理了Java中org.apache.catalina.Manager.getNotifyAttributeListenerOnUnchangedValue()
方法的一些代码示例,展示了Manager.getNotifyAttributeListenerOnUnchangedValue()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Manager.getNotifyAttributeListenerOnUnchangedValue()
方法的具体详情如下:
包路径:org.apache.catalina.Manager
类名称:Manager
方法名:getNotifyAttributeListenerOnUnchangedValue
[英]When an attribute that is already present in the session is added again under the same name and a javax.servlet.http.HttpSessionAttributeListener is configured for the session should javax.servlet.http.HttpSessionAttributeListener#attributeReplaced(javax.servlet.http.HttpSessionBindingEvent)be called?
The default value is true.
[中]
代码示例来源:origin: org.apache.tomcat/tomcat-catalina
try {
if (unbound != null) {
if (unbound != value || manager.getNotifyAttributeListenerOnUnchangedValue()) {
context.fireContainerEvent("beforeSessionAttributeReplaced", listener);
if (event == null) {
if (unbound != null) {
if (unbound != value ||
manager.getNotifyAttributeListenerOnUnchangedValue()) {
context.fireContainerEvent("afterSessionAttributeReplaced", listener);
代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core
try {
if (unbound != null) {
if (unbound != value || manager.getNotifyAttributeListenerOnUnchangedValue()) {
context.fireContainerEvent("beforeSessionAttributeReplaced", listener);
if (event == null) {
if (unbound != null) {
if (unbound != value ||
manager.getNotifyAttributeListenerOnUnchangedValue()) {
context.fireContainerEvent("afterSessionAttributeReplaced", listener);
内容来源于网络,如有侵权,请联系作者删除!