Atomikos Forum |
Yes, this is possible if you adhere to domain-driven design (DDD) and concentrate all infrastructure dependencies in a separate module/layer:
-make sure all datasource, jms and jta dependencies are in a separate Spring config file -(re)use this config file in your application and also in your offline recovery module -that way, you can do recovery if the app is not running In any case, you need the JMS and JDBC connectors to recovery the back-end transactions... HTH |