У меня есть bean-компонент, который я хочу внедрить с именованным списком с использованием пространства имен Spring util, <util:list id="myList">
но вместо этого Spring ищет коллекцию beans типа String. Мой сломанный тест:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration
public class ListInjectionTest {
@Autowired @Qualifier("myList") private List<String> stringList;
@Test public void testNotNull() {
TestCase.assertNotNull("stringList not null", stringList);
}
}
Мой контекст:
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:util="http://www.springframework.org/schema/util"
xmlns="http://www.springframework.org/schema/beans"
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/util http://www.springframework.org/schema/util/spring-util-2.5.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd">
<util:list id="myList">
<value>foo</value>
<value>bar</value>
</util:list>
</beans>
Но я получаю
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No matching bean of type [java.lang.String] found for dependency [collection of java.lang.String]: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true), @org.springframework.beans.factory.annotation.Qualifier(value=myList)}
at org.springframework.beans.factory.support.DefaultListableBeanFactory.raiseNoSuchBeanDefinitionException(DefaultListableBeanFactory.java:726)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:571)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:412)
Что меня скорее озадачивает, поскольку я полагал, что это будет именно так, как ожидалось.
Другая вещь, которая может произойти, - это то, что вы автоматически подключаете свойство bean-компонента. В таком случае вам не нужно его автоматически подключать, просто создайте метод установки и используйте тег свойства в примере определения bean (при использовании xml):
<bean id="cleaningUpOldFilesTasklet" class="com.example.mypackage.batch.tasklets.CleanUpOldFilesTasklet"> <property name="directoriesToClean"> <list> <value>asfs</value> <value>fvdvd</value> <value>sdfsfcc</value> <value>eeerer</value> <value>rerrer</value> </list> </property> </bean>
И класс:
public class CleanUpOldFilesTasklet extends TransferingFilesTasklet implements Tasklet{ private long pastMillisForExpiration; private final String dateFormat = "MM.dd"; Date currentDate = null; List<String> directoriesToClean; public void setDirectoriesToClean(List<String> directories){ List<String> dirs = new ArrayList<>(); for(String directory : directories){ dirs.add(getSanitizedDir(directory)); } this.directoriesToClean = dirs; }
Видишь,
@Autowired
в классе нет аннотации.источник