您好我使用的是Spring引导和Spring数据我希望根据id从数据库中获取数据,但是我无法检索它。 M得到此错误“异常”:
“org.springframework.dao.InvalidDataAccessApiUsageException”, “message”:“org.hibernate.hql.internal.QueryExecutionRequestException: DML操作不支持[更新 com.ge.health.poc.model.SpringModel SET name ='sneha',其中id =?]; 嵌套异常是java.lang.IllegalStateException: org.hibernate.hql.internal.QueryExecutionRequestException:不是 支持DML操作[更新 com.ge.health.poc.model.SpringModel SET name ='sneha',其中id =?]“, “path”:“/ updatedata” }
主类
package com.ge.health.poc;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class SpringDataApplication {
public static void main(String[] args) {
SpringApplication.run(SpringDataApplication.class, args);
}
}
控制器类
package com.ge.health.poc.controller;
import java.io.IOException;
import java.text.ParseException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
import com.fasterxml.jackson.core.JsonParseException;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.ge.health.poc.model.SpringModel;
import com.ge.health.poc.service.BookServiceImpl;
@RestController
public class SpringController {
@Autowired
BookServiceImpl bookserviceimpl;
@RequestMapping(value = "/insertdata", method = RequestMethod.POST)
@ResponseBody
public void helloService(@RequestBody String input, final RedirectAttributes redirectAttributes)
throws JsonParseException, JsonMappingException, IOException, ParseException {
System.out.println(input);
ObjectMapper mapper = new ObjectMapper();
SpringModel pojodata = mapper.readValue(input, SpringModel.class);
System.out.println(pojodata);
System.out.println(pojodata.getAuthor());
bookserviceimpl.save(pojodata);
}
@RequestMapping(value = "/getdata/{id}")
@ResponseBody
public void retreiveData(@PathVariable("id") int id)
throws JsonParseException, JsonMappingException, IOException, ParseException {
System.out.println("id is:" + id);
bookserviceimpl.retreive(id);
}
@RequestMapping(value = "/deletedata", method = RequestMethod.DELETE)
@ResponseBody
public void deleteData(@RequestBody String id)
throws JsonParseException, JsonMappingException, IOException, ParseException {
System.out.println("M in delete");
System.out.println(id);
ObjectMapper mapper = new ObjectMapper();
SpringModel pojodata = mapper.readValue(id, SpringModel.class);
int idd = (pojodata.getId());
System.out.println("value oof idd is:" + idd);
System.out.println("M into delete method");
bookserviceimpl.delete(idd);
}
@RequestMapping(value = "/updatedata", method = RequestMethod.PUT)
@ResponseBody
public void updateData(@RequestBody String id)
throws JsonParseException, JsonMappingException, IOException, ParseException {
System.out.println("M in update");
System.out.println(id);
ObjectMapper mapper = new ObjectMapper();
SpringModel pojodata = mapper.readValue(id, SpringModel.class);
int idd = (pojodata.getId());
System.out.println("value oof idd is:" + idd);
bookserviceimpl.update(idd);
}
}
存储库
package com.ge.health.poc.interfac;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Query;
import org.springframework.stereotype.Repository;
import org.springframework.transaction.annotation.Transactional;
import com.ge.health.poc.model.SpringModel;
@Repository
@Transactional
public interface BookRepository extends JpaRepository<SpringModel, Long> {
@Query("select author from SpringModel where id=?")
String findName(int id);
@Query("Update SpringModel SET name='sneha' where id=?")
String UpdateByID(int id);
@Query("delete from SpringModel where id=?")
String deleteById(int id);
}
BookServiceImpl.java
package com.ge.health.poc.service;
import javax.persistence.EntityManager;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import com.ge.health.poc.interfac.BookRepository;
import com.ge.health.poc.model.SpringModel;
@Component
public class BookServiceImpl implements BookService {
@Autowired
EntityManager entitymanager;
@Autowired
BookRepository bookrepo;
@Override
public void save(SpringModel bookdata) {
bookrepo.save(bookdata);
}
public String retreive(int id) {
String s = bookrepo.findName(id);
System.out.println("Author name is:" + s);
return null;
}
public void delete(int id) {
System.out.println("M into service delete method");
bookrepo.deleteById(id);
}
public void update(int id) {
System.out.println("M in service update");
bookrepo.UpdateByID(id);
}
}
这是模型类
package com.ge.health.poc.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
@Entity
@Table(name = "spring_model")
public class SpringModel {
@Id
private Long id;
@Column
private String name;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
@Column
private String isbn;
@Override
public String toString() {
return "SpringModel [id=" + id + ", name=" + name + ", isbn=" + isbn + ", author=" + author + ", pages=" + pages
+ "]";
}
@Column
private String author;
@Column
private String pages;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getIsbn() {
return isbn;
}
public void setIsbn(String isbn) {
this.isbn = isbn;
}
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
public String getPages() {
return pages;
}
public void setPages(String pages) {
this.pages = pages;
}
}
答案 0 :(得分:5)
在存储库方法上尝试注释@Modifying(org.springframework.data.jpa.repository.Modifying)
,在执行DML操作的服务实现中尝试@Transactional(org.springframework.transaction.annotation.Transactional)
。有关详细信息,请参阅this answer。
答案 1 :(得分:0)
默认情况下,弹簧jpa会认为查询是选择查询。因此,要确保查询正在更新特定实体的现有行
在正在更新现有行
的方法上添加@modifying
注释
这可能适合你