17 lines
257 B
Java
Raw Normal View History

2016-04-07 06:17:57 -05:00
package com.baeldung.web;
2013-05-24 21:36:46 +03:00
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component
public class BeanA {
@Autowired
private BeanB b;
public BeanA() {
super();
}
}