Guest User

Untitled

a guest
Aug 24th, 2017
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
  2. <configuration>
  3. <!-- Configure the database connection here -->
  4. <jdbc>
  5. <driver>org.postgresql.Driver</driver>
  6. <url>jdbc:postgresql://127.0.0.1:5432/test_db</url>
  7. <user>user</user>
  8. <password>12345678</password>
  9. </jdbc>
  10.  
  11. <generator>
  12. <database>
  13. <name>org.jooq.util.postgres.PostgresDatabase</name>
  14.  
  15. <includes>.*</includes>
  16. <excludes>schema_version</excludes>
  17. <inputSchema>public</inputSchema>
  18. </database>
  19.  
  20. <!-- These properties can be added to the generate element: -->
  21. <generate>
  22. <records>true</records>
  23. <interfaces>true</interfaces>
  24. <relations>true</relations>
  25. </generate>
  26.  
  27. <target>
  28. <packageName>jooq</packageName>
  29. <directory>src/main/java</directory>
  30. </target>
  31. </generator>
  32. </configuration>
Add Comment
Please, Sign In to add comment