1

Spring アノテーションの例をダウンロードしましたが、挿入するクラスを選択する方法がわかりません。コードと構成は次のとおりです。最初に、IWriter インターフェイスのいくつかの実装 (表示されていません)

package writers;
import org.springframework.stereotype.Service;

@Service
public class NiceWriter implements IWriter {
    public void writer(String s)    {
        System.out.println("Nice Writer - " + s);
    }
}


package writers;
import org.springframework.stereotype.Service;

@Service
public class Writer implements IWriter{
    public void writer(String s)    {
        System.out.println("Writer - "+s);
    }
}

package testbean;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import writers.IWriter;

    @Service
    public class SpringBeanWithDI{
        private IWriter writer;

        @Autowired
        public void setWriter(IWriter writer)   {
            this.writer = writer;
        }

        public void run()   {
            String s = "This is my test";
            writer.writer(s);
        }
    }

テスト Bean :-

package main;

import org.springframework.beans.factory.BeanFactory;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import testbean.SpringBeanWithDI;

public class TestBean  {
    public static void main(String[] args)  {
        ApplicationContext context = new ClassPathXmlApplicationContext("META-INF/beans.xml");
        BeanFactory factory = context;
        SpringBeanWithDI test = (SpringBeanWithDI) factory.getBean("springBeanWithDI");
        test.run();
    }
}

そしてbeans.xmlファイル:-

<beans xmlns="http://www.springframework.org/schema/beans"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:aop="http://www.springframework.org/schema/aop"
  xmlns:context="http://www.springframework.org/schema/context"
  xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
           http://www.springframework.org/schema/aop
           http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
           http://www.springframework.org/schema/context
           http://www.springframework.org/schema/context/spring-context-2.5.xsd">

  <context:component-scan base-package="testbean" />
  <context:component-scan base-package="Writers" />

</beans> 

すべて非常に単純ですが、なぜ常に 'Writer' 実装を挿入するのですか?

4

1 に答える 1