Skip to content

Instantly share code, notes, and snippets.

@debop
Created May 7, 2013 13:24
Show Gist options
  • Select an option

  • Save debop/5532521 to your computer and use it in GitHub Desktop.

Select an option

Save debop/5532521 to your computer and use it in GitHub Desktop.
<!-- UnitOfWorkFactory 인스턴스를 UnitOfWorks Singleton의 static field에 설정합니다. -->
<bean name="unitOfWorkInitializer" class="org.springframework.beans.factory.config.MethodInvokingFactoryBean">
<property name="staticMethod" value="kr.nsoft.data.hibernate.unitofwork.UnitOfWorks.setUnitOfWorkFactory"/>
<property name="arguments">
<list>
<ref bean="unitOfWorkFactory"/>
</list>
</property>
</bean>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment