0

I'm creating an application to post files on Dropbox service with spring-net-social-dropbox library. Is it possible to change/configure properties of WebClientHttpRequestFactory class? I'd like to change Timeout property.

Alexey
  • 1,826
  • 3
  • 17
  • 20

1 Answers1

2

You can cast your IDropbox instance to DropboxTemplate. Then you will get access to the underlying RestTemplate instance which have a RequestFactory property.

Andreas
  • 5,251
  • 30
  • 43
bbaia
  • 1,193
  • 7
  • 8