Google Guice 中有一个方便的方法,它允许在一次调用中绑定属性:
Names.bindProperties(binder(), myProperties);
然后可以通过注释注入:
@Inject
@Named("my.properties.server.url")
private String serverUrl;
CDI 中是否有等效的方法(由 Weld 实现)或更好的方法?
Google Guice 中有一个方便的方法,它允许在一次调用中绑定属性:
Names.bindProperties(binder(), myProperties);
然后可以通过注释注入:
@Inject
@Named("my.properties.server.url")
private String serverUrl;
CDI 中是否有等效的方法(由 Weld 实现)或更好的方法?