Guice:Binder#bindConstant() 和 Binder#bind() 之间的区别 ...到实例
我想问一下
bindConstant().annotatedWith(Names.named("keepAliveInterval")).to(60);
和
bind(Integer.TYPE).annotatedWith(Names.named("keepAliveInterval")).toInstance(60);
我想用Names.bindProperties(binder(),prop加载我所有的配置属性;在我的模块中,我发现它使用后者来绑定属性。
谢谢,问候
马立克