spring-data-jpa 相关问题

Spring Data - JPA是Spring Data伞形项目的一部分,可以轻松实现基于JPA的存储库

JPQL无法识别列

实体: @getter @setter @noargsconstructor @实体 @ToString @dynamicupdate @Table(name =“ flow_plan_details”) 公共类流量程序扩展了基数{ @ID @generated ...

回答 1 投票 0

限制了弹簧data

我想在我的Spring-DATA应用中实现最新的函数。因此,对于给定的客户,我想检索客户每次都有的最后5个订单。但是有一个单独的字段,即ent ...

回答 1 投票 0


执行更新时,Save()不会返回生成的列

当我一个新实体时,它在数据库中插入了罚款,会生成时间戳并返回到弹簧;一切都很好。当我尝试

回答 0 投票 0


检查弹簧数据中的JSONB数组元素的存在JPA本机查询

我必须检查JSONB列中IDS中是否有ID = 123,并具有名称规则。它的格式: {“ IDS”:[“ 123”,“ 456”]} 并且结果查询将用于本机Q ...

回答 1 投票 0


修改Java可选对象并与其原始数据进行比较

在下面的代码段中,即使我传递了不同的数据,它也总是会在等于条件的内部。

回答 1 投票 0




带有EntityGraph Replicates的Spring JParepository查询方法左JOIN表达式

目前,我正在使用Springboot 3.3.3 + Hibernate 6.5.2.Final,并且我有一个Spring Data Jparepository方法,该方法使用@entityGraph和同时通过定义为 @EntityGraph.

回答 1 投票 0


当我的控制器没有匹配API时,我的控制器是为什么要调用不同的API? 我正在从事一个春季启动项目,它会产生奇怪的行为,例如: 我有两个API如下 控制器文件 @getMapping(“/list/雇员”) 公共响应性

@GetMapping("/list/employees") public ResponseEntity<List<Employee>> getEmployees(){ List<Employee> list = employeeService.getAllEmployees(); return new ResponseEntity<List<Employee>>(list, new HttpHeaders(), HttpStatus.OK ); } @GetMapping("employee/{id}") public ResponseEntity<Employee> getEmployeeById(@PathVariable("id") long id) throws RuntimeException{ Employee employee = employeeService.getEmployee(id); return new ResponseEntity<Employee>(employee,new HttpHeaders(),HttpStatus.OK); } 服务文件 /* return all employees */ public List<Employee> getAllEmployees(){ List<Employee> listEmployee = employeeRepo.findAll(); if(listEmployee.size()>0){ return listEmployee; }else{ return new ArrayList<Employee>(); } } /* RETURN SINGLE EMPLOYEE BY ID */ public Employee getEmployee(long id) throws RuntimeException{ Optional<Employee> employee = employeeRepo.findById(id); if(employee.isPresent()){ return employee.get(); }else{ new RuntimeException("Record not found"); } return null; } 但在Postman中运行它们给出了怪异的输出,例如: 第二API返回单个员工的正确行为 http://127.0.0.1:8080/employee/3 { "id": 3, "firstName": "Caption", "lastName": "America", "email": "[email protected]" } 同一API的不正确行为(我这次输入错误的路径) http://127.0.0.1:8080/employees/3 API路径是错误的(员工/3) { "firstName": "Caption", "lastName": "America", "email": "[email protected]", "_links": { "self": { "href": "http://127.0.0.1:8080/employees/3" }, "employee": { "href": "http://127.0.0.1:8080/employees/3" } } } the root URI的标准行为,我没有使用Home URI触发任何动作,但仍能在上述API中产生输出。 这些不需要的API呼叫的原因是什么? 看起来像您的春季数据在您的班级路径上休息。 它将根据存储库自动导线路径。 第二个回应是仇恨的回应。 简单的测试是检查Maven/Gradle。 如果您看到弹簧data-rest,请发表评论然后重试。 没有不需要的API呼叫。这就是Hateos响应在文档中所述表示的方式: HyperMedia的基本思想是丰富具有超媒体元素的资源的表示。最简单的形式是链接。他们表明客户可以导航到某个资源。相关资源的语义是在所谓的链接关系中定义的。 如上所述,尝试寻找春季靴仇恨依赖性并发表评论或删除,然后它应恢复为正常的休息JSON响应。 如果您使用的是maven,请寻找: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-hateoas</artifactId> </dependency> 如果您使用的是Gradle,请寻找: implementation 'org.springframework.boot:spring-boot-starter-hateoas'

回答 1 投票 0

如何在 Spring Boot 中为 PostgreSQL JPA 存储库编写单元测试?

我有 docker compose 文件,其中有这样的 postgres 容器配置 cmj-postgres: image: postgres:15 # 使用最新稳定版本的 PostgreSQL 容器名称:cmj-postgres

回答 1 投票 0

MapStruct 映射器在 Spring Boot 中无法正确映射嵌套 DTO

我有一个无法与映射一起使用的 DTO @数据 公共类IndividualDTO { private String 护照号码; 私有字符串电话号码; 私有 UserDTO 用户; @数据 公开

回答 1 投票 0



我正在使用Spring Boot应用程序工作,在该应用程序中我使用Create -Order方法创建订单。每次,我都会遇到以下错误:

public class OrderService { OrderRepository orderRepository; ItemRepository itemRepository; UserRepository userRepository; @Transactional public OrderView createOrder(PostOrderRequest request) { Order order = Order.builder() .orderId(UUID.randomUUID()) .userId(request.getUserId()) .createdTime(LocalDateTime.now()) .deliveryMethod(request.getDeliveryMethod()) .orderStatus(OrderStatus.PLACED) .build(); List<OrderItem> orderItems = mapOrderItems(request.getOrderItems(), order.getOrderId()); order.setOrderItems(orderItems); order.setUpdatedTime(LocalDateTime.now()); orderRepository.save(order); return mapToOrderView(order); } private List<OrderItem> mapOrderItems(List<OrderItem> itemRequests, UUID orderId) { if (itemRequests == null || itemRequests.isEmpty()) { throw new IllegalArgumentException("Order must contain at least one item."); } List<OrderItem> orderItems = new ArrayList<>(); for (OrderItem itemRequest : itemRequests) { Optional<Item> item = itemRepository.findById(itemRequest.getItemId()); if (item.isEmpty()) { throw new IllegalArgumentException("Item not available: " + itemRequest.getItemId()); } orderItems.add(OrderItem.builder() .orderItemId(UUID.randomUUID()) .itemId(item.get().getItemId()) .quantity(itemRequest.getQuantity()) .build()); } return orderItems; }

回答 1 投票 0

为什么角色的设置器会接受列表<String>在我的JPA实体中使用枚举?<Role> 我正在为我的用户实体使用Spring Data JPA和Hibernate和Lombok,其中“角色”字段定义为set

Set<Role>。但是,LOMBOK正在生成一种六个式方法,该方法接受List<String>而不是为角色字段。 在这里是角色枚举和用户实体的代码:Set<Role>public enum Role { ADMIN, DRIVER, RIDER } 问题: 尽管角色字段被定义为集合,但Lombok正在生成一种接受列表而不是集合的设置器方法。生成的设置器方法签名看起来像这样: @Entity @Getter @Setter @Table(name = "app_user") public class User { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; private String name; @Column(unique = true) private String email; private String password; @ElementCollection(fetch = FetchType.LAZY) @Enumerated(EnumType.STRING) private Set<Role> roles; } 我尝试的是: 我将角色字段宣布为一组。 我正在使用最新版本的Lombok和Spring Boot。 角色枚举是类型字符串。 问题: 为什么Lombok会生成一个接受列表的设置器方法,而不是为角色字段设置,即使该字段是集合?我该如何解决此问题并确保设置者接受集合? 置于VS代码安装Lombok插件。

回答 0 投票 0

最新问题
© www.soinside.com 2019 - 2025. All rights reserved.