1
我使用EclipseLink作爲我的JPA提供程序。 當我使用一個查詢對象在下面的代碼:eclipselink.read-only和transaction bounderies
myQuery.setHint("eclipselink.read-only", "true");
的查詢上比原來的EntityManager不同的連接使用,並返回錯誤的結果執行。
將查詢設置爲只讀將導致EclipseLink在不同的連接上運行它是否有意義? (我正在使用連接池)。
在另外我已經添加在persistence.xml:
<shared-cache-mode>NONE</shared-cache-mode>
停用跨會話緩存。