Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for inyectables (0.09 seconds)

  1. docs/en/docs/tutorial/dependencies/index.md

    # Dependencies { #dependencies }
    
    **FastAPI** has a very powerful but intuitive **<dfn title="also known as components, resources, providers, services, injectables">Dependency Injection</dfn>** system.
    
    It is designed to be very simple to use, and to make it very easy for any developer to integrate other components with **FastAPI**.
    
    ## What is "Dependency Injection" { #what-is-dependency-injection }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 9.5K bytes
    - Click Count (0)
  2. api/maven-api-di/src/main/java/org/apache/maven/di/tool/package-info.java

     * which processes classes annotated with {@link org.apache.maven.api.di.Named} and creates an index file
     * that allows for efficient discovery of injectable components at runtime.
     * <p>
     * The generated index is stored at {@code META-INF/maven/org.apache.maven.api.di.Inject} and contains
     * the fully qualified names of all classes annotated with {@code @Named}.
     *
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Apr 03 13:33:59 GMT 2025
    - 1.5K bytes
    - Click Count (0)
  3. docs/zh/docs/tutorial/dependencies/index.md

    你从不会直接调用这些函数。它们由你的框架(此处为 **FastAPI**)调用。
    
    通过依赖注入系统,你还可以告诉 **FastAPI**,你的*路径操作函数*还“依赖”某些应在*路径操作函数*之前执行的内容,**FastAPI** 会负责执行它并“注入”结果。
    
    “依赖注入”的其他常见术语包括:
    
    * 资源(resources)
    * 提供方(providers)
    * 服务(services)
    * 可注入(injectables)
    * 组件(components)
    
    ## **FastAPI** 插件 { #fastapi-plug-ins }
    
    可以使用**依赖注入**系统构建集成和“插件”。但实际上,根本**不需要创建“插件”**,因为通过依赖项可以声明无限多的集成与交互,使其可用于*路径操作函数*。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 8.7K bytes
    - Click Count (0)
Back to Top