awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoAcerca deCómo clasificamosPrensaServidor MCP
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
fuzhengwei avatar

fuzhengwei/small-spring

0
View on GitHub↗
4,899 estrellas·1,428 forks·Java·Apache-2.0·6 vistas

Small Spring

Small-Spring es una implementación simplificada en Java del framework Spring, diseñada para estudiar la arquitectura interna de los contenedores de inversión de control y los frameworks de inyección de dependencias. Funciona como un contenedor de beans que gestiona el ciclo de vida de los objetos y resuelve dependencias mediante la instanciación automatizada y la inyección de propiedades.

El proyecto implementa un mecanismo para interceptar llamadas a métodos mediante proxies dinámicos para soportar la programación orientada a aspectos. Separa las preocupaciones transversales de la lógica de negocio envolviendo objetos objetivo para modificar la ejecución de métodos.

El sistema cubre el descubrimiento de componentes mediante el escaneo del classpath y la carga de recursos externos, incluyendo el análisis de configuraciones XML. Incluye gestión del contexto de la aplicación, control del alcance de los beans y un sistema de despacho de eventos basado en el patrón observador para manejar eventos del sistema y hooks de ciclo de vida.

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.

Historial de estrellas

Gráfico del historial de estrellas de fuzhengwei/small-springGráfico del historial de estrellas de fuzhengwei/small-spring

Búsqueda con IA

Explora más repositorios increíbles

Describe lo que necesitas en lenguaje sencillo: la IA clasifica miles de proyectos open-source curados por relevancia.

Start searching with AI

Alternativas open-source a Small Spring

Proyectos open-source similares, clasificados según cuántas características comparten con Small Spring.
  • derekyrc/mini-springAvatar de DerekYRC

    DerekYRC/mini-spring

    6,360Ver en 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
    Ver en GitHub↗6,360
  • code4craft/tiny-springAvatar de code4craft

    code4craft/tiny-spring

    4,089Ver en 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
    Ver en GitHub↗4,089
  • xuchengsheng/spring-readingAvatar de xuchengsheng

    xuchengsheng/spring-reading

    9,921Ver en 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
    Ver en GitHub↗9,921
  • google/guiceAvatar de google

    google/guice

    12,734Ver en 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
    Ver en GitHub↗12,734
Ver las 30 alternativas a Small Spring→

Preguntas frecuentes

¿Qué hace fuzhengwei/small-spring?

Small-Spring es una implementación simplificada en Java del framework Spring, diseñada para estudiar la arquitectura interna de los contenedores de inversión de control y los frameworks de inyección de dependencias. Funciona como un contenedor de beans que gestiona el ciclo de vida de los objetos y resuelve dependencias mediante la instanciación automatizada y la inyección de propiedades.

¿Cuáles son las características principales de fuzhengwei/small-spring?

Las características principales de fuzhengwei/small-spring son: 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.

¿Qué alternativas de código abierto existen para fuzhengwei/small-spring?

Las alternativas de código abierto para fuzhengwei/small-spring incluyen: 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…