GinMapProvider堆栈溢出



我遇到堆栈溢出,但我想我已经解决了这个问题。问题是在绑定我的面板小部件时递归注入。我遇到的问题是,我的PanelWidget将Map作为一个参数。问题是,这会产生一个无限循环。

GinMapProvider

    GinMapBinder<String, IDashboardWidget> mapBinder = GinMapBinder
            .newMapBinder(binder(), String.class, IDashboardWidget.class);
    mapBinder.addBinding(IGaugeWidgetModel.class.getName()).to(MockGaugeWidget.class);
    mapBinder.addBinding(IPlotWidgetModel.class.getName()).to(PlotWidget.class);
    mapBinder.addBinding(ITableWidgetModel.class.getName()).to(TableWidget.class);
    mapBinder.addBinding(IPanelWidgetModel.class.getName()).to(PanelWidget.class);

如果我删除Map<String, IDashboardWidget>,问题当然会消失。

PanelWidget类

@Inject
public PanelWidget(final EventBus eventBus, final Resources resources, Map<String, IDashboardWidget> widgetProvider) {
    super(eventBus, resources);
    this.widgetProvider = widgetProvider;
    initWidget(GWT.<Binder> create(Binder.class).createAndBindUi(this));
    widgetsPanel.getElement().getStyle().setPosition(Position.RELATIVE);
    this.addDomHandler(widgetSelectedHandler, ClickEvent.getType());
}

我也尝试过,并注入了WidgetFactory类,但这也没有解决我的问题。我曾希望创建一个singleton可以阻止它重新创建绑定。

@Inject
@Provides
@Singleton
WidgetFactory widgetFactory(Map<String, IDashboardWidget> widgetProvider) {
    return new WidgetFactory(widgetProvider);
}

顺便说一句,我在GWTTestCase中运行这个,但我认为这没有什么区别。

您可能有循环依赖关系,特别是在映射中的一个东西和PanelWidget之间。

考虑到您的代码(WidgetFactory)的外观,我认为您实际上可能需要Map<String, Provider<IDashboardWidget>>而不是Map<String, IDashboardWidget>。这将减少作为副作用的循环依赖。

相关内容

  • 没有找到相关文章

最新更新