TAILIEUCHUNG - Java Persistence with Hibernate 2nd phần 3

cũng không phải là một cập nhật ngay lập tức ban hành khi ứng dụng gọi (). Thay vào đó, các câu lệnh SQL thường được phát hành vào cuối của một giao dịch. Điều này có nghĩa là truy tìm và gỡ lỗi mã ORM là đôi khi không tầm thường. Về lý thuyết, nó có thể cho các ứng dụng để điều trị Hibernate | 144 CHAPTER 3 Domain models and metadata Long storedItemId Long id Session session getSessionFactory .openSession Map loadedItemMap Map ItemEntity storedItemId initialPrice new BigDecimal 100 .commit All Session methods that have class parameters such as load also come in an overloaded variation that accepts entity names. After loading an item map you set a new price and make the modification persistent by committing the transaction which by default triggers dirty checking and flushing of the Session. You can also refer to entity names in HQL queries List queriedItemMaps from ItemEntity where initialPrice p .setParameter p new BigDecimal 100 .list This query returns a collection of ItemEntity maps. They are in persistent state. Let s take this one step further and mix a POJO model with dynamic maps. There are two reasons why you would want to mix a static implementation of your domain model with a dynamic map representation You want to work with a static model based on POJO classes by default but sometimes you want to represent data easily as maps of maps. This can be particularly useful in reporting or whenever you have to implement a generic user interface that can represent various entities dynamically. You want to map a single POJO class of your model to several tables and then select the table at runtime by specifying a logical entity name. You may find other use cases for mixed entity modes but they re so rare that we want to focus on the most obvious. First therefore you ll mix a static POJO model and enable dynamic map representation for some of the entities some of the time. Mixinế dynamic and static entity modes To enable a mixed model representation edit your XML mapping metadata and declare a POJO class name and a logical entity name hibernate-mapping class name entity-name ItemEntity Alternative entity representation

TỪ KHÓA LIÊN QUAN
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.