我有以下问题: 例如:
jooq是否提供类似mybatis类型的转换机制,而不是每次我需要手动转换时。例如,int转换为Byte。 Long []进入UInteger等等。我不知道如何处理转换类型,可以给我一个详细的解决方案。
代码生成工具如下:
public static void main(String[] args) throws Exception {
Configuration configuration = new Configuration()
.withJdbc(new Jdbc()
.withDriver("com.mysql.jdbc.Driver")
.withUrl("jdbc:mysql://localhost:3306/51unboxdb")
.withUser("root")
.withPassword("root")
)
.withGenerator(
new Generator()
.withName("org.jooq.util.JavaGenerator")
.withGenerate(new Generate()
.withPojos(true)
.withImmutablePojos(true)
.withInterfaces(true)
.withDaos(true)
.withSpringAnnotations(true)
.withJavaTimeTypes(true)
)
.withDatabase(new Database()
.withName("org.jooq.util.mysql.MySQLDatabase")
.withIncludes(".*")
.withExcludes("")
.withDateAsTimestamp(true)
.withInputSchema("51unboxdb")
)
.withTarget(new Target()
.withPackageName("com.chunfytseng.unbox.jooq")
.withDirectory("src/main/java")
)
);
GenerationTool.generate(configuration);
}
数据库中有许多表。当您修改表的属性然后覆盖新生成的代码中的现有代码时,它会让我非常麻烦。我可以指定更新表还是排除某些表?不是每次构建它都会覆盖现有代码。
答案 0 :(得分:0)
至少有两种方法可以解决这个问题
代码生成器支持名为type rewriting的功能,您可以在其中指定匹配所有相关列名和/或数据类型的正则表达式,其生成的类型应在您的情况下重写为BIGINT
(因为您想使用long
而不是UInteger
。只需添加:
...
.withDatabase(new Database()
...
.withForcedTypes(new ForcedType()
.withName("BIGINT")
.withExpression("(?i:.*\.USER\.ID)")
)
...
)
...
jOOQ的自动转换实用程序称为org.jooq.tools.Convert
。它已经涵盖了各种各样的自动类型转换,例如:如您所示,在不同的已知数字类型之间。还有很多便利API,例如您可以将所需类型的Class引用传递给fetch()方法,以获得此类型的结果。