Skip to content
This repository has been archived by the owner on Nov 3, 2020. It is now read-only.

Latest commit

 

History

History
51 lines (37 loc) · 1.27 KB

CHANGELOG.md

File metadata and controls

51 lines (37 loc) · 1.27 KB

TODAY AOP

🍎 today-aop is a high-performance lightweight aop framework

Codacy Badge

安装

<dependency>
    <groupId>cn.taketoday</groupId>
    <artifactId>today-aop</artifactId>
    <version>1.0.5.RELEASE</version>
</dependency>

Maven Central

v1.0.6

  • ✨ 仿照SpringCache做了一个切面缓存

v1.0.5

  • 🐛 fix: Superclass has no null constructors but no arguments were given
  • 🐛 fix: #4 Aspects not created
  • 🔖 release v1.0.5 2019/7/24-1:54

v1.0.4

  • fix: add AspectsDestroyListener to clear AspectsRegistry aspects instance when context close
  • optimization code

v1.0.2

  • 修复空指针异常

v1.0.1

  • 优先使用注解标注joinPoint
  • 优化代码
@Aspect
@Order(Ordered.HIGHEST_PRECEDENCE)
public class LogAspect {

	@AfterReturning(Logger.class)
	public void afterReturning(@Returning Object returnValue) {
		log.debug("@AfterReturning returnValue: [{}]", returnValue);
	}
}

v1.0.0