【发布时间】:2018-09-09 04:54:28
【问题描述】:
我是 Spring DataJPA + REST 项目的新手,我正在尝试从具有 OneToOne 单向关系的引用 EmployerType 执行添加新或编辑 Employer。任务很简单,但我被卡住了。当我尝试添加或编辑数据时出现此错误:
org.springframework.http.converter.HttpMessageNotReadableException:
Could not read document: Can not construct instance of
tr.mis.domain.EmployerType: no String-argument constructor/factory
method to deserialize from String value ('1074') at [Source:
java.io.PushbackInputStream@6d856887; line: 1, column: 609] (through
reference chain: tr.mis.domain.Employer["employerType"]); nested
exception is com.fasterxml.jackson.databind.JsonMappingException: Can
not construct instance of tr.mis.domain.EmployerType: no
String-argument constructor/factory method to deserialize from String
value ('1074')
以下是有关课程的信息。
@Entity
@Table(name = "employer")
public class Employer implements Serializable {
@GenericGenerator(
name = "wikiSequenceGenerator",
strategy = "org.hibernate.id.enhanced.SequenceStyleGenerator",
parameters = {
@Parameter(name = "sequence_name", value = "WIKI_SEQUENCE"),
@Parameter(name = "initial_value", value = "1000"),
@Parameter(name = "increment_size", value = "1")
}
)
@Id
@GeneratedValue(generator = "wikiSequenceGenerator")
private Long employerId;
private String uid;
private String name;
private String address;
private String headName;
//@JsonIgnore
@OneToOne(cascade = CascadeType.ALL, fetch = FetchType.EAGER)
// @PrimaryKeyJoinColumn
@JoinColumn(name = "employer_type_id")
private EmployerType employerType;
//Getters and Setters
EmployerType 类
@Entity
@Table(name = "employertype")
public class EmployerType {
@GenericGenerator(
name = "wikiSequenceGenerator",
strategy = "org.hibernate.id.enhanced.SequenceStyleGenerator",
parameters = {
@Parameter(name = "sequence_name", value = "WIKI_SEQUENCE"),
@Parameter(name = "initial_value", value = "1000"),
@Parameter(name = "increment_size", value = "1")
}
)
@Id
@GeneratedValue(generator = "wikiSequenceGenerator")
private Long employerTypeId;
private String uid;
private String employerTypeName;
//Getters and Setters
休息控制器
@RequestMapping(value = "/employers", method = RequestMethod.PUT)
public Employer updateEmployer(@RequestBody Employer employer) {
return employerRepository.save(employer);
}
【问题讨论】:
标签: spring spring-mvc spring-boot spring-data-jpa spring-rest