英文: Validation not working in Java Spring Application 问题 API 类 @RestController @RequestMapping("...
这是一个好的做法吗?为一个模型创建许多数据传输对象(DTO)?
英文: Is it a good practice to create many DTO for a model? 问题 假设我有一个拥有许多字段的 User 类: public class User...
如何将 Hibernate 查询的结果映射到 DTO 对象?
英文: How to map results of a Hibernate Query to a DTO object? 问题 我在我的Java项目中有以下3个Hibernate实体: Company...
将处理器映射到DTO。
英文: how to map processor to dto 问题 I am building a MealPlanner application which builds up a menu of...
如何为Page<>接口创建DTO?
英文: How do I make a DTO for the Page<> interface? 问题 我正在使用Spring Boot(MVC)和Hibernate编写一个在线商店。问...
无法在Spring Boot应用程序中找到DTO。
英文: Unable to locate DTO in Spring Boot Application 问题 以下是翻译好的内容: 我已经定义了我的DTO,但仍然无法定位它。 我已经在实体包中创建了D...
Spring/Java项目层次结构:在哪里放置非模型POJO类?
英文: Spring/Java project hierarchy: Where to put none model POJO classes? 问题 FooResponse应该位于dto包中,你可以...
@MAPSTRUCT. 源参数中不存在名为 “packaging” 的属性
英文: @MAPSTRUCT. No property named "packaging" exists in source parameter(s) 问题 I am writin...
最佳方法来处理带有嵌套 JSON 的对象映射。
英文: Best Way to do Object Mapping with Nested Json 问题 public class SearchResults { private List<S...
如何避免在没有继承的情况下重复使用DTOs?
英文: How can I avoid DTOs duplication without inheritance? 问题 我正在与许多社交网络进行连接,以便在我的应用程序中进行登录。 我为每个社交网络...
4