我在 jOOQ 3.13.1,dropwizard 2.0.7。为了一起制作 jOOQ 和 dropwizard,我正在使用(https://droptools.bendb.com/jooq/)。我正在使用自定义生成策略来为我的 setter 和 getter 维护驼峰式案例。名字按预期出现。
记录对象具有各自列的数据。但是,我不断从我的数据库中收到错误,我试图在非空列上设置“空”。
我仅在尝试创建新记录时才看到此问题。更新记录工作得很好。
ERROR [2021-03-18 14:58:05,363] com.bendb.dropwizard.jooq.jersey.LoggingDataAccessExceptionMapper: Error handling a request: 9f65c0316d996ebb
! org.postgresql.util.PSQLException: ERROR: null value in column "createdAt" of relation "failures" violates not-null constraint
! Detail: Failing row contains (265, null, Some callback, User account not found, null, null, null).
如果我打印记录,它看起来像这样:
+------+------+--------------+--------------------------------------------------+------------------------------+------------------------------+------+
| id|userId|action |error |createdAt |updatedAt |status|
+------+------+--------------+--------------------------------------------------+------------------------------+------------------------------+------+
|{null}|{null}|*Some callback|*User account not found|*2021-03-18 14:58:05,363|*2021-03-18 14:58:05,363|{null}|
+------+------+--------------+--------------------------------------------------+------------------------------+------------------------------+------+
我的吸气剂名称是:“getId”、“getUserId”、“getAction”、“getError”、“getCreatedAt”、“getUpdatedAt”、“getStatus”。
对于小写的列,我看不到任何问题。如果对于列名在 CamelCase 中的地方,问题。
该类看起来像:
public class FailureDao {
private final DSLContext database;
public FailureDao(DSLContext database) {
this.database = database;
}
public void storeFailure(FailureRecord failure) {
database.newRecord(FAILURES, failure).store();
}
}
对于代码生成,我正在关注这里的文档https://www.jooq.org/doc/3.13/manual/code-generation/codegen-generatorstrategy/
我的生成器类看起来像:
public class AsInDatabaseStrategy extends DefaultGeneratorStrategy {
@Override
public String getJavaIdentifier(Definition definition) {
return definition.getOutputName().toUpperCase();
}
@Override
public String getJavaSetterName(Definition definition, Mode mode) {
return "set" + StringUtils.toUC(definition.getOutputName());
}
@Override
public String getJavaGetterName(Definition definition, Mode mode) {
return "get" + StringUtils.toUC(definition.getOutputName());
}
}