Spring - Need to autowire @RestController class in a @Component class
问题 I have combination of web and core projects under the same maven parent module as like, Parent - Web (com.parent.test.web) - Core (com.parent.test.core) I would like to refer the web module dependency in the core project to invoke some of the api from web module Web project sample, com.test.parent.web public interface RestInterface { public ResponseEntity load(); } @RestController public class RestInterfaceImpl implements RestInterface { @Override @RequestMapping(value = "/getData", method =