"from Person as p where p.name like ?","%"+name+"%"
<bean id="popupService" class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">
<property name="target" ref="popupServiceTarget"></property>
<property name="transactionManager" ref="transactionManager"></property>
<property name="transactionAttributes">
<props>
<prop key="get*">PROPOGATION_REQUIRED,readOnly</prop>
<prop key="*">PROPOGATION_REQUIRED</prop>
</props>
</property>
</bean>