📄 modifiableadvisor.java
字号:
/*
* Copyright 2002-2005 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.aop.framework.autoproxy.metadata;
import java.util.Collection;
import java.util.Iterator;
import org.aopalliance.intercept.MethodInvocation;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.aop.framework.AopConfigException;
import org.springframework.aop.support.DelegatingIntroductionInterceptor;
import org.springframework.aop.support.DefaultIntroductionAdvisor;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.metadata.Attributes;
/**
*
* @author Rod Johnson
*/
public class ModifiableAdvisor extends DefaultIntroductionAdvisor implements InitializingBean {
protected final Log log = LogFactory.getLog(getClass());
private Attributes attributes;
public ModifiableAdvisor() {
super(new ModifiableIntroductionInterceptor(), Modifiable.class);
}
public void setAttributes(Attributes atts) {
this.attributes = atts;
}
private boolean matches(Collection c) {
//log.info("Checking for modifiable attribute; atts.length=" + atts.size());
for (Iterator itr = c.iterator(); itr.hasNext(); ) {
Object next = itr.next();
if (next instanceof ModifiableAttribute) {
log.info("FOUND modifiable attribute " + next);
return true;
}
}
return false;
}
/**
* @see org.springframework.core.Ordered#getOrder()
*/
public int getOrder() {
throw new UnsupportedOperationException();
}
/**
* @see org.springframework.aop.ClassFilter#matches(java.lang.Class)
*/
public boolean matches(Class targetClass) {
log.info("Checking for mod attribute on " + targetClass + " attributes=" + attributes);
Collection atts = this.attributes.getAttributes(targetClass);
return matches(atts);
}
private static class ModifiableIntroductionInterceptor
extends DelegatingIntroductionInterceptor
implements Modifiable {
private boolean dirty = false;
/**
* @see org.aopalliance.intercept.MethodInterceptor#invoke(org.aopalliance.intercept.MethodInvocation)
*/
public Object invoke(MethodInvocation mi) throws Throwable {
if (!isMethodOnIntroducedInterface(mi)) {
if (!mi.getMethod().getName().startsWith("get")) {
this.dirty = true;
}
}
return super.invoke(mi);
}
/**
* @see org.springframework.enterpriseservices.mod.Modifable#isModified()
*/
public boolean isModified() {
logger.info("isModified");
return this.dirty;
}
public void acceptChanges() {
logger.info("Accepting changes");
this.dirty = false;
}
}
/**
* @see org.springframework.beans.factory.InitializingBean#afterPropertiesSet()
*/
public void afterPropertiesSet() throws Exception {
if (this.attributes == null)
throw new AopConfigException("Must set Attributes property on ModifiableAdvice");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -