2017-12-23 26 views
1

Spring MVCでエラーが発生しました。タイプ[service.NewsServiceImpl]の対象Beanが定義されていません

Exception in thread "main" org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [service.NewsServiceImpl] is defined 
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBean(DefaultListableBeanFactory.java:373) 
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBean(DefaultListableBeanFactory.java:333) 
at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1088) 
at controller.Testing.main(Testing.java:24) 

NewsDAImplコードは次のとおりです。

@Repository 
public class NewsDAImpl implements NewsDA { 

@PersistenceContext 
private EntityManager context; 

@Override 
public News ... Some Other Codes 

マイNewsServiceImplクラス:

@Service 
@Transactional 
public class NewsServiceImpl implements NewsService{ 

@Autowired 
private NewsDAImpl newsDa; 

@Override 
public News ... Some Other Codes 

私はテストのために、静的な無効メイン持つコントローラを書きます。その中 私がこれを書いた:

ApplicationContext context = new AnnotationConfigApplicationContext(ProjectConfig.class); 

その後、私はちょうどgetBeanメソッドでニュースサービスを取得:

NewsService service = context.getBean(NewsService.class); 

NewsServiceImpl service = context.getBean(NewsServiceImpl.class); 
+0

あなたの 'ProjectConfig'はどうですか? – ThomasEdwin

+0

実装にコード化しないでください - インタフェースへのコードなので、インタフェースではなくインプット上でDIを使用しないでください。 – SMA

答えて

2

変更

NewsServiceImpl service = context.getBean(NewsServiceImpl.class); 

あなたはを持っています10には@Transactionalと注釈が付けられているので、デフォルトでは、春はNewsServiceImplの代わりにNewsServiceを実装するプロキシを作成します。

+1

ありがとうございます。その働いた。 :) –

関連する問題