I was wondering if this is possible without the use of JTA
I have DAO that a Business Object uses ... and transactions are currently declared at this level via spring declarative transaction managment (On the business service that is). The datasource is currently against one database. Is it possible to use another dao inside this business object that makes a read only call to another database ?
--> transaction declared to start @ service level in application conifig against local system
public MyService {
--> Call external system to get read only value from DAO1
--> Insert into local system value received from external system using DAO2
}


Reply With Quote