在我们的项目中,concepts
在配置文件中定义。举个例子:
<concepts>
<concept name="person">
<property name="age" type="integer"/>
...
</concept>
...
</concepts>
虽然这与SQL没什么关系,但是这个配置文件碰巧可以映射到SQL表,列,......
从这个配置文件开始,我需要做两件事:
CREATE TABLE person ( ... )
)。我想在这个项目中开始使用jOOQ。 jOOQ是否支持不从现有数据库启动的任何类型的生成(SQL创建脚本及其POJO,表,...)?我查看了文档,但找不到多少。
如果没有,我正在考虑两种选择:
或
虽然我认为第一个选项需要更多努力,但目前我还是有利,因为第二个选项中的第3步可能会导致信息丢失。
答案 0 :(得分:2)
这显然可以通过XSLT来解决
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<result>
<xsl:apply-templates select="concepts/concept"/>
</result>
</xsl:template>
<xsl:template match="concept">
<xsl:text>CREATE TABLE </xsl:text>
<xsl:value-of select="@name"/>
<xsl:text>(</xsl:text>
<xsl:apply-templates select="property"/>
<xsl:text>
);
</xsl:text>
</xsl:template>
<xsl:template match="property">
<xsl:choose>
<xsl:when test="position() > 1">
<xsl:text>
, </xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>
</xsl:text>
</xsl:otherwise>
</xsl:choose>
<xsl:value-of select="@name"/>
<xsl:text> </xsl:text>
<xsl:value-of select="@type"/>
</xsl:template>
</xsl:stylesheet>
jOOQ-meta支持使用XMLDatabase
<configuration>
<generator>
<database>
<name>org.jooq.util.xml.XMLDatabase</name>
<properties>
<property>
<key>dialect</key>
<value>ORACLE</value>
</property>
<property>
<key>xml-file</key>
<value>src/main/resources/concepts-transformed.xml</value>
</property>
</properties>
只需将您的XML文件转换为以下格式: http://www.jooq.org/xsd/jooq-meta-3.5.4.xsd
...例如使用以下XSLT:
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:variable name="schema" select="'MY_SCHEMA'"/>
<xsl:template match="/">
<information_schema xmlns="http://www.jooq.org/xsd/jooq-meta-3.5.4.xsd">
<schemata>
<schema>
<schema_name><xsl:value-of select="$schema"/></schema_name>
</schema>
</schemata>
<tables>
<xsl:apply-templates select="concepts/concept"/>
</tables>
<columns>
<xsl:apply-templates select="concepts/concept/property"/>
</columns>
</information_schema>
</xsl:template>
<xsl:template match="concept">
<table>
<schema_name><xsl:value-of select="$schema"/></schema_name>
<table_name><xsl:value-of select="@name"/></table_name>
</table>
</xsl:template>
<xsl:template match="property">
<column>
<schema_name><xsl:value-of select="$schema"/></schema_name>
<table_name><xsl:value-of select="../@name"/></table_name>
<column_name><xsl:value-of select="@name"/></column_name>
<data_type><xsl:value-of select="@type"/></data_type>
</column>
</xsl:template>
</xsl:stylesheet>