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

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

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
fuzhengwei avatar

fuzhengwei/small-spring

0
View on GitHub↗
4,899 نجوم·1,428 تفرعات·Java·Apache-2.0·6 مشاهدات

Small Spring

Small-Spring is a simplified Java implementation of the Spring framework designed to study the internal architecture of inversion of control containers and dependency injection frameworks. It functions as a bean container that manages object lifecycles and resolves dependencies through automated instantiation and property injection.

The project implements a mechanism for intercepting method calls using dynamic proxies to support aspect-oriented programming. It separates cross-cutting concerns from business logic by wrapping target objects to modify method executions.

The system covers component discovery through classpath scanning and external resource loading, including XML configuration parsing. It includes application context management, bean scope control, and an event dispatching system based on the observer pattern to handle system events and lifecycle hooks.

Features

  • Dependency Injection Frameworks - Implements a full dependency injection framework that automatically manages object creation and resolves component dependencies.
  • Dependency Injection - Implements a core dependency injection system to decouple software components through automated wiring.
  • Java Component Containers - Functions as a Java component container that handles the creation and management of singleton and prototype scoped objects.
  • Classpath Component Scanners - Provides automatic discovery and registration of managed beans by scanning the classpath for annotations.
  • Annotation-Based Component Scanning - Automatically detects and registers classes as managed beans by scanning packages for annotations.
  • Aspect-Oriented Programming - Implements techniques for modularizing cross-cutting concerns by intercepting method calls.
  • Aspect-Oriented Programming Frameworks - Implements a system for modularizing cross-cutting concerns using dynamic proxies and interceptors.
  • Object Lifecycle Management - Controls the creation, registration, and destruction of objects to decouple instantiation from usage.
  • Inversion-of-Control Containers - Provides an inversion-of-control container that manages bean lifecycles and resolves dependencies through automated instantiation.
  • Singleton Instance Sharing - Manages a central map of singleton instances to ensure shared object access across the dependency graph.
  • Dependency Injection Population - Uses Java reflection and metadata to automatically populate object properties with their required dependencies.
  • Method Interception Proxies - Uses dynamic proxies to intercept method calls, allowing the injection of custom behavior.
  • Spring Bean Contexts - Coordinates resource loading and object recognition within a managed bean application context.
  • External Configuration Loading - Provides mechanisms to load external configuration files for component discovery and registration.
  • Hook Registration - Implements a registration mechanism for executing custom logic during object initialization and destruction.
  • Framework Architecture Studies - Provides a simplified implementation of the Spring framework as a resource for studying IoC and DI internals.
  • Framework Implementation Studies - Provides a simplified implementation of the Spring framework specifically designed for studying the internals of IoC and DI containers.
  • Bean Scope Definitions - Defines how objects are instantiated and shared using scope definitions and factory patterns.
  • Initialization and Shutdown Hooks - Provides initialization and shutdown hooks to trigger specific methods during the application lifecycle.
  • Event Triggering - Implements mechanisms for programmatically firing events to notify registered listeners within the container.
  • Container Event Observers - Implements an observer-pattern event dispatcher to notify listeners of internal system events.
  • XML Configurations - Supports the use of external XML files to define object relationships and application settings.
  • Java Frameworks - A simplified implementation of the Spring framework for learning.

سجل النجوم

مخطط تاريخ النجوم لـ fuzhengwei/small-springمخطط تاريخ النجوم لـ fuzhengwei/small-spring

بحث بالذكاء الاصطناعي

استكشف المزيد من المستودعات الرائعة

صف ما تحتاجه بلغة بسيطة — وسيقوم الذكاء الاصطناعي بترتيب آلاف المشاريع مفتوحة المصدر المنسقة حسب الصلة.

Start searching with AI

بدائل مفتوحة المصدر لـ Small Spring

مشاريع مفتوحة المصدر مشابهة، مرتبة حسب عدد الميزات المشتركة مع Small Spring.
  • derekyrc/mini-springالصورة الرمزية لـ DerekYRC

    DerekYRC/mini-spring

    6,360عرض على GitHub↗

    mini-spring is a Java dependency injection framework and inversion of control container. It manages the full lifecycle of beans, including instantiation, property population, and scope management, while providing a system for automating the wiring of components. The project implements a Java AOP framework that uses dynamic proxies to intercept method calls for cross-cutting logic. It also functions as a Java component scanner to automatically discover and register managed objects via annotations and as a Java event bus to decouple components through a publish-subscribe multicast system. The

    Javamini-springspringspring-boot
    عرض على GitHub↗6,360
  • code4craft/tiny-springالصورة الرمزية لـ code4craft

    code4craft/tiny-spring

    4,089عرض على GitHub↗

    tiny-spring is a Java inversion of control container and aspect-oriented programming framework. It provides a system for managing object lifecycles and dependency injection to decouple application components. The project features a bytecode proxy generator that enables method interception and behavioral modification for classes that do not implement interfaces. It uses pointcut expressions to match specific classes and methods for the execution of cross-cutting logic via dynamic proxies. The framework manages singleton components and resolves object dependencies using lazy initialization. Ap

    Java
    عرض على GitHub↗4,089
  • xuchengsheng/spring-readingالصورة الرمزية لـ xuchengsheng

    xuchengsheng/spring-reading

    9,921عرض على GitHub↗

    This is a learning resource that explains the Spring Framework through source code analysis and practical examples. It covers the foundational principles of Inversion of Control and Dependency Injection, demonstrating how the IoC container manages bean definitions, dependency injection, and lifecycle callbacks. The material also explores Spring's Aspect-Oriented Programming implementation, showing how cross-cutting concerns like logging and security are handled through proxy-based weaving. The resource provides walkthroughs of Spring Boot's automatic configuration mechanism, detailing how con

    Javaannotationsawareinterfacebackenddevelopment
    عرض على GitHub↗9,921
  • google/guiceالصورة الرمزية لـ google

    google/guice

    12,734عرض على GitHub↗

    Guice is a Java dependency injection framework and component container. It automates object wiring by mapping interfaces to implementations via a central injector, removing the need for manual factory patterns and constructor calls. The framework provides specialized support for aspect-oriented programming, allowing for the interception and modification of method execution to implement shared cross-cutting concerns. It also functions as a persistence manager to coordinate transaction boundaries and manage the lifecycle of entity managers within a dependency-injected environment. Its core cap

    Java
    عرض على GitHub↗12,734
عرض جميع البدائل الـ 30 لـ Small Spring→

الأسئلة الشائعة

ما هي وظيفة fuzhengwei/small-spring؟

Small-Spring is a simplified Java implementation of the Spring framework designed to study the internal architecture of inversion of control containers and dependency injection frameworks. It functions as a bean container that manages object lifecycles and resolves dependencies through automated instantiation and property injection.

ما هي الميزات الرئيسية لـ fuzhengwei/small-spring؟

الميزات الرئيسية لـ fuzhengwei/small-spring هي: Dependency Injection Frameworks, Dependency Injection, Java Component Containers, Classpath Component Scanners, Annotation-Based Component Scanning, Aspect-Oriented Programming, Aspect-Oriented Programming Frameworks, Object Lifecycle Management.

ما هي البدائل مفتوحة المصدر لـ fuzhengwei/small-spring؟

تشمل البدائل مفتوحة المصدر لـ fuzhengwei/small-spring: derekyrc/mini-spring — mini-spring is a Java dependency injection framework and inversion of control container. It manages the full lifecycle… code4craft/tiny-spring — tiny-spring is a Java inversion of control container and aspect-oriented programming framework. It provides a system… xuchengsheng/spring-reading — This is a learning resource that explains the Spring Framework through source code analysis and practical examples. It… google/guice — Guice is a Java dependency injection framework and component container. It automates object wiring by mapping… jeffijoe/awilix — Awilix is a JavaScript dependency injection framework and inversion of control container. It provides a centralized… liangxiegame/qframework — QFramework is a Unity game architecture framework designed to separate presentation, system, and data logic. It…