ADF應用程式中建立和恢複儲存點

來源:互聯網
上載者:User

在Oracle Fusion Web應用開發中,如果採用Task Flow來進行應用流的控制,預設只要建立一個task flow就是一個新的事物開始,

如果在流中需要復原,只需要添加一個restoreSavepoint活動就可以實現事物的復原,但如果需要在程式中實現儲存點的建立和復原,使用下面的代碼:

 

1. 建立儲存點

DCBindingContainer binding = ADFUtils.getDCBindingContainer();<br />DCDataControl dcDataControl = binding.getDataControl();<br />String sph = (String) dcDataControl.createSavepoint();<br />JSFUtils.setExpressionValue("#{pageFlowScope.AdfmSavePoint}",sph);

建立儲存點時,ADF將AM中的對象執行個體序列化儲存到PS_TXN表中,因此如果AM中包括了太多的對象,那建立儲存點時就會有太多的資訊儲存到後台表,

意味著AM粒度的劃分直接影響 到儲存點的建立。

 

2. 恢複儲存點
String sph = (String)JSFUtils.resolveExpression("#{pageFlowScope.AdfmSavePoint}");<br />DCBindingContainer binding = ADFUtils.getDCBindingContainer();<br />DCDataControl dcDataControl = binding.getDataControl();<br />dcDataControl.restoreSavepoint(sph);

本文轉自Oracle Seeker:http://oracleseeker.com/2009/07/18/create_and_restore_savepoint_in_oracle_adf_application/

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.