I am writing simple blog web application using Spring MVC framework. I am willing to add DTO layer to my app.
DTO
I decided to use ModelMapper framework for con
since you want to convert Entity to Dto, you can try the following one
List entityToDto = modelMapper.map(postEntity, new TypeToken>(){}.getType());