@RestController@RequestMapping("/test")publicclassTestController{privatefinalTestServicetestService;//@AutowiredpublicTestController(TestServicetestService){this.testService=testService;}@RequestMapping("/sayHello")publicStringsayHello(){returntestService.sayHello();}}@Autowired并不是必须的,不加也能注入成功,这是为什么?
添加回答
举报
0/150
提交
取消
