我的问题归结为使用带有两个字符串参数的@Assisted到工厂。问题是因为Guice将类型视为参数的识别机制,两个参数都是相同的,我得到了一个配置错误。
一些代码:
public class FilePathSolicitingDialog {
//... some fields
public static interface Factory {
public FilePathSolicitingDialog make(Path existingPath,
String allowedFileExtension,
String dialogTitle);
}
@Inject
public FilePathSolicitingDialog(EventBus eventBus,
SelectPathAndSetTextListener.Factory listenerFactory,
FilePathDialogView view,
@Assisted Path existingPath,
@Assisted String allowedFileExtension,
@Assisted String dialogTitle) {
//... typical ctor, this.thing = thing
}
// ... methods
}
问题在于双字符串参数。
我尝试使用单独的@Named("酌情")注释标记每个字符串,但这只会导致更多配置错误。从这些错误的声音来看,他们不想在工厂类上绑定注释,所以我没有尝试过自定义绑定注释。
简单而嘈杂的解决方案是创建一个简单的参数类来包含这三个辅助值,并简单地注入:
public static class Config{
private final Path existingPath;
private final String allowedFileExtension;
private final String dialogTitle;
public Config(Path existingPath, String allowedFileExtension, String dialogTitle){
this.existingPath = existingPath;
this.allowedFileExtension = allowedFileExtension;
this.dialogTitle = dialogTitle;
}
}
public static interface Factory {
public FilePathSolicitingDialogController make(Config config);
}
@Inject
public FilePathSolicitingDialogController(EventBus eventBus,
SelectPathAndSetTextListener.Factory listenerFactory,
FilePathDialogView view,
@Assisted Config config) {
//reasonably standard ctor, some this.thing = thing
// other this.thing = config.thing
}
}
这可行,并且很可能没有错误但是很吵。摆脱嵌套静态类的一些方法会很好。
感谢您的帮助!
答案 0 :(得分:28)
查看this documentation(之前here):
使参数类型不同
工厂方法参数的类型必须是不同的。使用 多个相同类型的参数,使用命名的
@Assisted
注释 消除参数的歧义。名称必须适用于 工厂方法的参数:public interface PaymentFactory { Payment create( @Assisted("startDate") Date startDate, @Assisted("dueDate") Date dueDate, Money amount); }
...以及具体类型的构造函数参数:
public class RealPayment implements Payment { @Inject public RealPayment( CreditService creditService, AuthService authService, @Assisted("startDate") Date startDate, @Assisted("dueDate") Date dueDate, @Assisted Money amount) { ... } }