I am calling ControllerLinkBuilder.linkTo method inside a spring Async method and it fails to find the current request.
service.setUrl(linkTo(Controller.class, Controller.METHOD_GET,
headers.getFirst(HEADER_SOURCE), id).toString());
Exception:
java.util.concurrent.ExecutionException: java.lang.IllegalStateException: Could not find current request via RequestContextHolder
Caused by: java.lang.IllegalStateException: Could not find current request via RequestContextHolder
I tried to reconstruct your problem and weren't able to. Have you tried using something like the following?
That worked fine for me using
spring-boot-starter-parent
version1.3.2.RELEASE
.