hibernate

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Database ORM » hibernate 
Hibernate
License:
URL:http://www.hibernate.org/
Description:Hibernate is a powerful, high performance object/relational persistence and query service.
Package NameComment
events
org.hibernate

This package defines the central Hibernate APIs.

org.hibernate.action

This package defines "actions" that are scheduled for asycnchronous execution by the event listeners.

org.hibernate.auction
org.hibernate.bytecode

This package defines the API for plugging in bytecode libraries for usage by Hibernate. Hibernate uses these bytecode libraries in three scenarios:

  1. Reflection optimization - to speed up the performance of POJO entity and component conctruction and field/property access
  2. Proxy generation - runtime building of proxies used for deferred loading of lazy entities
  3. Field-level interception - build-time instrumentation of entity classes for the purpose of intercepting field-level access (read/write) for both lazy loading and dirty tracking.

Currently, both CGLIB and Javassist are supported out-of-the-box.

Note that for field-level interception, simply plugging in a new {@link BytecodeProvider} is not enough for Hibernate to be able to recognize new providers. You would additionally need to make appropriate code changes to the {@link org.hibernate.intercept.Helper} class. This is because the detection of these enhanced classes is needed in a static environment (i.e. outside the scope of any {@link org.hibernate.SessionFactory}.

Note that in the current form the ability to specify a different bytecode provider is actually considered a global settings (global to the JVM).

org.hibernate.bytecode.cglib
org.hibernate.bytecode.javassist
org.hibernate.bytecode.util
org.hibernate.cache

This package defines APIs and implementations for the second-level cache and query cache.

Cache abstracts the underlying cache implementation. CacheConcurrencyStrategy abstracts various strategies for maintaining consistency between the cache and database. QueryCache abstracts the query result set cache.

org.hibernate.cache.entry

This package defines formats for disassembled state kept in the second level cache.

org.hibernate.cfg

This package defines APIs for configuring Hibernate, and classes for building the Hibernate configuration-time metamodel.

org.hibernate.classic

This package implements backward-compatibility with Hibernate 2.1 APIs now deprecated in Hibernate3.

org.hibernate.collection

This package defines a framework for collection wrappers.

org.hibernate.connection

This package abstracts the mechanism for obtaining a JDBC connection.

A concrete implementation of ConnectionProvider may be selected by specifying hibernate.connection.provider_class.

org.hibernate.context
org.hibernate.criterion

A framework for defining restriction criteria and order criteria.

org.hibernate.dialect

This package abstracts the SQL dialect of the underlying database.

A concrete Dialect may be specifed using hibernate.dialect.

org.hibernate.dialect.function

A framework for defining database-specific SQL functions that are available via the dialect.

org.hibernate.dialect.lock
org.hibernate.engine

This package contains classes that are "shared" by other packages, and implementations of some key algorithms.

org.hibernate.engine.loading
org.hibernate.engine.query
org.hibernate.engine.query.sql
org.hibernate.engine.transaction
org.hibernate.event

This package defines an event framework for Hibernate.

org.hibernate.event.def

This package defines a default set of event listeners that implements the default behaviors of Hibernate.

org.hibernate.exception

This package is a fork of Apache commons-lang nestable exceptions.

org.hibernate.hql

This package defines the interface between Hibernate and the HQL query parser implementation (to allow switching between the 2.x and 3.0 HQL parsers).

org.hibernate.hql.ast

An ANTLR-based parser for Hibernate Query Language.

Classes in this package extend the ANTLR-generated parser classes.

org.hibernate.hql.ast.exec
org.hibernate.hql.ast.tree
org.hibernate.hql.ast.util
org.hibernate.hql.classic

This package contains the Hibernate 2.x query parser which is being end-of-lifed.

org.hibernate.id

This package contains internal implementation classes for the main API interfaces.

org.hibernate.id.enhanced
org.hibernate.id.insert
org.hibernate.impl

This package contains implementations of the central Hibernate APIs, especially the Hibernate session.

org.hibernate.intercept

This package implements an interception mechanism for lazy property fetching, based on CGLIB bytecode instrumentation.

org.hibernate.intercept.cglib
org.hibernate.intercept.javassist
org.hibernate.jdbc

This package abstracts the mechanism for dispatching SQL statements to the database, and implements interaction with JDBC.

Concrete implementations of the Batcher interface may be selected by specifying hibernate.jdbc.factory_class.

org.hibernate.jmx

This package exposes a Hibernate instance via JMX.

HibernateService allows configuration and management of the Hibernate runtime. StatisticsService reports information that might be useful for performance tuning.

org.hibernate.loader

This package defines functionality for processing JDBC result sets and returning complex graphs of persistent objects.

Subclasses of Loader define a particular query mechanism.

org.hibernate.loader.collection

This package defines collection initializers

org.hibernate.loader.criteria

This package defines the criteria query compiler and loader

org.hibernate.loader.custom

This package defines a framework for custom loaders that accept handwritten SQL

org.hibernate.loader.custom.sql
org.hibernate.loader.entity

This package defines entity loaders

org.hibernate.loader.hql

This package defines a loader for the AST-based query parser

org.hibernate.lob

This package defines dummy and wrapper implementations of java.sql.Clob and java.sql.Blob.

org.hibernate.mapping

This package defines the Hibernate configuration-time metamodel.

org.hibernate.metadata

This package defines an API for accessing the Hibernate runtime metamodel.

org.hibernate.param
org.hibernate.persister

A persister defines a mapping strategy for a collection or entity.

org.hibernate.persister.collection

This package abstracts the persistence mechanism for collections.

Concrete implementations of CollectionPersister define strategies for persistence of particular collection roles. Collection persisters may optionally implement QueryableCollection if they should be queryable using HQL or loaded using OuterJoinLoader.

org.hibernate.persister.entity

This package abstracts persistence mechanisms for entities, and defines the Hibernate runtime metamodel.

Strategies for persisting entities implement the EntityPersister interface. Optionally, they may implement certain additional interfaces that define contracts with various loaders. Concrete implementations in this package define the built-in inheritance mapping strategies.

org.hibernate.pretty

Classes for pretty printing things for exception and log messages.

org.hibernate.property

This package abstracts the notion of a "property" of an entity. Support for JavaBean properties and Map elements is included.

org.hibernate.proxy

This package defines a framework for lazy-initializing entity proxies.

org.hibernate.proxy.dom4j
org.hibernate.proxy.map
org.hibernate.proxy.pojo
org.hibernate.proxy.pojo.cglib
org.hibernate.proxy.pojo.javassist
org.hibernate.secure

Declarative security for CRUD operations on entities.

org.hibernate.sql

This package defines helper classes for rendering SQL fragments and SQL statements.

org.hibernate.stat

This package exposes statistics about a running Hibernate instance to the application.

org.hibernate.tool.hbm2ddl

The hbm2ddl tool.

org.hibernate.tool.instrument

The instrument tool for adding field-interception hooks to persistent classes using built-time bytecode processing. Use this tool only if you wish to take advantage of lazy property fetching (the <lazy> mapping element).

org.hibernate.tool.instrument.cglib
org.hibernate.tool.instrument.javassist
org.hibernate.transaction

This package abstracts the underlying transaction mechanism (JTA or JDBC) and provides strategies for obtaining application server TransactionManagers.

org.hibernate.transform

Defines strategies for post-processing criteria query result sets into a form convenient to the application.

org.hibernate.tuple

This package defines a runtime metamodel for entities at the object level and abstracts the differences between the various entity modes. It is unaware of mappings to the database.

(This package is still undergoing maturation and will change over the next few months.)

org.hibernate.tuple.component
org.hibernate.tuple.entity
org.hibernate.type

A Hibernate Type is a strategy for mapping a Java property type to a JDBC type or types.

org.hibernate.usertype

Interfaces for user-defined custom types.

org.hibernate.util

Utility classes.

util
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.