Files
spring-boot-rest/spring-mvc-java/src/main/java/com/baeldung/web/BeanA.java
David Morley 9630170b03 Rename package
2016-04-07 06:17:57 -05:00

17 lines
257 B
Java

package com.baeldung.web;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component
public class BeanA {
@Autowired
private BeanB b;
public BeanA() {
super();
}
}