1
有一個在谷歌吉斯一種方便的方法,它允許在一個呼叫屬性的綁定:什麼是Guice的Names.bindProperties(Binder,屬性)等效的CDI(焊接)?
Names.bindProperties(binder(), myProperties);
然後將它們注射用註釋:
@Inject
@Named("my.properties.server.url")
private String serverUrl;
是否有CDI等效的方法(通過焊接實現)還是更好的東西?