I'd like to set default values for a list in a bean using annotations.
For example, if it's not a list you can do:
@Value("myValue")
String test;
But, in my case i want to give default values for a List of String.
List<String> tests;
In XML, it's something like that:
<bean id="beanId" class="class...">
<property name="tests">
<list>
<value>value 1</value>
<value>value 2</value>
<value>value 3</value>
</list>
</property>
</bean>
I wanted to know if there is an existing annotation, or if I have to create one ?
Thank you