I have question about controllers. Always when i working with controller im start to declare @RequestMapping for example if have UserController then is @RequestMapping("/user");
What if i want to declare another path in this same controller? For example im have @GetMapping("/info") and i will get info about user, but what if i want to declare on this same controller path localhost:8080/topic/blablabla? Is another solution than delete @RequestMapping from controller and make on every Get/PostMapping another path?