Skip to content

Commit

Permalink
fj-daogen-version 1.8.3
Browse files Browse the repository at this point in the history
disable-singleton param
  • Loading branch information
fugerit79 committed Nov 10, 2024
1 parent 85fc532 commit 1c11c2b
Show file tree
Hide file tree
Showing 8 changed files with 58 additions and 76 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- quarkus-version 3.11.0
- fj-version 8.6.2
- fj-daogen-version 1.8.3

## [1.5.0] - 2024-05-05

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<skipITs>true</skipITs>
<surefire-plugin.version>3.2.5</surefire-plugin.version>
<fj-version>8.6.5</fj-version>
<fj-daogen-version>1.8.2</fj-daogen-version>
<fj-daogen-version>1.8.3</fj-daogen-version>
<build-helper-maven-plugin-version>3.4.0</build-helper-maven-plugin-version>
<gen.base.dir>${project.basedir}</gen.base.dir>
<generated.source.daogen>target/generated-sources/daogen</generated.source.daogen>
Expand Down
3 changes: 2 additions & 1 deletion src/main/daogen/daogen-config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ reference : https://marsdocs.fugerit.org/src/docs/config/config.html
default-sequence="quickstart_id"
openapi_host="http://localhost:8080"
openapi_path=""
check-empty-interface="1"
check-empty-interface="1"
disable-singleton="enabled"
jdk-target-version="17"
jee-target-mode="jakarta">

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ public class DocumentRSE extends BasicRSExtractor<ModelDocument> {

private static final long serialVersionUID = 872607081519L;

public static final DocumentRSE DEFAULT = new DocumentRSE();

@Override
public ModelDocument extractNext( ResultSet rs ) throws SQLException {
HelperDocument current = new HelperDocument();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ public class Example01RSE extends BasicRSExtractor<ModelExample01> {

private static final long serialVersionUID = 387383893717L;

public static final Example01RSE DEFAULT = new Example01RSE();

@Override
public ModelExample01 extractNext( ResultSet rs ) throws SQLException {
HelperExample01 current = new HelperExample01();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ public class MappedTableRSE extends BasicRSExtractor<ModelMappedTable> {

private static final long serialVersionUID = 324511825120L;

public static final MappedTableRSE DEFAULT = new MappedTableRSE();

@Override
public ModelMappedTable extractNext( ResultSet rs ) throws SQLException {
HelperMappedTable current = new HelperMappedTable();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ public class PersonRSE extends BasicRSExtractor<ModelPerson> {

private static final long serialVersionUID = 102069616197L;

public static final PersonRSE DEFAULT = new PersonRSE();

@Override
public ModelPerson extractNext( ResultSet rs ) throws SQLException {
HelperPerson current = new HelperPerson();
Expand Down
Loading

0 comments on commit 1c11c2b

Please sign in to comment.