当前位置:高等教育资讯网  >  中国高校课件下载中心  >  大学文库  >  浏览文档

《J2EE技术》课程教学资源(书籍文献)Hibernate In Action(英文版,CHRISTIAN BAUER GAVIN KING)

资源类别:文库,文档格式:PDF,文档页数:427,文件大小:2.18MB,团购合买
点击下载完整版文档(PDF)

Hibernate in Action

Hibernate in Action

contents foreword xi preface xiii about this book about Hibernate3 and EJB 3 xx author online xxi about the title and cover xxii Understanding object/relational persistence 1 1.1 What is persistence?3 Relational databases 3.Understanding SQL 4.Using SQL in Java 5.Persistence in object-oriented applications 5 1.2 The paradigm mismatch 7 The problem of granularity 9 The problem of subtypes 10 The prou ntity relating to associ 13 The problem of object graph navigation 14.The cost of the mismatch 15 1.3 Persistence layers and alternatives 16 Lavered architecture 17.Hand-coding sistence layer with 18 sing se a entity beans 20.Object-oriented database systems 21 Other options 22 1.4 Object/relational mapping 22 What is ORM?23.Generic ORM problems 25 Why ORM?26 1.5 Summary 29

v contents foreword xi preface xiii acknowledgments xv about this book xvi about Hibernate3 and EJB 3 xx author online xxi about the title and cover xxii 1 Understanding object/relational persistence 1 1.1 What is persistence? 3 Relational databases 3 ■ Understanding SQL 4 ■ Using SQL in Java 5 ■ Persistence in object-oriented applications 5 1.2 The paradigm mismatch 7 The problem of granularity 9 ■ The problem of subtypes 10 The problem of identity 11 ■ Problems relating to associations 13 The problem of object graph navigation 14 ■ The cost of the mismatch 15 1.3 Persistence layers and alternatives 16 Layered architecture 17 ■ Hand-coding a persistence layer with SQL/JDBC 18 ■ Using serialization 19 ■ Considering EJB entity beans 20 ■ Object-oriented database systems 21 Other options 22 1.4 Object/relational mapping 22 What is ORM? 23 ■ Generic ORM problems 25 Why ORM? 26 1.5 Summary 29 Licensed to Jose Carlos Romero Figueroa

vi CONTENTS Introducing and integrating Hibernate 30 2.1 "Hello World"with Hibernate 31 2.2 Understanding the architecture 36 The core interfaces 38.Callback interfaces 40 Types 40.Extension interfaces 41 2.3 Basic configuration 41 Creating a SessionFactory 42.Configuration in non-managed environments 45.Configuration in managed environments 48 2.4 Advanced configuration settings 51 Using XML-based configuration 51·NDI-bound SessionFactory 53.Logging 54.Java Management Extensions (JMX)55 2.5 Summary 58 Mapping persistent classes 59 3.1 The CaveatEmptor application 60 Analyzing the business domain 61 The CaveatEmptor domain model 61 3.2 Implementing the domain model 64 Addressing leakage of concerns 64.Transparent and automated ersistence 65.Writing POJOs 67 Implementing POIO associations 69Adding logic to accessor methods 73 3.3 Defining the mapping metadata 75 Metadata in XML 75.Basic property and class rogramming 84 3.4 Understanding object identity 87 Hibernate88·Choosing prima町ykgs90 3.5 Fine-grained object models 92 Entity and value types 93.Using components 93 3.6 Mapping class inheritance 97 Table per concrete class 97Table per class hierarchy 99 Table per subdlass 101.Choosing a strategy 10g

vi CONTENTS 2 Introducing and integrating Hibernate 30 2.1 “Hello World” with Hibernate 31 2.2 Understanding the architecture 36 The core interfaces 38 ■ Callback interfaces 40 Types 40 ■ Extension interfaces 41 2.3 Basic configuration 41 Creating a SessionFactory 42 ■ Configuration in non-managed environments 45 ■ Configuration in managed environments 48 2.4 Advanced configuration settings 51 Using XML-based configuration 51 ■ JNDI-bound SessionFactory 53 ■ Logging 54 ■ Java Management Extensions (JMX) 55 2.5 Summary 58 3 Mapping persistent classes 59 3.1 The CaveatEmptor application 60 Analyzing the business domain 61 The CaveatEmptor domain model 61 3.2 Implementing the domain model 64 Addressing leakage of concerns 64 ■ Transparent and automated persistence 65 ■ Writing POJOs 67 Implementing POJO associations 69 ■ Adding logic to accessor methods 73 3.3 Defining the mapping metadata 75 Metadata in XML 75 ■ Basic property and class mappings 78 ■ Attribute-oriented programming 84 Manipulating metadata at runtime 86 3.4 Understanding object identity 87 Identity versus equality 87 ■ Database identity with Hibernate 88 ■ Choosing primary keys 90 3.5 Fine-grained object models 92 Entity and value types 93 ■ Using components 93 3.6 Mapping class inheritance 97 Table per concrete class 97 ■ Table per class hierarchy 99 Table per subclass 101 ■ Choosing a strategy 104 Licensed to Jose Carlos Romero Figueroa

CONTENTS 3.7 Introducing associations 105 Managed associations?106.Multiplicity 106 The simplest possible association 107.Making the association 111 3.8 Summary 112 Working with persistent objects 114 4.1 The persistence lifecycle 115 Transient objects 116.Persistent objects 117.Detached 119.Outside the 122 4.2 The persistence manager 126 Making an object persistent 126.Updating the persistent state of a detached instance 127.Retrieving a persistent object 129 Updating a persistent object 129.Making a persistent object transien 130 4.3 Using transitive persistence in Hibernate 131 Persistence by reachability 131.Cascading persistence with Hibernate 133.Managing auction categories 134 Distinguishing between transient and detached instances 138 4.4 Retrieving objects 139 Retrieving objects by identifier 140.Introducing HQL 141 QueyL riteria by example 143.Fetching strategies 143.Selecting a fetching strategy in mappings 146 Tuning object retrieval 151 4.5 Summary 152 Transactions,concurrency,and caching 154 5.1 Transactions,concurrency.and caching 154 5.2 Understanding database transactions 156 JDBC and TA transactions 157.The Hibernate Transaction API 158.Flushing the Session 160.Understanding isolation levels 161.Choosing an isolation level 163.Setting an isolation level 165.Using pessimistic locking 165 5.3 Working with application transactions 168 Using managed versioning 169Granularity of a Session 172.Other ways to implement optimistic locking 174

CONTENTS vii 3.7 Introducing associations 105 Managed associations? 106 ■ Multiplicity 106 The simplest possible association 107 ■ Making the association bidirectional 108 ■ A parent/child relationship 111 3.8 Summary 112 4 Working with persistent objects 114 4.1 The persistence lifecycle 115 Transient objects 116 ■ Persistent objects 117 ■ Detached objects 118 ■ The scope of object identity 119 ■ Outside the identity scope 121 ■ Implementing equals() and hashCode() 122 4.2 The persistence manager 126 Making an object persistent 126 ■ Updating the persistent state of a detached instance 127 ■ Retrieving a persistent object 129 Updating a persistent object 129 ■ Making a persistent object transient 129 ■ Making a detached object transient 130 4.3 Using transitive persistence in Hibernate 131 Persistence by reachability 131 ■ Cascading persistence with Hibernate 133 ■ Managing auction categories 134 Distinguishing between transient and detached instances 138 4.4 Retrieving objects 139 Retrieving objects by identifier 140 ■ Introducing HQL 141 Query by criteria 142 ■ Query by example 143 ■ Fetching strategies 143 ■ Selecting a fetching strategy in mappings 146 Tuning object retrieval 151 4.5 Summary 152 5 Transactions, concurrency, and caching 154 5.1 Transactions, concurrency, and caching 154 5.2 Understanding database transactions 156 JDBC and JTA transactions 157 ■ The Hibernate Transaction API 158 ■ Flushing the Session 160 ■ Understanding isolation levels 161 ■ Choosing an isolation level 163 ■ Setting an isolation level 165 ■ Using pessimistic locking 165 5.3 Working with application transactions 168 Using managed versioning 169 ■ Granularity of a Session 172 ■ Other ways to implement optimistic locking 174 Licensed to Jose Carlos Romero Figueroa

CONTENTS 5.4 Caching theory and practice 175 strategies and scopes 176.The Hibernale cach 179Caching in practice 185 5.5 Summary 194 Advanced mapping concepts 195 6.1 Understanding the Hibernate type system 196 Buil-in mapping types 198 Using mapping types 200 6.2 Mapping collections of value types 211 Sets,bags,lists,and maps 211 6.3 Mapping entity associations 220 Oneto-one associations 220.Many-to-many associations 225 6.4 Mapping polymorphic associations 234 Polymorphic many-to-one associations 234Polymorphi collections 236.Polymorphic associations and table-per- concrete-class 237 6.5 Summary 239 Retrieving objects efficiently 241 7.1 Executing queries 243 The query interfaces 243.Binding parameters 245 Using named queries 249 7.2 Basic queries for objects 250 The simplest quer町y250·Using aliases251·Polymorphic queries 251.Restriction 252.Comparison operators 253 String matching 255.Logical operators 256.Ordering query results 257 7.3 Joining associations 258 Hibernate join options 259.Fetching associations 260 Using aliases with joins 262.Using implicit joins 265 Theta-style joins 267.Comparing identifiers 268 7.4 Writing report queries 269 Projection 270.Using aggregation 272.Grouping 273 Restricting groups with having 274.Improving performance with report queries 275

viii CONTENTS 5.4 Caching theory and practice 175 Caching strategies and scopes 176 ■ The Hibernate cache architecture 179 ■ Caching in practice 185 5.5 Summary 194 6 Advanced mapping concepts 195 6.1 Understanding the Hibernate type system 196 Built-in mapping types 198 ■ Using mapping types 200 6.2 Mapping collections of value types 211 Sets, bags, lists, and maps 211 6.3 Mapping entity associations 220 One-to-one associations 220 ■ Many-to-many associations 225 6.4 Mapping polymorphic associations 234 Polymorphic many-to-one associations 234 ■ Polymorphic collections 236 ■ Polymorphic associations and table-per￾concrete-class 237 6.5 Summary 239 7 Retrieving objects efficiently 241 7.1 Executing queries 243 The query interfaces 243 ■ Binding parameters 245 Using named queries 249 7.2 Basic queries for objects 250 The simplest query 250 ■ Using aliases 251 ■ Polymorphic queries 251 ■ Restriction 252 ■ Comparison operators 253 String matching 255 ■ Logical operators 256 ■ Ordering query results 257 7.3 Joining associations 258 Hibernate join options 259 ■ Fetching associations 260 Using aliases with joins 262 ■ Using implicit joins 265 Theta-style joins 267 ■ Comparing identifiers 268 7.4 Writing report queries 269 Projection 270 ■ Using aggregation 272 ■ Grouping 273 Restricting groups with having 274 ■ Improving performance with report queries 275 Licensed to Jose Carlos Romero Figueroa

CONTENTS 7.5 Advanced query techniques 276 Dynamic queries 276.Collection filters 279 Subqueries 281.Native SOL queries 283 7.6 Optimizing object retrieval 286 Solving the n+1 selects problem 286Using iterate0 queries 289.Caching queries 290 7.7 Summary 292 Writing Hibernate applications 294 8.1 Designing layered applications 295 Using Hibernate in a servlet engine 296 Using Hibernate in an EIB container 311 8.2 Implementing application transactions 320 Choosing an approach to application transactions 329 8.3 Handling special kinds of data 330 Legacy schemas and composite keys 330.Audit logging 340 8.4 Summary 347 Using the toolset 348 9.1 Development processes 349 Top down 350.Bottom up 350.Middle out (metadata oriented)350.Meet in the middle 350 Roundtripping 351 9.2 Automatic schema generation 351 Preparing the mapping metadata 352.Creating the schema 355.Updating the schema 357 9.3 Generating POJO code 358 Adding meta-attributes 358.Generating finders 360 Configuring hbm2java 362.Running hbm2java 363 9.4 Existing schemas and Middlegen 364 Starting Middlegen 364.Restricting tables and relationships 366.Customizing the metadata generation 368 Generating hbm2java and XDoclet metadata 370

CONTENTS ix 7.5 Advanced query techniques 276 Dynamic queries 276 ■ Collection filters 279 Subqueries 281 ■ Native SQL queries 283 7.6 Optimizing object retrieval 286 Solving the n+1 selects problem 286 ■ Using iterate() queries 289 ■ Caching queries 290 7.7 Summary 292 8 Writing Hibernate applications 294 8.1 Designing layered applications 295 Using Hibernate in a servlet engine 296 Using Hibernate in an EJB container 311 8.2 Implementing application transactions 320 Approving a new auction 321 ■ Doing it the hard way 322 Using detached persistent objects 324 ■ Using a long session 325 Choosing an approach to application transactions 329 8.3 Handling special kinds of data 330 Legacy schemas and composite keys 330 ■ Audit logging 340 8.4 Summary 347 9 Using the toolset 348 9.1 Development processes 349 Top down 350 ■ Bottom up 350 ■ Middle out (metadata oriented) 350 ■ Meet in the middle 350 Roundtripping 351 9.2 Automatic schema generation 351 Preparing the mapping metadata 352 ■ Creating the schema 355 ■ Updating the schema 357 9.3 Generating POJO code 358 Adding meta-attributes 358 ■ Generating finders 360 Configuring hbm2java 362 ■ Running hbm2java 363 9.4 Existing schemas and Middlegen 364 Starting Middlegen 364 ■ Restricting tables and relationships 366 ■ Customizing the metadata generation 368 Generating hbm2java and XDoclet metadata 370 Licensed to Jose Carlos Romero Figueroa

CONTENTS 9.5 XDoclet 372 9.6 Summary 376 appendix A:SOL fimndamentals 378 appendix B:ORM implementation strategies 382 B.1 Properties or fields?383 B.2 Dirty-checking strategies 384 appendix C:Back in the real world 388 C.1 The strange copy 389 C.2 The more the better 390 C.3 We don't need primary keys 390 C.4 Time isn't linear 391 C.5 Dynamically unsafe 391 C.6 To synchronize or not?392 C.7 Really fat client 393 C.8 Resuming Hibernate 394 references 395 index 397

x CONTENTS 9.5 XDoclet 372 Setting value type attributes 372 ■ Mapping entity associations 374 ■ Running XDoclet 375 9.6 Summary 376 appendix A: SQL fundamentals 378 appendix B: ORM implementation strategies 382 B.1 Properties or fields? 383 B.2 Dirty-checking strategies 384 appendix C: Back in the real world 388 C.1 The strange copy 389 C.2 The more the better 390 C.3 We don’t need primary keys 390 C.4 Time isn’t linear 391 C.5 Dynamically unsafe 391 C.6 To synchronize or not? 392 C.7 Really fat client 393 C.8 Resuming Hibernate 394 references 395 index 397 Licensed to Jose Carlos Romero Figueroa

foreword Relational databases are indisputably at the core of the modern enterprise. While modern programming languages,including JavaTM provide an intuitive. object-oriented view of application-level business entities,the enterprise data underlying these entities is heavily relational in nature.Further,the main strength of the relational model-over earlier navigational models as well as over later OODB models-is that by design it is intrinsically agnostic to the programmatic manipulation and application-level view of the data that it serves up. Many attempts have been made to bridge relational and object-oriented tech- nologies,or to replace one with the other,but the gap between the two is one of the hard facts of enterprise computing today.It is this challenge-to provide a bridge between relational data and JavaT objects that Hibernate takes on through its object/relational mapping (ORM)approach.Hibernate meets this challenge in a very pragmatic,direct,and realistic way. As Christian Bauer and Gavin King demonstrate in this book,the effective use of ORM technology in all but the simplest of enterprise environments requires understanding and configuring how the mediation between relational data and objects is performed.This demands that the developer be aware and knowledge able both of the application and its data requirements,and of the SQL query lan- guage,relational storage structures,and the potential for optimization that relational technology offers. Not only does Hibernate provide a full-function solution that meets these requirements head on,it is also a flexible and configurable architecture.Hiber- nate's developers designed it with modularity.pluggability.extensibility,and user customization in mind.As a result,in the few years since its initial release

xi foreword Relational databases are indisputably at the core of the modern enterprise. While modern programming languages, including JavaTM, provide an intuitive, object-oriented view of application-level business entities, the enterprise data underlying these entities is heavily relational in nature. Further, the main strength of the relational model—over earlier navigational models as well as over later OODB models—is that by design it is intrinsically agnostic to the programmatic manipulation and application-level view of the data that it serves up. Many attempts have been made to bridge relational and object-oriented tech￾nologies, or to replace one with the other, but the gap between the two is one of the hard facts of enterprise computing today. It is this challenge—to provide a bridge between relational data and JavaTM objects—that Hibernate takes on through its object/relational mapping (ORM) approach. Hibernate meets this challenge in a very pragmatic, direct, and realistic way. As Christian Bauer and Gavin King demonstrate in this book, the effective use of ORM technology in all but the simplest of enterprise environments requires understanding and configuring how the mediation between relational data and objects is performed. This demands that the developer be aware and knowledge￾able both of the application and its data requirements, and of the SQL query lan￾guage, relational storage structures, and the potential for optimization that relational technology offers. Not only does Hibernate provide a full-function solution that meets these requirements head on, it is also a flexible and configurable architecture. Hiber￾nate’s developers designed it with modularity, pluggability, extensibility, and user customization in mind. As a result, in the few years since its initial release, Licensed to Jose Carlos Romero Figueroa

FOREWORD Hibernate has rapidly become one of the leading ORM technologies for enter prise developers-and deservedly so. This book provides a comprehensive overview of Hibernate.It covers how to use its type mapping capabilities and facilities for modeling associations and inheritance:how to retrieve objects efficiently using the Hibernate query lan guage;how to configure Hibernate for use in both managed and unmanaged environments:and how to use its tools.In addition.throughout the book the authors provide insight into the underlying issues of ORM and into the design choices behind Hibernate.These insights give the reader a deep understanding of the effective use of ORM as an enterprise technology. Hibernate in Action is the definitive guide to using Hibernate and to object/rela- tional mapping in enterprise computing today. LINDA DEMICHIEL Lead Architect,Enterprise JavaBeans Sun Microsystems

xii FOREWORD Hibernate has rapidly become one of the leading ORM technologies for enter￾prise developers—and deservedly so. This book provides a comprehensive overview of Hibernate. It covers how to use its type mapping capabilities and facilities for modeling associations and inheritance; how to retrieve objects efficiently using the Hibernate query lan￾guage; how to configure Hibernate for use in both managed and unmanaged environments; and how to use its tools. In addition, throughout the book the authors provide insight into the underlying issues of ORM and into the design choices behind Hibernate. These insights give the reader a deep understanding of the effective use of ORM as an enterprise technology. Hibernate in Action is the definitive guide to using Hibernate and to object/rela￾tional mapping in enterprise computing today. LINDA DEMICHIEL Lead Architect, Enterprise JavaBeans Sun Microsystems Licensed to Jose Carlos Romero Figueroa

preface Just because it is possible to push twigs along the ground with one's nose does not necessarily mean that that is the best way to collect firewood. -Anthony Berglas Today,many software developers work with Enterprise Information Systems(EIS). This kind of application creates,manages,and stores structured information and shares this information between many users in multiple physical locations. The storage of EIS data involves massive usage of SQL-based database manage ment systems.Every company we've met during our careers uses at least one SQL database:most are completely dependent on relational database technology at the core of their business. In the past five years,broad adoption of the Java programming language has brought about the ascendancy of the object-oriented paradigm for software devel opment.Developers are now sold on the benefits of object orientation.However. the vast majority of businesses are also tied to long-term investments in expensive relational database systems.Not only are particular vendor products entrenched. but existing legacy data must be made available to(and via)the shiny new object oriented web applications. However,the tabular representation of data in a relational system is fundamen- tally different than the networks of objects used in object-oriented Java applica- tions.This difference has led to the so-called object/relational paradigm mismatch Traditionally,the importance and cost of this mismatch have been underesti- mated,and tools for solving the mismatch have been insufficient.Meanwhile.Java developers blame relational technology for the mismatch;data professionals blame object technology. xi

xiii preface Just because it is possible to push twigs along the ground with one’s nose does not necessarily mean that that is the best way to collect firewood. —Anthony Berglas Today, many software developers work with Enterprise Information Systems (EIS). This kind of application creates, manages, and stores structured information and shares this information between many users in multiple physical locations. The storage of EIS data involves massive usage of SQL-based database manage￾ment systems. Every company we’ve met during our careers uses at least one SQL database; most are completely dependent on relational database technology at the core of their business. In the past five years, broad adoption of the Java programming language has brought about the ascendancy of the object-oriented paradigm for software devel￾opment. Developers are now sold on the benefits of object orientation. However, the vast majority of businesses are also tied to long-term investments in expensive relational database systems. Not only are particular vendor products entrenched, but existing legacy data must be made available to (and via) the shiny new object￾oriented web applications. However, the tabular representation of data in a relational system is fundamen￾tally different than the networks of objects used in object-oriented Java applica￾tions. This difference has led to the so-called object/relational paradigm mismatch. Traditionally, the importance and cost of this mismatch have been underesti￾mated, and tools for solving the mismatch have been insufficient. Meanwhile, Java developers blame relational technology for the mismatch; data professionals blame object technology. Licensed to Jose Carlos Romero Figueroa

点击下载完整版文档(PDF)VIP每日下载上限内不扣除下载券和下载次数;
按次数下载不扣除下载券;
24小时内重复下载只扣除一次;
顺序:VIP每日次数-->可用次数-->下载券;
共427页,可试读40页,点击继续阅读 ↓↓
相关文档

关于我们|帮助中心|下载说明|相关软件|意见反馈|联系我们

Copyright © 2008-现在 cucdc.com 高等教育资讯网 版权所有