gpt4 book ai didi

java - Guice数据库工厂

转载 作者:行者123 更新时间:2023-11-30 22:19:40 25 4
gpt4 key购买 nike

我有一个 Java 项目,我需要实现 Guice。

我有一个模块化项目,因此我可以轻松地在数据库之间切换。为此,我有如下所示的 DBConnection 工厂:

    public abstract class DBConnectionFactory {
// List of DAO types supported by the factory
public static final int MYSQL = 1;
public static final int ORACLE = 2;

public abstract FilterDAO getFilterDAO();
public abstract PhotoDAO getPhotoDAO();
public abstract SetDAO getSetDAO();

public static DBConnectionFactory getDBConnectionFactory(int whichFactory) {
switch (whichFactory) {
case MYSQL:
return new MySQLFactory();
case ORACLE:
return new OracleFactory();
default:
return null;
}
}
}

工厂返回一个像这样查找 MySQL 的连接:

  public class MySQLFactory extends DBConnectionFactory {
public static final String DRIVER= "com.mysql.jdbc.Driver";
public static final String DBURL= "jdbcurl";
private static final String PASSWORD = "password";
private static final String USERNAME = "username";

// method to create MySQL connection
public static Connection createConnection() {
try {
// This will load the MySQL driver, each DB has its own driver
Class.forName(DRIVER);
Connection connect = DriverManager.getConnection(DBURL, USERNAME, PASSWORD);
return connect;
} catch (SQLException e) {
e.printStackTrace();
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
return null;
}
public FilterDAO getFilterDAO() { return new MySQLFilterDAO(); }
public PhotoDAO getPhotoDAO() {
return new MySQLPhotoDAO();
}
public SetDAO getSetDAO() {
return new MySQLSetDAO();
}
}

在我的 ServletController 中,我有这段代码来建立连接:

// Create a DAO
private DBConnectionFactory MySQLFactory = DBConnectionFactory.getDBConnectionFactory(DBConnectionFactory.MYSQL);

@Override
public void init(){
photoDAO = MySQLFactory.getPhotoDAO();
}

我正试图摆脱工厂并使用 Guice,但我不知道从哪里开始。提前致谢!

最佳答案

扩展我的评论并提供一个更好的例子。这假定了游戏框架,但原理应该完全相同。

使用 Guice 时,您需要做的第一件事是将实现绑定(bind)到接口(interface)。例如,我需要一个 FlagDAO

public interface FlagDAO {
public Flag getByName(String name) throws FlagNotFoundException;
}

现在我有几个实现,我不会完整地展示代码:

// This one is used in production/development
public class FlagDAOEbean implements FlagDAO {
// Some code
}

// This one is used for testing
public class FlagDAOInMemory implements FlagDAO { {
// Some code
}

在其他一些服务中使用FlagDAO。此 SomethingUsingFlagDAO 类也必须通过 Guice 构造,以便注入(inject)正确的值

public class SomethingUsingFlagDAO {
@Inject
public SomethingUsingFlagDAO(FlagDAO flagDAO) {
}
}

现在 play 框架使用模块在应用程序启动时绑定(bind)某些东西。我在测试中禁用了这个模块,但代码在开发和生产环境中运行。

public class DAOModule extends AbstractModule {
public void configure() {
bind(FlagDAO.class).to(FlagDAOEbean.class);
bind(SomethingUsingFlagDAOInterface.class).to(SomethingUsingFlagDAO.class);
}
}

我的测试用例中有这段代码。请注意,唯一真正不同的是 FlagDAO 实现绑定(bind)到 Guice:

public class FlagsTest extends WithApplication {

private SomethingUsingFlagDAO something;

@Before
public void setUp() {
Injector injector = this.provideApplication().injector();
this.something = injector.instanceOf(SomethingUsingFlagDAO.class);
}

@Override
protected Application provideApplication() {
Application application = new GuiceApplicationBuilder()
.in(new Environment(new File("./"), this.getClass().getClassLoader(), Mode.TEST))
.bindings(bind(FlagDAO.class).to(FlagDAOInMemory.class))
.bindings(bind(SomethingUsingFlagDAOInterface.class).to(SomethingUsingFlagDAO.class))
.build();

return application;
}
}

因此,根据我们是否处于开发/生产/测试环境中,使用不同的 DAO 实现而不实际改变任何工作方式。没有 if (application.isTesting()) 检查它们不应该出现的位置。


在您的情况下,您可以想象一个 FlagDAOOracleFlagDOAEbeanFlagDAOInMemory 一起像这样绑定(bind):

public class DAOModule extends AbstractModule {
public void configure() {
if(weNeedOracle) {
bind(FlagDAO.class).to(FlagDAOOracle.class);
} else {
bind(FlagDAO.class).to(FlagDAOMysql.class);
}
}
}

关于java - Guice数据库工厂,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37003694/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com