なみひらブログ

学んだことを日々記録する。~ since 2012/06/24 ~

2012-07-08から1日間の記事一覧

DelegatingFilterProxyのjavadoc意訳

以下の意訳です。 http://static.springsource.org/spring/docs/1.2.x/api/org/springframework/web/filter/DelegatingFilterProxy.html 標準Servlet 2.3 FilterのProxy。Filterインターフェースを実装したSpring管理下のbeanに権利を移譲します。web.xml内…

DBでの並行処理の原則

DB

ACID原則 原子性 (Atomicity) - 操作は全体が行われるか全く行われないかのいずれかである。換言すればトランザクションは外から見て不可分に行われる。 一貫性 (Consistency) - 全てのトランザクションはデータベースの一貫した状態を保つ。 独立性 (Isolat…