awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةOpen-source alternativesSelf-hosted softwareالمدونةخريطة الموقع
المشروعحولHow we rankالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

13 مستودعات

Awesome GitHub RepositoriesJava Annotation Processors

Tools that generate boilerplate code at compile time based on source code annotations.

Distinct from Code Annotations: Candidates focus on linting or general annotations; this is specifically about the code-generation processor.

Explore 13 awesome GitHub repositories matching programming languages & runtimes · Java Annotation Processors. Refine with filters or upvote what's useful.

Awesome Java Annotation Processors GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • jakewharton/butterknifeالصورة الرمزية لـ JakeWharton

    JakeWharton/butterknife

    25,364عرض على GitHub↗

    ButterKnife is an Android view binding library and Java annotation processor that automates the linking of UI elements and resources to class fields and methods. It functions as a system for managing view references and event listeners to reduce repetitive setup code in Android applications. The library uses compile-time code generation to replace manual view lookups and type casting with generated helper classes, ensuring a reflection-free runtime. It differentiates itself by providing mechanisms for binding interaction events directly to methods, eliminating the need for anonymous inner cla

    Uses a Java annotation processor to generate boilerplate code at compile time for automating UI linking.

    Java
    عرض على GitHub↗25,364
  • projectlombok/lombokالصورة الرمزية لـ projectlombok

    projectlombok/lombok

    13,458عرض على GitHub↗

    Lombok is a Java annotation processor and boilerplate reduction library designed to automatically generate repetitive source code. It intercepts the compilation process to inject methods and fields directly into Java classes, acting as a source code generator that eliminates the need to manually write common class patterns. The project distinguishes itself through deep integration with the Java compiler and various integrated development environments. It provides IDE plugins that allow editors to recognize and navigate generated methods, preventing false compilation errors and maintaining syn

    Acts as a Java annotation processor that intercepts compilation to inject generated methods and fields.

    Java
    عرض على GitHub↗13,458
  • androidannotations/androidannotationsالصورة الرمزية لـ androidannotations

    androidannotations/androidannotations

    10,981عرض على GitHub↗

    AndroidAnnotations is a suite of tools designed to automate the generation of repetitive boilerplate and setup code for mobile application development. It functions as a code generation tool that reduces manual effort by creating the plumbing required to initialize Android components and views. The project provides specialized frameworks for dependency injection, concurrency management, and view binding. It automates the assignment of system services, resources, and UI elements to fields and maps user interface events directly to methods to eliminate the need for anonymous listener classes.

    Generates boilerplate Java source files during compilation using custom annotation processors.

    Java
    عرض على GitHub↗10,981
  • excilys/androidannotationsالصورة الرمزية لـ excilys

    excilys/androidannotations

    10,981عرض على GitHub↗

    AndroidAnnotations is a boilerplate generator and component annotation library designed for Android development. It functions as a dependency injection framework that uses custom annotations to automate the wiring of activities, fragments, and services. The project focuses on reducing manual plumbing through the automation of Android boilerplate. It provides automated solutions for dependency injection and view binding, removing the need for repetitive calls to locate UI elements or manually write factory classes. The library covers activity lifecycle management and the generation of standar

    Provides a Java annotation processor to generate boilerplate source code at compile time.

    Java
    عرض على GitHub↗10,981
  • google/autoالصورة الرمزية لـ google

    google/auto

    10,545عرض على GitHub↗

    This project is a Java annotation processing framework and source code generator designed to automate repetitive boilerplate and reduce manual coding errors. It functions as a toolkit for building custom annotation processors that produce source code, metadata, and type definitions during the compilation process. The framework specifically automates the creation of immutable value types with built-in equality and hashing logic, as well as the generation of factory implementations for dependency injection. It also handles the automated production of service provider configuration files to enab

    Provides a framework for creating Java annotation processors that generate source code during compilation.

    Java
    عرض على GitHub↗10,545
  • airbnb/epoxyالصورة الرمزية لـ airbnb

    airbnb/epoxy

    8,556عرض على GitHub↗

    Epoxy is an Android library for building complex RecyclerView screens using a model-driven approach. It generates RecyclerView adapter models at compile time from annotated custom views, data binding layouts, or view holders, eliminating the manual boilerplate typically associated with view holders and adapters. The library provides a diffing engine that automatically compares model lists and applies minimal updates with animations for insertions, removals, and moves. The library distinguishes itself through its controller-based model building, where a controller class with a buildModels meth

    Generates RecyclerView adapter models at compile time from annotated views, layouts, or view holders.

    Java
    عرض على GitHub↗8,556
  • javalin/javalinالصورة الرمزية لـ javalin

    javalin/javalin

    8,290عرض على GitHub↗

    Javalin is a lightweight web framework for Java and Kotlin designed for building REST APIs and web applications. It functions as an embedded Jetty web server, allowing applications to run as standalone processes without the need for an external servlet container. The project provides specialized frameworks for diverse communication patterns, including a REST API framework with automatic OpenAPI schema generation, a GraphQL API framework with query and mutation resolvers, and a WebSocket server for bidirectional real-time communication. It also includes a dedicated framework for pushing real-t

    Generates OpenAPI specification documents during compilation using Java annotation processors.

    Kotlinhacktoberfestjavajavalin
    عرض على GitHub↗8,290
  • apache/tomcatالصورة الرمزية لـ apache

    apache/tomcat

    8,186عرض على GitHub↗

    Apache Tomcat is an open-source implementation of the Jakarta Servlet, Pages, Expression Language, and WebSocket specifications, serving as a container for running Java web applications. It provides a modular architecture with a servlet container, connector abstraction for multiple I/O models, and a pipeline-based request processing system that handles cross-cutting concerns through composable components. The server supports container-managed security with configurable realms for authentication against JDBC, LDAP, or memory-based credential stores, and offers TLS encryption with optional Open

    Implements Jakarta EE annotations for resource injection, security roles, and persistence mappings in web applications.

    Javahttpjavajavaee
    عرض على GitHub↗8,186
  • mapstruct/mapstructالصورة الرمزية لـ mapstruct

    mapstruct/mapstruct

    7,663عرض على GitHub↗

    MapStruct is an annotation processor and Java bean mapping framework that automatically generates high-performance data transfer code during the compilation process. It serves as a type-safe data mapper for converting information between different object types, specifically targeting Java beans and records. The project replaces manual boilerplate code by using Java interfaces as blueprints to generate concrete implementation classes. This approach ensures type safety and minimizes manual getter and setter calls by producing direct method calls during compilation. The framework handles data t

    Implements a Java annotation processor to generate mapping code during the compilation process.

    Javaannotation-processorbean-mappingjava
    عرض على GitHub↗7,663
  • swagger-api/swagger-coreالصورة الرمزية لـ swagger-api

    swagger-api/swagger-core

    7,528عرض على GitHub↗

    swagger-core is a set of libraries for parsing, generating, and serializing OpenAPI specifications to automate REST API documentation. It provides tools to read, validate, and transform JSON or YAML specifications into programmable objects, as well as a generator that scans source code and annotations to create formal technical descriptions of an API. The project enables bi-directional specification serialization, allowing in-memory API definitions to be converted between native language objects and structured files. It uses a plugin-based scanning mechanism and annotation-driven generation t

    Generates OpenAPI specification documents by scanning resource classes or converting models into schemas.

    Javahacktoberfestjavaopen-source
    عرض على GitHub↗7,528
  • fastapi-users/fastapi-usersالصورة الرمزية لـ fastapi-users

    fastapi-users/fastapi-users

    6,172عرض على GitHub↗

    FastAPI Users is a ready-to-use authentication library for FastAPI applications that handles user registration, login, password reset, email verification, and profile retrieval with minimal configuration. It provides a complete authentication system built around pluggable backends and transports, supporting JWT tokens, database sessions, and Redis-based token storage that can be combined in a single route. The library distinguishes itself through its modular architecture, offering router-based module composition that organizes authentication flows as independent FastAPI routers for registrati

    Generates complete OpenAPI docs for all authentication endpoints, even with multiple backends.

    Python
    عرض على GitHub↗6,172
  • samchon/typiaالصورة الرمزية لـ samchon

    samchon/typia

    5,837عرض على GitHub↗

    Typia is a compile-time code generator that transforms TypeScript type annotations into runtime validation, serialization, and schema functions without requiring decorators or separate schema files. It generates optimized validation and serialization code during TypeScript compilation, producing dedicated functions for each type that eliminate runtime schema objects for faster execution. The project extends this core capability into several integrated areas. It generates fully typed client SDKs from NestJS controller source code, keeping server and client types synchronized automatically. It

    Produces OpenAPI and JSON Schema definitions directly from TypeScript types at compile time for API documentation and tool integration.

    Go
    عرض على GitHub↗5,837
  • databricks/scala-style-guideالصورة الرمزية لـ databricks

    databricks/scala-style-guide

    2,784عرض على GitHub↗

    Designs Scala APIs that are accessible and idiomatic for Java callers through overloading and abstract classes.

    عرض على GitHub↗2,784
  1. Home
  2. Programming Languages & Runtimes
  3. Java Annotation Processors

استكشف الوسوم الفرعية

  • Annotation Processor Frameworks1 وسم فرعيToolkits and utilities designed to simplify the development of custom annotation processors. **Distinct from Java Annotation Processors:** Provides the plumbing and utilities to build processors, rather than being a specific processor for a domain.
  • Jakarta AnnotationsStandard Jakarta EE annotations for resource injection, security roles, and persistence mappings. **Distinct from Java Annotation Processors:** Distinct from Java Annotation Processors: focuses on the Jakarta EE standard annotations themselves, not compile-time code generation.
  • OpenAPI Schema Generators3 وسوم فرعيةAnnotation processors that generate OpenAPI specification documents at compile time from source code annotations. **Distinct from Java Annotation Processors:** Distinct from general Java Annotation Processors: specifically generates OpenAPI schemas, not arbitrary boilerplate code.
  • RecyclerView Model GeneratorsGenerates RecyclerView adapter model classes at compile time from annotated custom views, data binding layouts, or view holders. **Distinct from Java Annotation Processors:** Distinct from general Java Annotation Processors: this is a specific annotation processor for generating RecyclerView models, not a general-purpose processor framework.
  • Varargs Annotation PracticesPractices for annotating vararg methods to generate Java-compatible array overloads for cross-language usability. **Distinct from Java Annotation Processors:** Distinct from Java Annotation Processors: focuses on a specific annotation practice for varargs, not general annotation processing.
  • Varargs Annotation for Java Interop1 وسم فرعيUse of @scala.annotation.varargs to make Scala vararg methods callable from Java by generating a Java-compatible bridge method. **Distinct from Java Annotation Processors:** Distinct from Java Annotation Processors: focuses on a specific Scala annotation for Java interop, not on general annotation processing.