当前位置: 首页>>代码示例>>Java>>正文


Java ProxyMethodInvocation.getUserAttribute方法代码示例

本文整理汇总了Java中org.springframework.aop.ProxyMethodInvocation.getUserAttribute方法的典型用法代码示例。如果您正苦于以下问题:Java ProxyMethodInvocation.getUserAttribute方法的具体用法?Java ProxyMethodInvocation.getUserAttribute怎么用?Java ProxyMethodInvocation.getUserAttribute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.springframework.aop.ProxyMethodInvocation的用法示例。


在下文中一共展示了ProxyMethodInvocation.getUserAttribute方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: currentJoinPoint

import org.springframework.aop.ProxyMethodInvocation; //导入方法依赖的package包/类
/**
 * Lazily instantiate joinpoint for the current invocation.
 * Requires MethodInvocation to be bound with ExposeInvocationInterceptor.
 * <p>Do not use if access is available to the current ReflectiveMethodInvocation
 * (in an around advice).
 * @return current AspectJ joinpoint, or through an exception if we're not in a
 * Spring AOP invocation.
 */
public static JoinPoint currentJoinPoint() {
	MethodInvocation mi = ExposeInvocationInterceptor.currentInvocation();
	if (!(mi instanceof ProxyMethodInvocation)) {
		throw new IllegalStateException("MethodInvocation is not a Spring ProxyMethodInvocation: " + mi);
	}
	ProxyMethodInvocation pmi = (ProxyMethodInvocation) mi;
	JoinPoint jp = (JoinPoint) pmi.getUserAttribute(JOIN_POINT_KEY);
	if (jp == null) {
		jp = new MethodInvocationProceedingJoinPoint(pmi);
		pmi.setUserAttribute(JOIN_POINT_KEY, jp);
	}
	return jp;
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:22,代码来源:AbstractAspectJAdvice.java

示例2: getBeanName

import org.springframework.aop.ProxyMethodInvocation; //导入方法依赖的package包/类
/**
 * Find the bean name for the given invocation. Assumes that an ExposeBeanNameAdvisor
 * has been included in the interceptor chain.
 * @param mi MethodInvocation that should contain the bean name as an attribute
 * @return the bean name (never {@code null})
 * @throws IllegalStateException if the bean name has not been exposed
 */
public static String getBeanName(MethodInvocation mi) throws IllegalStateException {
	if (!(mi instanceof ProxyMethodInvocation)) {
		throw new IllegalArgumentException("MethodInvocation is not a Spring ProxyMethodInvocation: " + mi);
	}
	ProxyMethodInvocation pmi = (ProxyMethodInvocation) mi;
	String beanName = (String) pmi.getUserAttribute(BEAN_NAME_ATTRIBUTE);
	if (beanName == null) {
		throw new IllegalStateException("Cannot get bean name; not set on MethodInvocation: " + mi);
	}
	return beanName;
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:19,代码来源:ExposeBeanNameAdvisors.java

示例3: getJoinPointMatch

import org.springframework.aop.ProxyMethodInvocation; //导入方法依赖的package包/类
protected JoinPointMatch getJoinPointMatch(ProxyMethodInvocation pmi) {
	return (JoinPointMatch) pmi.getUserAttribute(this.pointcut.getExpression());
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:4,代码来源:AbstractAspectJAdvice.java


注:本文中的org.springframework.aop.ProxyMethodInvocation.getUserAttribute方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。