Groovy Sql 사용 Spring 사무 관리
설정 부분 은 참고 할 수 있 습 니 다 -
?
http://www.iteye.com/topic/11506?page=3
?
사용 할 코드: (설정, spring transaction Template, Closure = Callback 과 유사)
?
?
<bean id="defaultDsTarget" lazy-init="true"
class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName"><value>${db_local_driver}</value></property>
<property name="url"><value>${db_local_url}</value></property>
<property name="username"><value>${db_local_user}</value></property>
<property name="password"><value>${db_local_pwd}</value></property>
</bean>
<bean id="defaultDs" class="org.springframework.jdbc.datasource.TransactionAwareDataSourceProxy">
<constructor-arg>
<ref bean="defaultDsTarget" />
</constructor-arg>
</bean>
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource">
<ref bean="defaultDsTarget"/>
</property>
</bean>
?
?
?
static DataSource getDs(){
final dsBeanName = 'defaultDs'
def context = AppContext.getContextBiz()
return context.getBean(dsBeanName)
}
// use spring platform indenpendent TransactionManager
static DataSourceTransactionManager getTm(){
def context = AppContext.getContextBiz()
return context.getBean('transactionManager')
}
// not available in weblogic
static void withTrans(Closure callback){
def tm = getTm()
def transDef = new DefaultTransactionDefinition()
def status = tm.getTransaction(transDef)
try {
callback.call()
tm.commit(status)
}catch (ex) {
log.error('DSManager withTrans failed!', ex)
tm.rollback(status)
throw ex
}
}
?
DSManager.withTrans{
def dao = new YourDAO() // use defaultDs from spring beanfactory
}
?
?
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.