@autowired使用

1、直接注入

@autowired

private XXXService xxxService;

 

2、也可以注入属性的set方法上

@RestController
public class DemoController {

private DemoService demoService;

@Autowired
public void setDemoService(DemoService demoService) {
    this.demoService = demoService;
}

@RequestMapping("/demo")
public String demo(){
    demoService.demo();
    return "demo ok";
}


}
而且使用下面的方法,不会有提示信息

@autowired使用

上一篇:搭建PXE实现Kickstart无人值守安装centos系统


下一篇:通过将技术与Somos Software结合使用而获得了出色的成果