我想了解初始化JOOQ生成的DAO的最佳实践。现在,我正在使用以下方法来启动JOOQ生成的DAO。在下面的例子中,StudentDao是JOOQ生成的。
public class ExtendedStudentDAO extends StudentDao {
public ExtendedStudentDAO () {
super();
}
public ExtendedStudentDAO (Connection connection) {
Configuration configuration = DSL.using(connection,
JDBCUtils.dialect(connection)).configuration();
this.setConfiguration(configuration);
}
//adding extra methods to DAO using DSL
public String getStudentName(Long ID)
throws SQLException {
try (Connection connection = ServiceConnectionManager.getConnection()) {
DSLContext dslContext = ServiceConnectionManager
.getDSLContext(connection);
Record1<String> record = dslContext
.select(Student.Name)
.from(Student.Student)
.where(Student.ID
.equal(ID)).fetchOne();
if (record != null) {
return record.getValue(Student.Name);
}
return null;
}
}
}
我怀疑使用上面的DAO我的示例代码如下。
try (Connection connection = ServiceConnectionManager.getConnection()) {
ExtendedStudentDAO extendedStudentDAO =new ExtendedStudentDAO(connection);
Student stud=new Student();
.....
....
//insert method is from Generated DAO
extendedStudentDAO.insert(stud);
//this method is added in extended class
extendedStudentDAO.getStudentName(12);
}
答案 0 :(得分:1)
有两种方法可以看待这种初始化:
您的方法是正确的,但可能会被认为有点沉重。您每次需要时都会创建一个新的DAO
。
从jOOQ 3.7开始,DAO
是一个非常轻量级的对象。包裹Configuration
的{{1}}也是如此。
一旦您的项目发展(或在未来的jOOQ版本中),这可能不再适用,因为Connection
初始化(或jOOQ的Configuration
初始化)可能会变得更重。
但这是一个小风险,而且很容易解决:
DAO
或DAO
引用大多数人只为他们的应用程序设置一个jOOQ Configuration
,并且在服务的某个位置只设置一个Configuration
实例(每DAO
类型)。在这种情况下,您的DAO
不得共享Configuration
引用,而是通过ConnectionProvider
SPI向jOOQ提供Connection
。在你的情况下,这似乎微不足道:
Connection