I am using spring boot 1.4.0.RELEASE
. I am writing tests for my controller class. I get the following exception.
org.springframework.beans.facto
To work with that, don't use a deprecated TestRestTemplate.
Deprecated:
import org.springframework.boot.test.TestRestTemplate;
Correct:
import org.springframework.boot.test.web.client.TestRestTemplate;
Then you can use the @Autowired
annotation in your class:
@Autowired
private TestRestTemplate restTemplate;
And don't use:
@Autowired
private MockMvc mvc;
Both together doesn't work.