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);
あなたの 'ProjectConfig'はどうですか? – ThomasEdwin
実装にコード化しないでください - インタフェースへのコードなので、インタフェースではなくインプット上でDIを使用しないでください。 – SMA