TAILIEUCHUNG - manning Hibernate in Action phần 9

Tham khảo tài liệu 'manning hibernate in action phần 9', công nghệ thông tin, kỹ thuật lập trình phục vụ nhu cầu học tập, nghiên cứu và làm việc hiệu quả | 302 CHAPTER 8 Writing Hibernate applications try if s null s s catch HibernateException ex throw new InfrastructureException ex return s public static void closeSession try Session s Session null if s null catch HibernateException ex throw new InfrastructureException ex public static void beginTransaction F Transaction tx Transaction try if tx null tx getSession .beginTransaction tx catch HibernateException ex throw new InfrastructureException ex public static void commitTransaction F Transaction tx Transaction try if tx null null catch HibernateException ex rollbackTransaction throw new InfrastructureException ex public static void rollbackTransaction Transaction tx Transaction try null if tx null Designing layered applications 303 catch HibernateException ex throw new InfrastructureException ex finally closeSession o The Session of the current thread is stored in this ThreadLocal variable. We use one database transaction for all operations so we use another ThreadLocal for the Transaction. Both Session and Transaction are now associated with the thread and many action executions in a thread can participate in the same database transaction. The getSession method has been extended to use the thread-local variable we also wrap the checked HibernateException in an unchecked InfrastructureException part of CaveatEmptor . We also wrap the exceptions thrown by in this static helper method. The code used to start a new database transaction is similar to the getSession method. If committing the database transaction fails we immediately roll back the transaction. We don t do anything if the transaction was already committed or rolled back. After .

TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.