15 lines
420 B
Java
15 lines
420 B
Java
package com.astalange.web.controller;
|
|
|
|
import jakarta.servlet.http.HttpServletRequest;
|
|
import org.springframework.web.bind.annotation.ControllerAdvice;
|
|
import org.springframework.web.bind.annotation.ModelAttribute;
|
|
|
|
@ControllerAdvice
|
|
public class GlobalControllerAdvice {
|
|
|
|
@ModelAttribute("requestURI")
|
|
public String requestURI(final HttpServletRequest request) {
|
|
return request.getRequestURI();
|
|
}
|
|
}
|