Spring readOnly的簡單用法java
在不少時候咱們作一些報表的時候,一個Service方法中不少的查詢,可是應用又不僅是隻有查詢請求,在你執行這些查詢期間極可能插入一些數據。例如:spring
//查詢 public void selectSomeInfo() throws Exception { ud.selectUserNumbers(); try { // throw new Exception(); Thread.sleep(10000); } catch (InterruptedException e) { e.printStackTrace(); } ud.selectUserNumbers(); } public void insertInfo() { try { Thread.sleep(100); } catch (InterruptedException e) { e.printStackTrace(); } ud.insert(9); } public static void main(String args[]) { ApplicationContext ac = new ClassPathXmlApplicationContext( "com/springinaction/springidol/spring-tx.xml"); UserService us = (UserService) ac.getBean("userService"); UserService us1 = (UserService) ac.getBean("userService"); Thread2 t2 = new Thread2(us); Thread1 t1 = new Thread1(us1); t2.start(); t1.start(); //多個線程模擬實際請求 }
查詢出來的結果超級容易先後不一致,那咱們應該怎麼辦呢?Spring 事務管理的 readOnly就能夠用來解決這個問題(不過仍是要看是否支持哈,我使用的org.springframework.jdbc.core.JdbcTemplate是支持的)。線程
//修改上文的就能夠了 @Transactional( readOnly = true) public void selectSomeInfo() throws Exception { ud.selectUserNumbers(); try { // throw new Exception(); Thread.sleep(10000); } catch (InterruptedException e) { e.printStackTrace(); } ud.selectUserNumbers(); }
解決這個問題辦法其實有不少,但readOnly是 Spring事務管理專門提出來的一個維度,是很是簡單使用的。同理上面的傳播行爲和readOnly實際上是沒有比較的理由的。在一些傳播行爲中其實已經包括了readOnly的做用,二者實際上是處於不一樣維度上的東西。均可以解決問題,在保證數據一致上能夠從這個維度上很輕鬆的解決問題而已。
code