I have following bean definition for my DAO -
<bean id="userDao" class="UserDao">
<property name="dataSource" ref="dataSource" />
<property name="queryPurgeInvalidReferrals" value="delete from reference where date < ?" />
</bean>
I am getting the error - The value of attribute "value" associated with an element type "property" must not contain the '<' character.
Since Spring config is an XML file, you need to escape <
according to XML syntax:
<property name="queryPurgeInvalidReferrals"
value="delete from reference where date < ?" />
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With