在JOOQ代码生成中排除某个表的列?

时间:2019-01-30 12:59:22

标签: java maven-plugin jooq

如何通过JOQQ代码生成排除特定表中的列? 我在maven中拥有“ jooq-codegen-maven”插件的一部分:

require('./bootstrap');

import Simplert from 'vue2-simplert-plugin'
require('vue2-simplert-plugin/dist/vue2-simplert-plugin.css')
Vue.use(Simplert)

Vue.component('example-component-name',require('./components/ExampleComponent.vue').default);

但是,这不起作用。省略“用户”。它将起作用,但随后所有表中的列都将被忽略,这不是我想要的。

1 个答案:

答案 0 :(得分:1)

您必须完全限定一个对象或完全不限定该对象。所以,写:

<excludes>fishes\.users\.(type|mark)</excludes>