{"id":28482521,"url":"https://github.com/jcabi/jcabi-aspects","last_synced_at":"2025-06-28T01:31:38.372Z","repository":{"id":1125625,"uuid":"12590126","full_name":"jcabi/jcabi-aspects","owner":"jcabi","description":"Collection of AspectJ Java Aspects to facilitate aspect-oriented programming patterns: logging, caching, validating, etc.","archived":false,"fork":false,"pushed_at":"2025-06-07T09:35:28.000Z","size":5997,"stargazers_count":532,"open_issues_count":64,"forks_count":151,"subscribers_count":38,"default_branch":"master","last_synced_at":"2025-06-07T20:44:02.378Z","etag":null,"topics":["annotations","aop","aop-aspects","aspect-oriented-programming","java"],"latest_commit_sha":null,"homepage":"https://aspects.jcabi.com","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jcabi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2013-09-04T12:25:37.000Z","updated_at":"2025-05-19T09:40:20.000Z","dependencies_parsed_at":"2023-07-06T20:33:51.377Z","dependency_job_id":"29abddc3-9165-482b-b2b5-9a1004de9c5f","html_url":"https://github.com/jcabi/jcabi-aspects","commit_stats":{"total_commits":902,"total_committers":36,"mean_commits":"25.055555555555557","dds":0.5044345898004434,"last_synced_commit":"40f8d79f6c1c1a1082df9de02473bc10d8dd2d2f"},"previous_names":[],"tags_count":37,"template":false,"template_full_name":null,"purl":"pkg:github/jcabi/jcabi-aspects","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jcabi%2Fjcabi-aspects","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jcabi%2Fjcabi-aspects/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jcabi%2Fjcabi-aspects/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jcabi%2Fjcabi-aspects/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jcabi","download_url":"https://codeload.github.com/jcabi/jcabi-aspects/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jcabi%2Fjcabi-aspects/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262361164,"owners_count":23299046,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["annotations","aop","aop-aspects","aspect-oriented-programming","java"],"created_at":"2025-06-07T20:37:50.130Z","updated_at":"2025-06-28T01:31:38.355Z","avatar_url":"https://github.com/jcabi.png","language":"Java","funding_links":[],"categories":["AOP","\u003ca name=\"Java\"\u003e\u003c/a\u003eJava"],"sub_categories":[],"readme":"\u003cimg src=\"https://www.jcabi.com/logo-square.svg\" width=\"64px\" height=\"64px\" /\u003e\n\n[![EO principles respected here](https://www.elegantobjects.org/badge.svg)](https://www.elegantobjects.org)\n[![DevOps By Rultor.com](https://www.rultor.com/b/jcabi/jcabi-aspects)](https://www.rultor.com/p/jcabi/jcabi-aspects)\n[![We recommend IntelliJ IDEA](https://www.elegantobjects.org/intellij-idea.svg)](https://www.jetbrains.com/idea/)\n\n[![mvn](https://github.com/jcabi/jcabi-aspects/actions/workflows/mvn.yml/badge.svg)](https://github.com/jcabi/jcabi-aspects/actions/workflows/mvn.yml)\n[![PDD status](https://www.0pdd.com/svg?name=jcabi/jcabi-aspects)](https://www.0pdd.com/p?name=jcabi/jcabi-aspects)\n[![Javadoc](https://javadoc.io/badge/com.jcabi/jcabi-aspects.svg)](https://www.javadoc.io/doc/com.jcabi/jcabi-aspects)\n[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.jcabi/jcabi-aspects/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.jcabi/jcabi-aspects)\n[![codecov](https://codecov.io/gh/jcabi/jcabi-aspects/branch/master/graph/badge.svg)](https://codecov.io/gh/jcabi/jcabi-aspects)\n\nMore details are here: [aspects.jcabi.com](https://aspects.jcabi.com/index.html)\n\nAlso, read this blog post: [Java Method Logging with AOP and Annotations](https://www.yegor256.com/2014/06/01/aop-aspectj-java-method-logging.html).\n\nThis module contains a collection of useful [AOP](https://en.wikipedia.org/wiki/Aspect-oriented_programming)\naspects, which\nallow you to modify the behavior of a Java application without\nwriting a line of code. For example, you may want to retry HTTP\nresource downloading in case of failure. You can implement a full\n`do/while` cycle yourself, or you can annotate your method with\n`@RetryOnFailure` and let one of our AOP aspects do the work for you:\n\n```java\nimport com.jcabi.aspects.RetryOnFailure;\n\npublic class MyResource {\n    @RetryOnFailure\n    public String load(final URL url) {\n        return url.openConnection().getContent();\n    }\n}\n```\n\nFull list of AOP annotations is [here](https://aspects.jcabi.com/).\n\n## How to contribute?\n\nFork the repository, make changes, submit a pull request.\nWe promise to review your changes same day and apply to\nthe `master` branch, if they look correct.\n\nPlease run Maven build before submitting a pull request:\n\n```\n$ mvn clean install -Pqulice\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjcabi%2Fjcabi-aspects","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjcabi%2Fjcabi-aspects","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjcabi%2Fjcabi-aspects/lists"}