vote up 0 vote down star

I want to define in my Spring XML context a bean that has a property of the type List of classes: i.e. List<Class<?>> classes

How do I send that bean a number of classes, say java.lang.String and java.lang.Integer?

The list needs not be reusable, i.e. I will not refer to it in another bean.

flag

2 Answers

vote up 8 vote down check

With Spring, the simplest possibility usually works.....

   <property name="classes">
      <list>
         <value>java.lang.String</value>
         <value>java.lang.Integer</value>
      </list>
   </property>
link|flag
1  
Why this works: static.springsource.org/spring/docs/… – matt b Oct 7 at 16:11
skaffman is correct. To give you the gist of matt b's link, the Springframework uses property editors and introspection to determine what type of property you're setting and convert the given values accordingly. – Alex Marshall Oct 7 at 18:34
vote up 0 vote down
<property name="classes">
      <list>
          <bean class="java.lang.Class" factory-method="forName">
               <constructor-arg value="java.lang.String"/>
          </bean>
      </list>
</property>

Something like that...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.