Spring Tips: the Jetbrains Exposed ORM for Kotlin

Поделиться
HTML-код
  • Опубликовано: 31 май 2024
  • Hi, Spring fans! In this installment we look at the Exposed Object Relational Mapper framework for Kotlin. #Kotlin #Java #JDBC #springboot #jetbrains
  • НаукаНаука

Комментарии • 12

  • @andromadusnaruto1544
    @andromadusnaruto1544 2 месяца назад +2

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

  • @AntonArhipov
    @AntonArhipov 2 месяца назад +2

    JetBrains - capital 'B' 🙏

    • @NealeUpstone
      @NealeUpstone 2 месяца назад

      Any response on the GraalVM hints issue raised?

    • @AntonArhipov
      @AntonArhipov 2 месяца назад

      @@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

  • @antonlakida7999
    @antonlakida7999 2 месяца назад +1

    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 ...}

  • @LuisTrigueiros
    @LuisTrigueiros 2 месяца назад

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

  • @jhcao23
    @jhcao23 2 месяца назад

    Can next one talk about Exposed with coroutine?

  • @landsman737
    @landsman737 Месяц назад

    Interesting1

  • @mounirboussetta
    @mounirboussetta 2 месяца назад

    How is this Exposed compared to JdbcClient?

    • @zombi1034
      @zombi1034 2 месяца назад +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 2 месяца назад

    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