6

来自 Guice 背景,我知道可以使用范围从范围中播种对象值。

  scope.seed(Key.get(SomeObject.class), someObject);

我想可以通过注册一个从 中获取值的 Bean 来做到这一点AbstractBoundContext,但是仅从自定义范围中播种一个值的示例似乎很难找到。如何创建一个自定义范围来播种可以在其他地方注入的值?

编辑: 我目前正在使用以下解决方法,可以Configuration在进入范围时注入拦截器以设置,然后可以通过其线程本地提供程序注入。不过,我仍在寻找那些感觉不那么老套/与 Weld 中的范围/范围上下文系统更集成的选项。

@Singleton
public class ConfigurationProducer {

    private final InheritableThreadLocal<Configuration>  threadLocalConfiguration =
    new InheritableThreadLocal<>();

    @Produces
    @ActiveDataSet
    public ConfigurationConfiguration() {
       return threadLocalConfiguration.get()
    }

    public void setConfiguration(Configuration configuration) {
         threadLocalConfiguration.set(configuration);
    }    

}
4

1 回答 1

1

答案是使用 AfterBeanDiscovery 事件注册一个自定义 bean,如下所示:

    event.addBean()
        .createWith(ctx -> commandContext.getCurrentCommandExecution())
        .addType(CommandExecution.class)
        .addQualifier(Default.Literal.INSTANCE)
        .scope(CommandScoped.class)
        .beanClass(CommandExtension.class);

https://github.com/weld/command-context-example提供了一个非常复杂的示例

于 2019-02-13T12:28:42.873 回答