资源简介
代码片段和文件信息
/*
* Copyright 2002-2007 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;
import org.aopalliance.aop.Advice;
/**
* base interface holding AOP advice (action to take at a joinpoint)
* and a filter determining the applicability of the advice (such as
* a pointcut). This interface is not for use by Spring users but to
* allow for commonality in support for different types of advice.
*
* Spring AOP is based around around advice delivered via method
* interception compliant with the AOP Alliance interception API.
* The Advisor interface allows support for different types of advice
* such as before and after advice which need not be
* implemented using interception.
*
* @author Rod Johnson
*/
public interface Advisor {
/**
* Return the advice part of this aspect. An advice may be an
* interceptor a before advice a throws advice etc.
* @return the advice that should apply if the pointcut matches
* @see org.aopalliance.intercept.MethodInterceptor
* @see BeforeAdvice
* @see ThrowsAdvice
* @see AfterReturningAdvice
*/
Advice getAdvice();
/**
* Return whether this advice is associated with a particular instance
* (for example creating a mixin) or shared with all instances of
* the advised class obtained from the same Spring bean factory.
* Note that this method is not currently used by the framework.
* Typical Advisor implementations always return true
.
* Use singleton/prototype bean definitions or appropriate programmatic
* proxy creation to ensure that Advisors have the correct lifecycle model.
* @return whether this advice is associated with a particular target instance
*/
boolean isPerInstance();
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2010-10-20 16:29 spring-fr
目录 0 2010-10-20 16:21 spring-fr
目录 0 2010-10-20 16:29 spring-fr
目录 0 2010-10-20 16:26 spring-fr
目录 0 2010-10-20 16:26 spring-fr
目录 0 2010-10-20 16:22 spring-fr
目录 0 2010-10-20 16:24 spring-fr
目录 0 2010-10-20 16:25 spring-fr
目录 0 2010-10-20 16:25 spring-fr
目录 0 2010-10-20 16:25 spring-fr
目录 0 2010-10-20 16:25 spring-fr
目录 0 2010-10-20 16:25 spring-fr
目录 0 2010-10-20 16:25 spring-fr
目录 0 2010-10-20 16:25 spring-fr
目录 0 2010-10-20 16:25 spring-fr
目录 0 2010-10-20 16:25 spring-fr
目录 0 2010-10-20 16:25 spring-fr
目录 0 2010-10-20 16:25 spring-fr
目录 0 2010-10-20 16:25 spring-fr
目录 0 2010-10-20 16:25 spring-fr
目录 0 2010-10-20 16:25 spring-fr
目录 0 2010-10-20 16:25 spring-fr
目录 0 2010-10-20 16:25 spring-fr
目录 0 2010-10-20 16:25 spring-fr
目录 0 2010-10-20 16:25 spring-fr
目录 0 2010-10-20 16:25 spring-fr
目录 0 2010-10-20 16:25 spring-fr
目录 0 2010-10-20 16:25 spring-fr
目录 0 2010-10-20 16:25 spring-fr
目录 0 2010-10-20 16:25 spring-fr
目录 0 2010-10-20 16:25 spring-fr
............此处省略10529个文件信息
- 上一篇:微赞最新内核2.0.8纯净版安装包https
- 下一篇:SoC设计方法与实现
相关资源
- 生成mybatis代码等
- 基于SSM航空票务系统
- spring in action 第四版 中文 高清完整
- 图书管理系统SpringMvc+mybatis
- ssm框架的缺陷管理系统
- hibernate+struts+spring 基于SSH设计的酒店
- 北京动力节点-北京动力节点 Reyco郭
- 基于ssm框架的人事管理系统
- 深入浅出Spring Boot 2.x 图书配套源码
- IDEA下maven管理的SSH框架 spring4 + stru
- springboot rabbitmq 模拟高并发秒杀系统
- 人脸识别登录注册
- 基于Springboot+Mybatis打造接口自动化测
- The Elements of Statistical Learning Springer
- my-start-spring-io.rar
- SSM框架-志愿者服务中心展示系统
- Spring 4.1.3 API.高清完整chm
- spring security3 完整
- SSH1框架搭建
- 精通 Spring Boot 42 讲
- Spring+Springmvc+mybaties购物车
- 基于SSM的一个项目
- Hungerford - Algebra - Springer
- 使用 Spring MVC + JDBC Template 实现登录
- SpringBoot中文版+SpringBoot英文版
- 教学大纲管理系统
- 基于SpringMVC图书信息管理系统 v1.0.r
- Spring实战 第五版(英文原版+源码)
- spring+springmvc+hibernate框架简单的登录功
- 基于Vue的完整电商系统
评论
共有 条评论