Java meets TypeScript: building modern web apps with full-stack type safety by Marcus Hellberg

Поділитися
Вставка
  • Опубліковано 31 жов 2024

КОМЕНТАРІ • 11

  • @ankeshkapil3129
    @ankeshkapil3129 Рік тому +2

    I have been using vaadin since 1 year and i can say that it's the best ui framework from the technical debt point of view

    • @orhn
      @orhn Рік тому

      Do you use Flow or Hilla?

  • @JatanPorecha
    @JatanPorecha 2 роки тому +1

    Very good presentation and an excellent solution to build moderate scale applications rapidly.

  • @kitkarson4226
    @kitkarson4226 2 роки тому +2

    This is a great presentation 👍.

  • @rsrini7
    @rsrini7 2 роки тому

    How well it can integrate with React JS?

  • @KangoV
    @KangoV 2 роки тому +2

    Biggest sin that causes many of the problems that this framework is trying to solve is passing an Entity object as a return on a REST call. This is hugely wrong. Entity objects should not pollute the domain of the application. The objects should be copied out to other objects which represents the model of the external API. This is littered through most Spring examples though.

    • @ankeshkapil3129
      @ankeshkapil3129 Рік тому +3

      That is not the problem of framework. You need to take some time from your busy schedule to refractor your code. DDD is not framework dependent.

    • @orhn
      @orhn Рік тому +1

      You can just map entity to dto and return dto. That simple

    • @KangoV
      @KangoV Рік тому +2

      @@orhn Infrastructure entities should not be passed to the service layer.

    • @orhn
      @orhn Рік тому +2

      @@KangoV Agreed

    • @khaledabd7209
      @khaledabd7209 Рік тому

      DDD, ubiquitous language, Service, Value Type, Entity, 1455 useless classes.