我试图在spring boot中运行一个简单的插入查询,但我无法这样做。
查询:
@Modifying
@Query(value = "insert into Local(userId,name,address,pin) VALUES (:userId,:name,:address,:pin)", nativeQuery = true)
List < Local > insertattributes(@Param("userId")String userId,@Param("address") String address ,@Param("name")String name,@Param("pin") String pin);
控制器:
@RequestMapping("insertattributes/{userId}/{name}/{address}/{pin}")
@ResponseBody
public List < Local > insertAttributes(@PathVariable String userId, @PathVariable String name, @PathVariable String address, @PathVariable String pin) {
return localService.insertattributes(userId,name,address,pin);
}
错误:
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: S1009
o.h.engine.jdbc.spi.SqlExceptionHelper : Can not issue data manipulation statements with executeQuery().
[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: Can not issue data manipulation statements with executeQuery().
答案 0 :(得分:1)
insert语句不返回插入的记录。由于您希望返回一个列表executeQuery()
由Spring执行。你想要的是executeUpdate()
的执行,它只对void方法执行。
另见Cannot issue data manipulation statements with executeQuery()