發發spring的牢騷

xyz發表於2008-04-21
發發spring的牢騷,spring的配置太複雜了.裡面其實有很多技巧,不用吧太複雜,但是這種技巧又不知道會不會帶來新的麻煩.
最近在專案中要hibernate延遲載入,配置了OpenSessionInViewFilter,結果出現:
Write operations are not allowed in read-only mode (FlushMode.NEVER/MANUAL): Turn your Session into FlushMode.COMMIT/AUTO or remove 'readOnly' marker from transaction definition.的錯誤
將配置改成

        <init-param>
            <param-name>singleSession</param-name>
            <param-value>false</param-value>
        </init-param>
<p class="indent">

又出現一個物件關聯多個session的錯誤,真實麻煩,又說要吧引數改回來!
弄了好長時間,真是麻煩

相關文章