java jpa更新数据,使用JPA和Java更新查询

我正在尝试更新我的JPA存储库

@Transactional

public interface UserRepository extends JpaRepository {

User findByUsername(String username);

User findById(Long id);

@Query(value = "update user t set t.rule_id = NULL where t.rule_id = :id", nativeQuery = true)

List setNUll(@Param("id") String id);}

这是我的控制器的一部分:

@RequestMapping(value = "/admin/rule/{id}/edit", method = RequestMethod.GET)

public String editRule(@PathVariable Integer id, Model model)

{

userService.setNUll(Integer.toString(id));

model.addAttribute("rule", ruleCrudService.getRuleById(id));

updateUserData();

return "ruleForm";

}

并且此错误在我的浏览器中出现:

There was an unexpected error (type=Internal Server Error, status=500).

could not extract ResultSet; nested exception is org.hibernate.exception.GenericJDBCException: could not extract ResultSet

服务器还说:

SQL Error: 0, SQLState: S1009

2017-06-18 12:51:15.778 ERROR 10388 — [nio-8080-exec-4] o.h.engine.jdbc.spi.SqlExceptionHelper : Can not issue data manipulation statements with executeQuery().

2017-06-18 12:51:15.844 ERROR 10388 — [nio-8080-exec-4] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.orm.jpa.JpaSystemException: could not extract ResultSet; nested exception is org.hibernate.exception.GenericJDBCException: could not extract ResultSet] with root cause

java.sql.SQLException:无法使用executeQuery()发出数据操作语句.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值