ultm
ultm copied to clipboard
Ultra Lightweight Transaction Manager for JDBC
Solution for #5
The `ThreadLocalTxManager` has this method: ```java @Override public T txUnwrappedResult(UnitOfWorkCall unit) throws Exception { begin(); try { T result = unit.call(); commit(); return result; } catch (Exception e) { rollback();...
Hi @witoldsz! I've been playing with ultm for a while. I've noticed that when I don't want run SQL operation inside transaction I have to use different DataSource (not provided...