Kei-K23 / spring-microservices-best-practices

This is the comprehensive Microservices Architecture that implements with Spring boot 3 and other tools. This project also can be reference for starter who start working with spring boot or want to build microservices with spring ecosystem. This project contains all microservices components and apply best practices as possible.
MIT License
3 stars 0 forks source link

DTO type #2

Open voidofvanity opened 4 months ago

voidofvanity commented 4 months ago

As for dtos, you can actually use records (i have not check your whole project but they usually utilized in java 17 projects).

Kei-K23 commented 1 month ago

Thanks for your suggestions. I had some thought of using Records instead of lombok but some how I follow the old way. I will try to use Record for DTOs type as you suggest.