Webinar: Building data-centric applications with Vaadin Flow and jOOQ

แชร์
ฝัง
  • เผยแพร่เมื่อ 4 ธ.ค. 2024

ความคิดเห็น • 5

  • @emilsommarstrom2737
    @emilsommarstrom2737 ปีที่แล้ว

    What was the name of the plugin that combines flyway and 2 other plugins to generate the jooq objects?

    • @vaadinofficial
      @vaadinofficial  ปีที่แล้ว +1

      Added the link to the description

  • @frantisekcerven8554
    @frantisekcerven8554 ปีที่แล้ว

    Hi,
    If I understand correctly, in 1st test project we generate JOOQ from sql scripts directly.
    In second "sport club" project we setup posgresql via test containers in maven, then we apply scripts on it and then generate JOOQ from it.
    What is the reason? What are cons and pros of those approaches?
    Thank you

    • @simonmartinelli
      @simonmartinelli ปีที่แล้ว +2

      HI Frantisek,
      The first example is just for demo purposes.
      You should use Testcontainers to ensure you generate the code against the real database because when generating code from DDL you cannot use all database-specific features that you may want to use.
      I recommend using the approach from the JTAF project.

    • @frantisekcerven8554
      @frantisekcerven8554 ปีที่แล้ว +1

      @@simonmartinelli thank you very much for the explanation.