我在 CDI 中创建了一个自定义范围。
@NormalScope(passivating = false)
@Retention(RetentionPolicy.RUNTIME) @Target({ElementType.TYPE,ElementType.METHOD,ElementType.FIELD})
@Inherited
public @interface MyScope { }
仅当我beans.xml
在部署中使用时才有效。这是必须的吗?
我在 CDI 中创建了一个自定义范围。
@NormalScope(passivating = false)
@Retention(RetentionPolicy.RUNTIME) @Target({ElementType.TYPE,ElementType.METHOD,ElementType.FIELD})
@Inherited
public @interface MyScope { }
仅当我beans.xml
在部署中使用时才有效。这是必须的吗?