Fix package tangle in jOOQ sample

Use a custom GeneratorStrategy to fix the package tangles that jOOQ
creates by default.

Fixes gh-6372
This commit is contained in:
Phillip Webb
2016-07-11 12:50:42 -07:00
parent 8b987e29c1
commit df8dfb093b
22 changed files with 915 additions and 1867 deletions

View File

@@ -30,8 +30,8 @@ import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.core.RowMapper;
import org.springframework.stereotype.Component;
import static sample.jooq.domain.tables.Author.AUTHOR;
import static sample.jooq.domain.tables.Book.BOOK;
import static sample.jooq.domain.Author.AUTHOR;
import static sample.jooq.domain.Book.BOOK;
@Component
public class JooqExamples implements CommandLineRunner {

View File

@@ -0,0 +1,33 @@
/*
* Copyright 2012-2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package sample.jooq.util;
import org.jooq.util.DefaultGeneratorStrategy;
import org.jooq.util.Definition;
/**
* Custom {@link DefaultGeneratorStrategy} that doesn't produce tangled packages. Too
* simple for general use but solves false flags for our build.
*/
public class TangleFreeGeneratorStrategy extends DefaultGeneratorStrategy {
@Override
public String getJavaPackageName(Definition definition, Mode mode) {
return getTargetPackage();
}
}