作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想更新 Employee 实体,但它不起作用,它只是将实体添加到表中而不是更新它。
Controller
@PutMapping("updateEmployee/{id}")
public void updateEmployee(@PathVariable long id, @RequestBody Employee employee) {
employeeService.updateEmployee(id, employee);
}
连接到 JpaRepository 的服务
public void updateEmployee(long id, Employee employee) {
employeeRepository.save(employee);
}
最佳答案
在 Spring Data JPA(使用 Hibernate)中更新实体的常见做法是:
例如:
@Service
public class EmployeeService {
@Autowired private EmployeeRepo repo;
@Transactional
public Optional<Employee> update(long employeeId, Employee source) {
return repo.findById(employeeId).map(target -> {
target.setName(source.getName());
// update other props...
return target;
});
}
}
因此,当事务关闭时,Hibernate 将自动更新数据库中的实体 - 不需要 save
方法调用。
关于mysql - Spring Boot Jpa - 如何将实体更新到 mysql 数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57075120/
我是一名优秀的程序员,十分优秀!