Created
May 7, 2013 13:24
-
-
Save debop/5532521 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- 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