资源简介
代码片段和文件信息
/*
* 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 2008-12-05 10:18 spring-fr
目录 0 2008-12-05 10:17 spring-fr
目录 0 2008-12-05 10:19 spring-fr
目录 0 2008-12-05 10:19 spring-fr
目录 0 2008-12-05 10:19 spring-fr
目录 0 2008-12-05 10:19 spring-fr
目录 0 2008-12-05 10:19 spring-fr
目录 0 2008-12-05 10:18 spring-fr
目录 0 2008-12-05 10:18 spring-fr
目录 0 2008-12-05 10:19 spring-fr
目录 0 2008-12-05 10:18 spring-fr
目录 0 2008-12-05 10:18 spring-fr
目录 0 2008-12-05 10:19 spring-fr
目录 0 2008-12-05 10:19 spring-fr
目录 0 2008-12-05 10:19 spring-fr
目录 0 2008-12-05 10:18 spring-fr
目录 0 2008-12-05 10:19 spring-fr
目录 0 2008-12-05 10:19 spring-fr
目录 0 2008-12-05 10:19 spring-fr
目录 0 2008-12-05 10:19 spring-fr
目录 0 2008-12-05 10:19 spring-fr
目录 0 2008-12-05 10:18 spring-fr
目录 0 2008-12-05 10:19 spring-fr
目录 0 2008-12-05 10:18 spring-fr
目录 0 2008-12-05 10:18 spring-fr
目录 0 2008-12-05 10:19 spring-fr
目录 0 2008-12-05 10:18 spring-fr
目录 0 2008-12-05 10:18 spring-fr
目录 0 2008-12-05 10:18 spring-fr
目录 0 2008-12-05 10:18 spring-fr
目录 0 2008-12-05 10:19 spring-fr
............此处省略5346个文件信息
- 上一篇:BBS论坛项目javaweb代码
- 下一篇:android大漩涡图片展示
相关资源
-
Spring-fr
amework 所有的jar包.rar - 毕业设计考试座排系统
- 整合SSMSpring+Spring+Mybatis所有到的jar包
- java购物商城demo源码
- 版本:struts-2.3.14+spring-2.5.6+hibernate3
- Java Web主流框架整合开发:J2EE+Struts
- 分享一套java基于SSM(spring+springMVC+M
- 网上书店系统java+sqlserver+jsp+servlet+s
- 实现增删改查的SSM项目整合包
- 搞定J2EE:Struts_Spring_Hibernate整合详解与
- 客户管理系统
- spring4.2 jar包
- spring 4.1.6 jar source
- Java Web高级编程_全本中文扫描版(p
- 基于java wed的教务管理系统毕业设计全
- 基于b/s的就业信息管理系统
- springMVC+mysql实现的Java web图书管理系统
- SpringMVC-Helloworld
- 基于Springboot的简易密码管理平台(源
- SpringBoot in Action 5th edition
- dwz_spring框架
- SpringBoot2.0之Admin服务监控系统与客户
- Spring5中文参考指南
- Spring security oauth2
- Spring注解驱动开发.xmind
- Spring 3.x企业应用开发实战
- Spring Cloud与摩拜单车Mobike
- 公开课资料:Java互联网架构师成长知
- 后台管理源码spring boot版
- 小商城。 litemall = Spring Boot后端 + Vu
评论
共有 条评论