Kar*_*tel 12 java dependency-injection guice
我一直试图让Guice工作但最终得到这个:
类必须具有一个(且只有一个)构造函数
我的界面:
public interface AddrBookStore {
public Contact getContactByKey(String key);
public void addContact(Contact c);
}
Run Code Online (Sandbox Code Playgroud)
实施:
public class RdbmsBasedAddrBookStore implements AddrBookStore {
private Connection connection;
public RdbmsBasedAddrBookStore(Connection connection) {
this.connection = connection;
}
@Override
public Contact getContactByKey(String key) throws AddrBookException
{}
@Override
public void addContact(Contact c) throws AddrBookException
{}
}
Run Code Online (Sandbox Code Playgroud)
绑定模块:
public class ABguiceConfingModule extends AbstractModule {
@Override
protected void configure() {
bind(AddrBookStore.class).to(RdbmsBasedAddrBookStore.class);
}
}
Run Code Online (Sandbox Code Playgroud)
AddrBook我注射的客户:
public class AddrBook {
private AddrBookStore store;
@Inject
public AddrBook(AddrBookStore store)
{
this.store = store;
}
... other methods;
}
Run Code Online (Sandbox Code Playgroud)
我的主要人物:
public class App
{
public static void main( String[] args ) throws Exception
{
Injector injector = Guice.createInjector(new ABguiceConfingModule() );
AddrBookStore store = injector.getInstance( AddrBookStore.class );
AddrBook book = new AddrBook(store);
AddrBookCLI cli = new AddrBookCLI(book);
cli.interact(new InputStreamReader(System.in), new OutputStreamWriter(System.out));
}}
Run Code Online (Sandbox Code Playgroud)
毕竟,我得到这个错误:
1) Could not find a suitable constructor in addrbook.store.RdbmsBasedAddrBookStore. Classes must have either one (and only one) constructor annotated with @Inject or a zero-argument constructor that is not private.
[ERROR] at addrbook.store.RdbmsBasedAddrBookStore.class(RdbmsBasedAddrBookStore.java:23)
[ERROR] at addrbook.ABguiceConfingModule.configure(ABguiceConfingModule.java:13)
Run Code Online (Sandbox Code Playgroud)
我有Spring的经验,而不是Guice.我在哪里错了?
AddrBookStore.你需要有一个绑定Connection,然后你需要使用注释构造函数@Inject.你已经设置了这个AddrBookStore类,但很明显它包含了一个Rdbms ...除了你没有设置Rdbms.
在Guice中有很多方法可以做到这一点,在这种情况下我可能会用a来做Provider<Connection>,这样你就有了一个完整的类来放置代码来激活你与数据库的连接,所以类似于:
public class ConnectionProvider implements Provider<Connection> {
public Connection get() {
// put your code that connects to the database here
}
}
Run Code Online (Sandbox Code Playgroud)
然后你的模块将是:
public class ABguiceConfingModule extends AbstractModule {
@Override
protected void configure() {
bind(AddrBookStore.class).to(RdbmsBasedAddrBookStore.class);
bind(Connection.class).toProvider(ConnectionProvider.class);
}
}
Run Code Online (Sandbox Code Playgroud)
最后你的AddrBookStore:
public class RdbmsBasedAddrBookStore implements AddrBookStore {
private Connection connection;
@Inject
public RdbmsBasedAddrBookStore(Connection connection) {
this.connection = connection;
}
@Override
public Contact getContactByKey(String key) throws AddrBookException
{}
@Override
public void addContact(Contact c) throws AddrBookException
{}
}
Run Code Online (Sandbox Code Playgroud)