question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Clarify how to to customize the TestRestTemplate

See original GitHub issue

The documentation is pretty silent on how to customize TestRestTemplate (e.g. register additional HttpMessageConverters). I’ve discovered RestTemplateCustomizer but declaring a Spring bean for that doesn’t seem to have any effect. Declaring a bean of type RestTemplate and customizing that through a RestTemplateBuilder doesn’t either.

I finally tried this:


@Bean
TestRestTemplate template(RestTemplateBuilder builder) {
    return new TestRestTemplate(
            builder.additionalMessageConverters(new ProjectingJackson2HttpMessageConverter()).build());
}

But that lets the bootstrap fail as I now end up with two TestRestTemplate instances. Making the manually declared one @Primary makes the context bootstrap, but the RestTemplate created then doesn’t seem to support non-absolute URIs.

I am aware that in my particular example I can declare HttpMessageConverter beans but they then get registered with both the server side MVC setup and the client.

Issue Analytics

  • State:closed
  • Created 7 years ago
  • Comments:10 (8 by maintainers)

github_iconTop GitHub Comments

3reactions
FrontierPsychiatristcommented, Aug 26, 2016

Ok, it was (luckily 😃) my error. I didn’t see that the RestTemplateBuilder is immutable and the methods will always return a new instance. So I set an additional message converter and wondered why it was never used - but in fact it wasn’t even in the builder.

I misinterpreted the lazy bean initiliazition via applicationContext.getBean(...) as being too late while it was actually calling my bean producer method.

So if anyone ever has a similar problem, don’t do this

@Bean
public RestTemplateBuilder restTemplateBuilder() {
  RestTemplateBuilder builder = new RestTemplateBuilder();
  builder.additionalMessageConverters(...);
  return builder;
}

it won’t work.

Instead do this

@Bean
public RestTemplateBuilder restTemplateBuilder() {
  return new RestTemplateBuilder().additionalMessageConverters(...);
}
0reactions
kartoffelsupcommented, Dec 27, 2016

I think you would need to add this to a @Configuration class. And also, ask on stack overflow next time :p

Read more comments on GitHub >

github_iconTop Results From Across the Web

How to configure Spring TestRestTemplate - Stack Overflow
In order to configure your TestRestTemplate, the official documentation suggests you to use the TestRestTemplate, as shown in the example ...
Read more >
Using a custom trust store with RestTemplate in Spring Boot
The best way to explain the solution is to work from the bottom of that method and go up. The RestTemplate can have...
Read more >
Exploring the Spring Boot TestRestTemplate - Baeldung
Learn how to use the new TestRestTemplate in Spring Boot to test a simple ... TestRestTemplate also enables us to customize the underlying ......
Read more >
Testing the Spring RestTemplate With @RestClientTest - rieckpil
Write effective tests for your application code utilizing the Spring RestTemplate by using the @RestClientTest annotation of Spring Boot.
Read more >
Spring Boot + Kotlin Rest client cheatsheet: RestTemplate and ...
In this post I explain how you can consume a REST api from a Spring ... The standard way to create a RestTemplate...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found