further exceptions work

This commit is contained in:
eugenp
2013-08-11 15:57:03 +03:00
parent 075dd7be5c
commit 7da1bc0e02
6 changed files with 78 additions and 0 deletions
@@ -0,0 +1,5 @@
package org.baeldung.ex.beancreationexception.cause9;
public abstract class BeanA implements IBeanA {
//
}
@@ -0,0 +1,8 @@
package org.baeldung.ex.beancreationexception.cause9;
import org.springframework.stereotype.Component;
@Component
public class BeanB {
//
}
@@ -0,0 +1,5 @@
package org.baeldung.ex.beancreationexception.cause9;
public interface IBeanA {
//
}
@@ -0,0 +1,30 @@
package org.baeldung.ex.beancreationexception.spring;
import org.baeldung.ex.beancreationexception.cause9.BeanB;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.ImportResource;
@Configuration
@ComponentScan("org.baeldung.ex.beancreationexception.cause9")
@ImportResource("classpath:beancreationexception_cause9.xml")
public class Cause9ContextWithJavaConfig {
@Autowired
BeanFactory beanFactory;
public Cause9ContextWithJavaConfig() {
super();
}
// beans
@Bean
public BeanB beanB() {
beanFactory.getBean("beanA");
return new BeanB();
}
}