本文整理了Java中org.apache.catalina.Manager.getNotifyBindingListenerOnUnchangedValue()
方法的一些代码示例,展示了Manager.getNotifyBindingListenerOnUnchangedValue()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Manager.getNotifyBindingListenerOnUnchangedValue()
方法的具体详情如下:
包路径:org.apache.catalina.Manager
类名称:Manager
方法名:getNotifyBindingListenerOnUnchangedValue
[英]When an attribute that is already present in the session is added again under the same name and the attribute implements javax.servlet.http.HttpSessionBindingListener, should javax.servlet.http.HttpSessionBindingListener#valueUnbound(javax.servlet.http.HttpSessionBindingEvent)be called followed by javax.servlet.http.HttpSessionBindingListener#valueBound(javax.servlet.http.HttpSessionBindingEvent)?
The default value is false.
[中]当会话中已经存在的属性再次以相同的名称添加,并且该属性实现javax时。servlet。http。HttpSessionBindingListener,应该是javax。servlet。http。HttpSessionBindingListener#valueUnbound(javax.servlet.http.HttpSessionBindingEvent)可以在javax之后调用。servlet。http。HttpSessionBindingListener#valueBound(javax.servlet.http.HttpSessionBindingEvent)?
默认值为false。
代码示例来源:origin: org.apache.tomcat/tomcat-catalina
if (value != oldValue || manager.getNotifyBindingListenerOnUnchangedValue()) {
event = new HttpSessionBindingEvent(getSession(), name, value);
try {
if (unbound != value || manager.getNotifyBindingListenerOnUnchangedValue()) {
try {
((HttpSessionBindingListener) unbound).valueUnbound
代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core
if (value != oldValue || manager.getNotifyBindingListenerOnUnchangedValue()) {
event = new HttpSessionBindingEvent(getSession(), name, value);
try {
if (unbound != value || manager.getNotifyBindingListenerOnUnchangedValue()) {
try {
((HttpSessionBindingListener) unbound).valueUnbound
内容来源于网络,如有侵权,请联系作者删除!