方法调用---springMVC中调用controller的方法


我们有一个路由StudentController,里面有一个方法count()。如果要在另外一个GradeController中调用count()方法有2种方式:

因为StudentController是一个class,不是接口,接口一般都是@Autowired注入就能调用。

new一个实例调用

比如在GradeController的方法中new一个StudentController然后调用。

 

[plain]  view plain  copy
 
  1. StudentController   studentController=new StudentController ();  
  2. int count=studentController.count();  

 

即可。

 

这种情况是在 count方法中 没有使用 其它@Autowired引入的接口service的情况下。否则会报错空指针。因为new 出来的实例是不带StudentController中注入的。

如果count方法中使用了 其它@Autowired引入的接口service,则需要修改一下,把这个service作为参数传入count方法中。

GradeController中也需要@Autowired引入的接口service,然后

 

[plain]  view plain  copy
 
  1. @Autowired  
  2. Service  service;  
  3. StudentController   studentController=new StudentController ();  
  4. int count=studentController.count(service);  

 

 

如果调用的service太多,则需要传入 改动的地方就比较多。

 

 

@Autowired注解调用(推荐)

我们不new一个实例,直接把StudentController 自动注解进 GradeController即可直接使用,这种情况下,StudentController @Autowired引入的接口service也会自动注入。

也就是在GradeController中:

 

 

[plain]  view plain  copy
 
  1. @Autowired  
  2. StudentController  studentController ;  
  3. int count=studentController.count();  

 

即可。

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM