Harnessing Hibernate | 
| Authors: James Elliott, Tim O'brien, Ryan Fowler Publisher: O'Reilly Media, Inc. Category: Book
List Price: $39.99 Buy New: $17.25 You Save: $22.74 (57%)
New (35) Used (10) from $17.25
Avg. Customer Rating: 5 reviews Sales Rank: 17454
Format: Illustrated Media: Paperback Number Of Items: 1 Pages: 380 Shipping Weight (lbs): 1.3 Dimensions (in): 9 x 7 x 1
ISBN: 0596517726 Dewey Decimal Number: 005.3 EAN: 9780596517724 ASIN: 0596517726
Publication Date: April 22, 2008 Availability: Usually ships in 1-2 business days Shipping: Expedited shipping available Condition: Fast Shipping With Online Tracking
|
| Similar Items:
|
| Editorial Reviews:
Product Description Harnessing Hibernate is an ideal introduction to the popular framework that lets Java developers work with information from a relational database easily and efficiently. Databases are a very different world than Java objects, and they often involve people with different skills and specializations. With Hibernate, bridging these two worlds is significantly easier, and with this book, you can get up to speed with Hibernate quickly. Rather than present you with another reference, Harnessing Hibernate lets you explore the system, from download and configuration through a series of projects that demonstrate how to accomplish a variety of practical goals. The new edition of this concise guide walks you through Hibernate's primary features, which include mapping from Java classes to database tables, and from Java data types to SQL data types. You will also learn about Hibernate's data query and retrieval facilities, and much more. By reading and following along with the examples, you can get your own Hibernate environment set up quickly and start using it for real-world tasks right away. Harnessing Hibernate teaches you how to: Perform Object/Relational mapping Work with persistent data from Java code Work with groups and relationships between objects Extend Hibernate's rich type support for your own needs Simplify query creation using criteria and examples Use the Hibernate Query Language (HQL) and understand how it differs from SQL Use Hibernate in conjunction with Spring Use Hibernate in conjunction with other packages, such as the Stripes web framework and the Eclipse IDE Once you're past the first few chapters, you can jump to topics that you find particularly interesting or relevant. Allbackground material and explanations of how Hibernate works and why is in the service of a focused task. Source code can be downloaded from the book's website. If using SQL is an uncomfortable chore, Harnessing Hibernate offers you an effective and trouble-free method for working with the information you store in your applications.
|
| Customer Reviews:
Excellent July 18, 2008 This book is a wonderful book for beginning hibernate. It has the right balance of theory and practice, and it is always right to the point and concise. I used it to get up to speed on hibernate 3 after not touching hibernate for two and a half years, and it was exactly what I needed. The paper quality is pretty bad, like some others have noted. However, I have read through about 70% of it (the only 70% I am going to read) and the paper/binding has shown no sign of deterioration, so do not let that keep you from reading it.
Great Hibernate Resource! July 3, 2008 0 out of 1 found this review helpful
'Harnessing Hibernate' is a great resource for learning more about and how to use the Hibernate technology to map Java code to relational databases and vice versa. In today's programming world you want to be able to create object that directly map to database tables and fields. Not only does this allow for persistence and good scalability, it hides the SQL stuff that can otherwise make for difficult programming and puts them into familiar classes instead. Before this book there really wasn't great resources out on the market for learning about this technology but that is no longer the case. With 350+ pages spread over 14 chapters, good writing and separation of content this is a must have for all seasoned Java database and Hibernate developers.
***** RECOMMENDED
One of the best computer-related instruction books I have ever read June 30, 2008 2 out of 2 found this review helpful
While I was at work one day, I decided to write the persistence layer of an application that my team was working on. I had minimal experience with Hibernate because I had worked on another project where a coworker implemented the persistence layer and used Hibernate. I got to see a bit of the magic that Hibernate provides, and I thought it would be excellent for my current project. My problem was that I did not really know how to set everything up.
I searched on Amazon for books about Hibernate, and I wanted to make sure I bought one that was fairly current so that I could see how to use it with the latest technologies. I came upon Harnessing Hibernate which is only a few months old. Even though there were only two reviews, after reading them, I decided to take a chance on this book. Wow, these reviewers were exactly right!
The authors take you through a music cataloging project. Their progression through the concepts is nothing short of amazing. They seem to give the perfect amount of detail and explanation at each step, and then you begin to form questions in your mind. They seem to anticipate them, because these questions always seem to be answered in the next section.
I should inform you that I often dislike reading books on computer technologies. I find that most authors tend to make the books as dry as possible, going on and on, ad nauseam, about every detail and idiosyncrasy of the topic. The authors of Harnessing Hibernate, however, make the book completely enjoyable to read. Their style is conversational, and they do not try to talk over anyone's head. They give you plenty of useful information that you can use immediately, and inform you of other sources to investigate if you want more information on a particular aspect of the material.
Anyway, if you want to learn Hibernate in a clear and concise manner, then you will not be disappointed if you buy this book. It will keep you reading, and you won't fall asleep while doing so. And hey, you'll understand all of the material and you will even learn a lot about Hibernate! I do not give complements lightly, but this is indeed a perfect book.
Harness Hibernate... fast June 10, 2008 5 out of 6 found this review helpful
Harnessing Hibernate is a fine book, which uses the most efficient ways to achieve its goal. Though focusing on Hibernate, the book enlists the usage of various frameworks such as Spring Framework, Stripes and Maven.
Part I: Hibernate in a hurry: The core
Build: The book starts with how you should build which used to be a dread. The authors choose to use Ant - Maven task, which is cool. I use Maven directly, but that's beside the point. Both approaches are better than finding the JARs on the web.
Database: HSQLDB is what the book recommends and for some reason it makes sense . It really is the best way to go. I am not suggesting to format your Oracle DB server and install HSQLDB; but I am suggesting you stay focused and worry about the big DB later; the book goes back to a larger DB; so don't worry too much right now.
The Project Hierarchy: This one, I must admit, I do not care for; I think Maven directory structure is better and one should not have to create this manually, but that's probably personal. This is later reviewed in Chapter 12: Maven in More Depth.
Core hibernate: The book doesn't mess around too much. It explains how to configure hibernate and before long you find your hands in hibernate mapping. From chapter 2 through chapter 9 you'll find yourself in the core of Hibernate: mapping, hibernate configuration, persistent objects (creating and finding), collections and associations, richer associations, custom value types, annotations, criteria queries and a look at HQL.
Part II: Playing nice with others: beyond the core
MySQL - a nice short intro to MySQL is shown.
Hibernate and Eclipse - yes, this is in here too (and up to date Eclipse v3.3). And just in time for you to get ready for a later chapter, Spring and Hibernate, which is the way J2EE is going anyway (lightweight).
Maven in more depth - Maven does not have many books out there and this is a very nice in depth explanation. If you think you've gotten short changed, take a look at Java Power Tools (you'll love that book too). The chapter is enough to get you moving with Maven, and if your Maven experience is anything like mine, you'll never go back to Ant.
Hibernate and Spring - this book could not have gotten any better than this. Spring, is like a dream. Rod Johnson, Colin Sampaleanu and team have done it well. Unlike the other monolithic approach, Spring takes advantage of already existing frameworks and offers this invisible layer to allow you to focus on what's important; your business code... and, of course, the book delivers. It shows you how Spring simplifies Hibernate development. If you're new to layered development a la separation of concerns (SoC) the book first introduces you to the DAO pattern. It then continues with the reason so many of us like the Spring framework: HibernateDAOSupport and the HibernateTemplate. Although I prefer to use the HibernateTemplate directly and avoid loosing my one chance at inheritance, I agree with the book examples. The authors are tying to help you understand what kind of support Spring offers.
Stripes with Spring and Hibernate - Now, the book could just end here and be done with it, but no, it continues with the web app. I mean, wow. The book ends with style. It uses Tomcat - and I think it does it to prove a point. You don't need a fancy big server to get J2EE running these days. Stripes is a cool project to work with and I thank the authors for introducing me to a framework I was clueless about.
This book is truly amazing. If you're looking for an in-depth approach to Hibernate take a look at Java Persistence with Hibernate. If, however, you're an impatient developer this is the book for you. I think it offers just enough in-depth theory and it keeps you awake with frequent easy to understand code. James Elliott, Timothy M. O'Brien and Ryan Fowler; I thank you all for writing this book.
/.Will
A Good Time for Hibernate Developers May 10, 2008 2 out of 7 found this review helpful
I just got this book in the mail last week, as it was just recently released. From reaing it, I can tell you that it carries on the tradition of high quality editing and content that we expect from O'Riely books.
There has been a real lack of good, up to date, READABLE books about Hibernate on the market. You only have to scan amazon to see some of the horrible reviews many books have received. But this book is excellent, and I can assure you that many five star reviews will follow this one.
|
|
|