spring-projects / spring-projects/spring-data-rest

RepositoryRestController cant handle complex object deserialization [DATAREST-687]

Open
#1,059 7 comments 0 reactions 1 assignee View on GitHub

@odrotbohm is already working on this.

Since Dec 31, 2020.

in: repository type: bug
Dominant language
Java
Stars
958
Forks
568
PR merge metrics
No merged PRs in 30d

Description

George T opened DATAREST-687 and commented

I am trying to override AppointmentRepository POST /appointments using a custom controller annotated with @RepositoryRestController.

@RepositoryRestResource(collectionResourceRel = "appointments", path = "appointments")
public interface AppointmentRepository extends CrudRepository<Appointment, Long> {

}
@RepositoryRestController
public class AppointmentController {

@Autowired
private  AppointmentRepository appointmentRepository;

@RequestMapping(method = RequestMethod.POST, value = "/appointments")
public ResponseEntity<String> post(@RequestBody Appointment appointment) {
	............
    	appointment = appointmentRepository.save(appointment);
    	HttpHeaders httpHeaders = new HttpHeaders();
        return new ResponseEntity<>("{}", httpHeaders, HttpStatus.CREATED);
    }
}

Appointment.java

@Entity
public class Appointment {
	
	public Appointment() {		 
	}

	@Id
	@Column(nullable = false)
	@GeneratedValue(strategy = GenerationType.IDENTITY)
	private Long id;
	
	@ManyToOne
	Address address;
	
	//Getters, Setters
}

Address.java

@Entity
public class Address {

	@Id
	@Column(nullable = false)
	@GeneratedValue(strategy = GenerationType.IDENTITY)
	public Long id;
	
	@OneToMany(mappedBy="address")
	List<Appointment> appointment;

	//Getters, Setters
}

When I post to /appointments the following

{ "address":"http://localhost:8080/addresses/1"}

I get

{
  "timestamp": "2015-09-24T10:52:02.824+0000",
  "status": 400,
  "error": "Bad Request",
  "exception": "org.springframework.http.converter.HttpMessageNotReadableException",
  "message": "Could not read document: Can not instantiate value of type [simple type, class com.address.Address] from String value ('http://localhost:8080/addresses/1'); no single-String constructor/factory method\n at [Source: java.io.PushbackInputStream@674e5fc9; line: 1, column: 52] (through reference chain: com.appointment.Appointment[\"address\"]); nested exception is com.fasterxml.jackson.databind.JsonMappingException: Can not instantiate value of type [simple type, class com.address.Address] from String value ('http://localhost:8080/addresses/1'); no single-String constructor/factory method\n at [Source: java.io.PushbackInputStream@674e5fc9; line: 1, column: 52] (through reference chain: com.appointment.Appointment[\"address\"])",
  "path": "/appointments"
}

If I don't include the address property or use @RestController instead of @RepositoryRestController everything works as expected.

Is this expected behavior?


Affects: 2.2.2 (Evans SR2)

8 votes, 10 watchers

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.