Spring Tips: the Jetbrains Exposed ORM for Kotlin

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 ก.ย. 2024

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

  • @andromadusnaruto1544
    @andromadusnaruto1544 6 หลายเดือนก่อน +3

    Awesome. I'm glad Exposed is getting more light. I've been using it in Spring Boot as a replacement for Spring JPA/Hibernate.

  • @LuisTrigueiros
    @LuisTrigueiros 6 หลายเดือนก่อน

    Thank you it great, do you have the gist so that I can try to reply it in my end

  • @mounirboussetta
    @mounirboussetta 6 หลายเดือนก่อน

    How is this Exposed compared to JdbcClient?

    • @zombi1034
      @zombi1034 6 หลายเดือนก่อน +2

      JdbcClient is not an ORM so they don’t really compare. JdbcClient has a simpler and nicer to use interface than the older JdbcTemplate api. You still have to write your sql queries manually, whereas an ORM maps directly from Java (or Kotlin) objects to database entries/queries.

  • @mohammedhewedy8231
    @mohammedhewedy8231 6 หลายเดือนก่อน

    I think you trimming too much of the video. IMHO, better not to do so, so the viewer can't get lost in the middle

    • @GakisStylianos
      @GakisStylianos 5 หลายเดือนก่อน +1

      Which part was trimmed?

  • @antonlakida7999
    @antonlakida7999 6 หลายเดือนก่อน +2

    you can simplify by naming the lambda parameter explicitly, rather than doing in inside of the lambda:
    forEach { name -> ...}
    instead of
    forEach { val name = it ...}

  • @AntonArhipov
    @AntonArhipov 6 หลายเดือนก่อน +2

    JetBrains - capital 'B' 🙏

    • @NealeUpstone
      @NealeUpstone 6 หลายเดือนก่อน

      Any response on the GraalVM hints issue raised?

    • @AntonArhipov
      @AntonArhipov 6 หลายเดือนก่อน

      @@NealeUpstone, as I understand, the solution for GraalVM is there: it needs metadata configuration, either as hints or as an external configuration collected via profiling runs.
      As the issue isn't closed, the team is still looking into that

  • @jhcao23
    @jhcao23 6 หลายเดือนก่อน

    Can next one talk about Exposed with coroutine?

  • @landsman737
    @landsman737 5 หลายเดือนก่อน

    Interesting1