65

我有为报告准备数据的 DataPrepareService,我有一个带有报告类型的 Enum,我需要将 ReportService 注入 Enum 或从 enum 访问 ReportService。

我的服务:

@Service
public class DataPrepareService {
    // my service
}

我的枚举:

public enum ReportType {

    REPORT_1("name", "filename"),
    REPORT_2("name", "filename"),
    REPORT_3("name", "filename")

    public abstract Map<String, Object> getSpecificParams();

    public Map<String, Object> getCommonParams(){
        // some code that requires service
    }
}

我试着用

@Autowired
DataPrepareService dataPrepareService;

,但它没有工作

如何将我的服务注入枚举?

4

8 回答 8

77
public enum ReportType {

    REPORT_1("name", "filename"),
    REPORT_2("name", "filename");

    @Component
    public static class ReportTypeServiceInjector {
        @Autowired
        private DataPrepareService dataPrepareService;

        @PostConstruct
        public void postConstruct() {
            for (ReportType rt : EnumSet.allOf(ReportType.class))
               rt.setDataPrepareService(dataPrepareService);
        }
    }

[...]

}

如果您将内部类更改为静态,那么weekens 的答案有效,这样春天就可以看到它

于 2014-01-14T17:21:17.627 回答
15

也许是这样的:

public enum ReportType {
    @Component
    public class ReportTypeServiceInjector {
        @Autowired
        private DataPrepareService dataPrepareService;

        @PostConstruct
        public void postConstruct() {
            for (ReportType rt : EnumSet.allOf(ReportType.class))
               rt.setDataPrepareService(dataPrepareService);
        }
    }

    REPORT_1("name", "filename"),
    REPORT_2("name", "filename"),
    ...
}
于 2013-05-01T13:02:22.193 回答
2

您可能还想探索另一种方法。但是,不是将 abean注入其中,而是将enumabeanenum

假设你有一个枚举WidgetTypeWidget

public enum WidgetType {
  FOO, BAR;
}

public class Widget {

  WidgetType widgetType;
  String message;

  public Widget(WidgetType widgetType, String message) {
    this.widgetType = widgetType;
    this.message = message;
  }
}

并且您想Widget使用 FactoryBarFactoryFooFactory

public interface AbstractWidgetFactory {
  Widget createWidget();
  WidgetType factoryFor();
}

@Component
public class BarFactory implements AbstractWidgetFactory {
  @Override
  public Widget createWidget() {
    return new Widget(BAR, "A Foo Widget");
  }
  @Override
  public WidgetType factoryFor() {
    return BAR;
  }
}

@Component
public class FooFactory implements AbstractWidgetFactory {
  @Override
  public Widget createWidget() {
    return new Widget(FOO, "A Foo Widget");
  }
  @Override
  public WidgetType factoryFor() {
    return FOO;
  }
}

WidgetService是大部分工作发生的地方。在这里,我有一个简单的AutoWired字段,可以跟踪所有已注册的WidgetFactories。作为一项postConstruct操作,我们创建枚举和关联工厂的映射。

现在客户端可以注入WidgetService类并获取给定枚举类型的工厂

@Service
public class WidgetService {

  @Autowired
  List<AbstractWidgetFactory> widgetFactories;

  Map<WidgetType, AbstractWidgetFactory> factoryMap = new HashMap<>();

  @PostConstruct
  public void init() {
    widgetFactories.forEach(w -> {
      factoryMap.put(w.factoryFor(), w);
    });
  }

  public Widget getWidgetOfType(WidgetType widgetType) {
    return factoryMap.get(widgetType).createWidget();
  }

}
于 2018-09-08T05:50:39.747 回答
1

很难控制 spring 容器在枚举实例化时已经启动并运行(如果您在测试用例中有一个具有这种类型的变量,您的容器通常不会存在,即使 aspectj 自动装配也不会'没有帮助)。我建议只让 dataprepare-service 或其他东西为您提供带有枚举参数的查找方法的特定参数。

于 2013-05-01T14:54:15.000 回答
1

Enums 是静态的,因此您必须找出一种从静态上下文访问 bean 的方法。

您可以创建一个名为的类ApplicationContextProvider来实现该ApplicationContextAware接口。

import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;

public class ApplicationContextProvider implements ApplicationContextAware{

 private static ApplicationContext appContext = null;

 public static ApplicationContext getApplicationContext() {
   return appContext;
 }

 public void setApplicationContext(ApplicationContext appContext) throws BeansException {
   this.appContext = appContext;
 }
}

然后将此添加到您的应用程序上下文文件中:

<bean id="applicationContextProvider" class="xxx.xxx.ApplicationContextProvider"></bean>

之后,您可以像这样以静态方式访问应用程序上下文:

ApplicationContext appContext = ApplicationContextProvider.getApplicationContext();
于 2016-08-23T09:54:10.537 回答
0

我认为这是你需要的

public enum MyEnum {
    ONE,TWO,THREE;
}

像往常一样自动装配枚举

@Configurable
public class MySpringConfiguredClass {

          @Autowired
      @Qualifier("mine")
          private MyEnum myEnum;

}

这是诀窍,使用 factory-method="valueOf" 并确保 lazy-init="false"

所以容器预先创建了bean

<bean id="mine" class="foo.bar.MyEnum" factory-method="valueOf" lazy-init="false">
    <constructor-arg value="ONE" />
</bean>

你就完成了!

于 2017-02-27T10:19:47.337 回答
-1

也许你可以使用这个解决方案;

public enum ChartTypes {
AREA_CHART("Area Chart", XYAreaChart.class),
BAR_CHART("Bar Chart", XYBarChart.class),

private String name;
private String serviceName;

ChartTypes(String name, Class clazz) {
    this.name = name;
    this.serviceName = clazz.getSimpleName();
}

public String getServiceName() {
    return serviceName;
}

@Override
public String toString() {
    return name;
}
}

在另一个需要 Enum bean 的类中:

ChartTypes plotType = ChartTypes.AreaChart
Object areaChartService = applicationContext.getBean(chartType.getServiceName());
于 2018-12-06T11:58:06.880 回答
-1

只需手动将其传递给方法

public enum ReportType {

    REPORT_1("name", "filename"),
    REPORT_2("name", "filename"),
    REPORT_3("name", "filename")

    public abstract Map<String, Object> getSpecificParams();

    public Map<String, Object> getCommonParams(DataPrepareService  dataPrepareService){
        // some code that requires service
    }
}

只要您仅从托管 bean 调用该方法,您就可以将其注入这些 bean 并在每次调用时将引用传递给枚举。

于 2018-06-05T09:53:27.490 回答