spring autowired與component使用

摘要:spring autowired與component使用

@Component
class A {
    public void methodA(){

   }
}

Calss B{

    @Autowired  //不用再使用 A a = new A();
    private A a;
   a.methodA();

}