试图用Joda DateTimes生成JooQ POJOs,我遇到了一些问题。POJO使用默认的java.sql从生成器中生成。时间戳值,而不是日期时间。
代码如下。
Create Table(此处时间戳字段的名称已更改)希望确保我没有命中构建系统中的某个缓存。此名称仍应与下面的正则表达式匹配。
CREATE TABLE nonsense (
name VARCHAR(50) NOT NULL,
DATETIME_TEST TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
id UUID NOT NULL,
PRIMARY KEY(id)
);
转换类——基于文档。
public class LocalDateTimeConverter implements Converter<Timestamp, LocalDateTime> {
@Override
public LocalDateTime from(Timestamp databaseObject) {
return new LocalDateTime(databaseObject.getTime());
}
@Override
public Timestamp to(LocalDateTime dt) {
return new Timestamp(dt.toDateTime().getMillis());
}
@Override
public Class<Timestamp> fromType() {
return Timestamp.class;
}
@Override
public Class<LocalDateTime> toType() {
return LocalDateTime.class;
}
}
Jooq配置XML。基于文档(感谢您捕获我的表达式/表达式错误Luke)!
<configuration>
<generator>
<database>
<customTypes>
<customType>
<name>org.joda.time.LocalDateTime</name>
<converter>n.b.jooqJodaTime.LocalDateTimeConverter</converter>
</customType>
</customTypes>
<forcedtypes>
<forcedType>
<name>org.joda.time.LocalDateTime</name>
<expressions>.*DATETIME.*</expressions>
</forcedType>
</forcedtypes>
</database>
</generator>
</configuration>
创建POJO:
@javax.persistence.Column(name = "DATETIME_TEST", precision = 23, scale = 10)
public java.sql.Timestamp getDatetimeTest() {
return this.datetimeTest;
}
就历史背景而言,这是最初的问题。
创建表格:
CREATE TABLE nonsense (
name VARCHAR(50) NOT NULL,
TEST_DATETIME TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
id UUID NOT NULL,
PRIMARY KEY(id)
);
转换器:
package n.b.jooqJodaTime;
import org.joda.time.DateTime;
import org.jooq.Converter;
import java.sql.Timestamp;
public class DateTimeConverter implements Converter<Timestamp, DateTime> {
@Override
public DateTime from(Timestamp databaseObject) {
return new DateTime(databaseObject.getTime());
}
@Override
public Timestamp to(DateTime dt) {
return new Timestamp(dt.getMillis());
}
@Override
public Class<Timestamp> fromType() {
return Timestamp.class;
}
@Override
public Class<DateTime> toType() {
return DateTime.class;
}
}
Jooq配置:
<configuration>
<jdbc>
<url>jdbc:h2:file:build/database</url>
<driver>org.h2.Driver</driver>
<user>sa</user>
</jdbc>
<generator>
<database>
<name>org.jooq.util.h2.H2Database</name>
<inputSchema>PUBLIC</inputSchema>
<includes>.*</includes>
<customTypes>
<customType>
<name>org.joda.time.DateTime</name>
<converter>n.b.jooqJodaTime.DateTimeConverter</converter>
</customType>
</customTypes>
<forcedtypes>
<forcedType>
<name>org.joda.time.DateTime</name>
<expression>.*DATETIME.*</expression>
</forcedType>
</forcedtypes>
</database>
<generate>
<pojos>true</pojos>
<immutablePojos>true</immutablePojos>
<jpaAnnotations>true</jpaAnnotations>
<validationAnnotations>true</validationAnnotations>
<deprecated>false</deprecated>
</generate>
<target>
<packageName>n.b.c.generated.jooq</packageName>
<directory>src/main/java/</directory>
</target>
</generator>
</configuration>
结果如下:
/**
* The column <code>PUBLIC.NONSENSE.TEST_DATETIME</code>.
*/
public final org.jooq.TableField<n.b.c.generated.jooq.tables.records.NonsenseRecord,
java.sql.时间戳
我希望这个看起来像这样:
/**
* The column <code>PUBLIC.NONSENSE.TEST_DATETIME</code>.
*/
public final org.jooq.TableField<n.b.c.generated.jooq.tables.records.NonsenseRecord,
org.joda.time.日期时间
这可能是由于XML中的输入错误。(出于历史原因)应将该元素称为<代码>
<complexType name="ForcedType">
<all>
<!-- The name of the type to be forced upon various artefacts -->
<element name="name" type="string" minOccurs="1" maxOccurs="1" />
<!--
A Java regular expression matching columns, parameters, attributes,
etc to be forced to have this type
-->
<element name="expressions" type="string" minOccurs="1" maxOccurs="1" />
</all>
</complexType>
有关详细信息,请参见XSD。我认为在jOOQ 3.3中为这两个元素名创建同义词是值得的。它现在注册为#2837
还有一个打字错误
我的API定义如下: 我们使用生成代码。 生成的API参数:
问题内容: 根据我的理解和JPA批注进行提取。我希望将它们延迟加载到我的应用程序中,或者至少提示它(这是hibernate默认值)。我已经开始添加注释 例如 代替 这既乏味又容易出错。有什么方法可以在应用程序级别执行此操作吗?在persistence.xml中? 问题答案: 迄今为止,我选择让Hibernate在通过注释进行映射方面遵循JPA规范,仅仅是因为我没有收到任何使其可配置的功能请求,这令
我有两个类,其中父类在构建时需要来自子类的一些属性。有没有一种方法可以使用lombok构建器来支持这一点? Parent.java 小孩JAVA 上面的编译失败,并显示消息 错误:无法从静态上下文@SuperBuilder引用非静态方法getRequest estType()
This tells smarty what resource type to use implicitly. The default value is 'file', meaning that $smarty->display('index.tpl'); and $smarty->display('file:index.tpl'); are identical in meaning. See t
龙目岛的版本是1.18.0。 我在类级别设置了。 当我尝试为列表变量设置默认值时: 我得到一个错误: 除了自己编写生成器之外,还有其他方法吗?
我创建了一个管道,它从CodeCommit存储库获取代码,通过CodeBuild构建代码,并将代码推送到S3存储桶中。 对于我的代码构建,我使用的是AWS管理的映像。aws/codebuild/nodejs:7.0。0 如果我通过CodeBuild控制台手动启动构建并指定存储库,则在buildspec中运行以下命令时会获得存储库URL 但是如果代码构建是由推送到存储库自动触发的。CODEBUILD