I’ve been trying to find a clean way of separating...
# spring
s
I’ve been trying to find a clean way of separating the API spec, defined by annotations like
@RequestMapping
, etc. from the implementation. Having all the annotations on an interface and then implementing it in a class doesn’t work. I assume coz of no annotation inheritance. Anyone found an elegant way of doing this?