posted 1 week ago
Hi all,
using Spring Boot I have written a Class (Controller). This Class signature holds a @RequestMapping("path") annotation, and implements an Interface which contains another @RequestMapping("path") annotation like this;
This Interface contained annotation is holded by a method.
Ths issue is that I reach the Class (from a Rest call) but the Interface method doesnt get reached.
This part of the code is not "reading" the Rest call.