Skip to content

Instantly share code, notes, and snippets.

@tsegismont
Created June 20, 2012 16:56
Show Gist options
  • Select an option

  • Save tsegismont/2960922 to your computer and use it in GitHub Desktop.

Select an option

Save tsegismont/2960922 to your computer and use it in GitHub Desktop.
Spring XML tx advice
<tx:advice id="defaultServiceMethodTxAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="get*" propagation="SUPPORTS" read-only="true" />
<tx:method name="is*" propagation="SUPPORTS" read-only="true" />
<tx:method name="find*" propagation="SUPPORTS" read-only="true" />
<tx:method name="load*" propagation="SUPPORTS" read-only="true" />
<tx:method name="*" propagation="REQUIRED" />
</tx:attributes>
</tx:advice>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment