Đang chuẩn bị liên kết để tải về tài liệu:
Beginning Hibernate From Novice to Professional phần 7

Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG

. Trong những trường hợp này, bạn có thể tạo một bộ lọc Hibernate để loại bỏ các dữ liệu không mong muốn. Bộ lọc cung cấp một cách để ứng dụng của bạn để hạn chế kết quả của một truy vấn dữ liệu qua các tiêu chuẩn của bộ lọc. | CHAPTER 8 USING THE SESSION 189 public static void main String argv System.out.println Creating test user. createUser test System.out.println Proceeding to main test. Session s1 factory.openSession Session s2 factory.openSession try s1.beginTransaction s2.beginTransaction System.out.println Update 1 Query q1 s1.createQuery from Publisher Publisher pub1 Publisher q1.uniqueResult pub1.setUsername jeff s1.flush System.out.println Update 2 Query q2 s2.createQuery from Subscriber Subscriber sub1 Subscriber q2.uniqueResult sub1.setUsername dave s2.flush System.out.println Update 3 Query q3 s1.createQuery from Subscriber Subscriber sub2 Subscriber q3.uniqueResult sub2.setUsername jeff s1.flush System.out.println Update 4 Query q4 s2.createQuery from Publisher Publisher pub2 Publisher q4.uniqueResult pub2.setUsername dave s2.flush s1.getTransaction .commit s2.getTransaction .commit catch RuntimeException e1 e1.printStackTrace Run the boilerplate to roll back the sessions rollback s1 rollback s2 throw e1 finally 190 CHAPTER 8 USING THE SESSION Run the boilerplate to close the sessions close sl close s2 Caching Accessing a database is an expensive operation even for a simple query. The request has to be sent usually over the network to the server. The database server may have to compile the SQL into a query plan. The query plan has to be run and is limited largely by disk performance. The resulting data has to be shuttled back again usually across the network to the client and only then can the application program begin to process the results. Most good databases will cache the results of a query if it is run multiple times eliminating the disk I O and query compilation time but this will be of limited value if there are large numbers of clients making substantially different requests. Even if the cache generally holds the results the time taken to transmit the information across the network is often the larger part of the delay. Some applications will be able to take .

Đã 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.