I am new to Spring DataJPA + REST project and I am trying to perform add new or edit Employer from reference EmployerType with OneToOne unidirectional relationship.The task is simple, but I am stuck. When I try to add or edit data I am getting this error:
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')
Below is the information about the classes.
@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 class
@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
Rest Controller
@RequestMapping(value = "/employers", method = RequestMethod.PUT)
public Employer updateEmployer(@RequestBody Employer employer) {
return employerRepository.save(employer);
}