Skip to content

prondzyn/jcabi-aspects

 
 

Repository files navigation

Made By Teamed.io DevOps By Rultor.com We recommend IntelliJ IDEA

Build Status Build status Coverage Status Javadoc

Maven Central Dependencies

Issue Stats Issue Stats

More details are here: aspects.jcabi.com. Also, read this blog post: Java Method Logging with AOP and Annotations.

This module contains a collection of useful AOP aspects, which allow you to modify the behavior of a Java application without writing a line of code. For example, you may want to retry HTTP resource downloading in case of failure. You can implement a full do/while cycle yourself, or you can annotate your method with @RetryOnFailure and let one of our AOP aspects do the work for you:

public class MyResource {
  @RetryOnFailure
  public String load(URL url) {
    return url.openConnection().getContent();
  }
}

Full list of AOP annotations is here.

Questions?

If you have any questions about the framework, or something doesn't work as expected, please submit an issue here.

How to contribute?

Fork the repository, make changes, submit a pull request. We promise to review your changes same day and apply to the master branch, if they look correct.

Please run Maven build before submitting a pull request:

$ mvn clean install -Pqulice

About

Collection of AOP/AspectJ Java Aspects

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 98.3%
  • Groovy 1.7%