Questions tagged [handlerinterceptor]
12 questions
5
votes
1 answer
how to handle deprecated HandlerInterceptorAdapter in spring mvc
HandlerInterceptorAdapter is deprecated
this is my code
import org.springframework.web.servlet.handler.HandlerInterceptorAdapter;
public class MyInterceptor extends HandlerInterceptorAdapter{
}
screenshot of code
enter image description here

Sandip Gadade
- 199
- 1
- 2
- 6
1
vote
1 answer
HandlerInterceptor with jakarta HttpServletRequest not working with javax HttpServletRequest
I have a HandlerInterceptor implemented with jakarta libraries:
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
@ControllerAdvice
public class RequestGETInterceptor implements HandlerInterceptor…

witilongi
- 71
- 3
1
vote
2 answers
Spring extract @RequestMapping annotation in HandlerInterceptor of Controller and Method to form full path
I have the following Controller
@RestController
@RequestMapping("/v4/base")
public class ExampleController {
@PostMapping(value = "/users/{userId}")
public ResponseEntity
- > test(@RequestHeader HttpHeaders headers,
…

Sumama Waheed
- 3,579
- 3
- 18
- 32
1
vote
2 answers
HandlerInterceptor spring - exclude requests on management port
I would like my HandlerInterceptor, in my spring boot application, not to run on requests coming in on the management port.
management.port = 9091
I can think of 2 ways to do it, but i'm looking for a more standard way.
One will be to check the…

user12396421
- 175
- 1
- 10
1
vote
2 answers
Spring Boot - Pass Exception object from ResponseEntityExceptionHandler to HandlerInterceptor?
I am working on Spring Boot Example and implemented GlobalExceptionHandler and trying to print all error messages in JSON - it's my custom method.
Also, I have ExceptionHandler there I am catching all the Exception. But is there any way to pass the…

PAA
- 1
- 46
- 174
- 282
0
votes
1 answer
how to edit method annotation attributes on runtime in springboot project?
How to edit the method annotation attributes on runtime in springboot project?
I've known there's a way to edit by using reflection like invocationHandler.getClass().getDeclaredField("memberValues"); but in the newer springboot environment it…

near
- 1
0
votes
0 answers
Why there are two ways to create interceptors in spring boot project?
By extending the AbstractPhaseInterceptor. (org.apache.cxf.phase.AbstractPhaseInterceptor)
https://cxf.apache.org/docs/interceptors.html
By implementing the…

Lisbon
- 126
- 1
- 1
- 12
0
votes
1 answer
Is it wise to make database calls from handler interceptors?
I am looking to store the (post / put) request and responses of a few specific endpoints on the database.
Is it wise to do this with interceptors (handlerInceptor) ? Can I autowire the service that calls the database to the interceptor ? I mean…

JayaSuriya RS
- 23
- 4
0
votes
1 answer
How to change header value of HttpServletRequest in a HandlerInterceptor?
so as follows I have to change (override) the value of one header in request. I have custom Interceptor that implements HandlerInterceptor. I've tried using HttpServletRequestWrapper, I've override getHeader, getHeaders and getHeaderNames method to…

Lvsia
- 11
- 2
0
votes
1 answer
How to obtain response data in HandlerInterceptor‘s afterCompletion()
I'm trying got response data in Spring HandlerInterceptor's afterCompletion() but got the data is empty;
@Override
public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception…

Mr.zhu
- 1
0
votes
1 answer
response is invalid in HandlerInterceptor
I configure the interceptor in custom WebMvcConfigurer.
public class RegisterInterceptor implements HandlerInterceptor {
@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws…

wangs
- 1
-1
votes
1 answer
HttpServletRequest.getParameter() of spring boot HandlerInterceptor returns null
I am overriding preHandle() method of Spring boot HandlerInterceptor.
When I am invoking getParameter() method on HttpServletRequest request it is returning null.
@Component
@Slf4J
public class CustomInterceptor implements HandlerInterceptor {
…

anonymous
- 47
- 10