Java:JSR330

来自WHY42
imported>Soleverlee2016年11月28日 (一) 01:46的版本 (以“[https://jcp.org/en/jsr/detail?id=330 JSR330]定义了Java依赖注入的标准。主要提供了一系列的定义([http://docs.oracle.com/javaee/6/api/javax/inje...”为内容创建页面)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)

JSR330定义了Java依赖注入的标准。主要提供了一系列的定义(javax.inject.*):

  • Provider<T> Provides instances of T.
  • Inject Identifies injectable constructors, methods, and fields.
  • Named String-based qualifier.
  • Qualifier Identifies qualifier annotations.
  • Scope Identifies scope annotations.
  • Singleton Identifies a type that the injector only instantiates once.

@Inject

@Named

@Singleton

@Qualifier

@Scope

Provider<T>