PathProxy is a design pattern for persisting complex relationships without cluttering up your database. In this article JavaWorld contributor Matthew Tyson...PathProxy is a design pattern for persisting complex relationships without cluttering up your database. In this article JavaWorld contributor Matthew Tyson introduces his PathProxy pattern and walks you through an example application implementation based on Spring, JSF, and JPA/Hibernate.
to spring develop hibernate software java persistence patterns java_ee article by gresch on Jul 18, 2008, 6:30 PM- to guide development database persistence api java oop hibernate v0805 by flint63 on Jun 30, 2008, 10:00 PM
The goal of Autofetch is reduce the modularity penalty and programmer burden of specifying associations which should be loaded with an object query. These ...The goal of Autofetch is reduce the modularity penalty and programmer burden of specifying associations which should be loaded with an object query. These specifications are sometimes are called fetch profiles, prefetch directives, or joins. These specifications are an important performance optimization because they reduce the number of round-trips to a persistence store whether that be a relational database, object database, or flat file. Autofetch is a library which integrates with object persistence tools and automatically handles prefetching data. Using dynamic program profiling, Autofetch determines the right prefetch directives for each query a program executes.
to java development db hibernate software persistence java_ee by gresch on Jun 16, 2008, 12:26 PMWhat is Ebean?
Ebean is a Object Relational Mapping Persistence Layer written in Java (Open Source LGPL license).
* Providing the features of EJB...What is Ebean?
Ebean is a Object Relational Mapping Persistence Layer written in Java (Open Source LGPL license).
* Providing the features of EJB3's JPA (and more)
* No container required
* JPA compatible ORM mapping (@Entity, @OneToMany, ...)
Why use Ebean?
Ebean provides a simpler approach to Object Relational Mapping. It does this by not requiring session objects such as JPA EntityManager, JDO PersistenceManager, Hibernate Session, Toplink ClientSession.
to java_ee java db software jpa develop persistence ejb by gresch on Jun 16, 2008, 12:23 PM- to xml persistence guide software ibm castor type development data v0805 java framework by flint63 on Mar 31, 2008, 10:00 PM
- to persistence java hibernate tutorial video by sac on Feb 29, 2008, 1:26 PM
As also described in the Hibernate book from King and Bauer: "With the adoption of Java™ 5 generics, the idea of a generic typesafe Data Access Object (DAO...As also described in the Hibernate book from King and Bauer: "With the adoption of Java™ 5 generics, the idea of a generic typesafe Data Access Object (DAO) implementation has become feasible. In this article, system architect Per Mellqvist presents a generic DAO implementation class based on Hibernate. He then shows you how to use Spring AOP introductions to add a typesafe interface to the class for query execution."
to generics develop persistence java_ee dao pattern hibernate software java springframework by gresch and 2 other people on Jan 15, 2008, 3:38 PM- to persistence oop api v0805 java software intro development database by flint63 on Dec 31, 2007, 10:00 PM
TopMind Systems, jLynx Persistence Framework, simplified java persistence, code generator, JPA, Hibernate, TopLink, iBatis, SQL Server, Oracle, MySQL, JDBC jLynx is a simple, lite, hi-performance layer over the JDBC API. Persist and retrieve POJO and Map objects directly. Designed for developer productivity. S...jLynx is a simple, lite, hi-performance layer over the JDBC API. Persist and retrieve POJO and Map objects directly. Designed for developer productivity. Simpler, easy to learn, easy to configure as compared to Hibernate, JPA, etc.
jLynx generates JavaBean objects based on your database schema. For example if you have 24 tables and views in your database, jLynx will create 24 objects with properties that map to the field names in each table. The jLynx Generator creates the objects and compiles them. You can also use the generated source instead if you prefer to customize the objects. Using the API to persist objects is trivial.
jLynx Framework implements the Relational interface, which has all necessary methods to persist objects and fetch entire collections of objects.
jLynx leverages the strengths of SQL and the strengths of Java without having to write/maintain J2EE code. It is truly the best of both worlds.
to software java develop sql db server jdbc persistence framework by gresch on Oct 30, 2007, 5:59 PMReflection is a programming language technique that achieves dynamic adaptability. It can be used to reach aspect –or any kind of application– adaptation a...Reflection is a programming language technique that achieves dynamic adaptability. It can be used to reach aspect –or any kind of application– adaptation at runtime. Most runtime reflective systems are based on the ability to modify the programming la
to persistence classification reflection metaprogramming by fmeyer on Oct 23, 2007, 6:09 PMHiberObjects is an Eclipse plugin for object oriented design of classes and unit tests for Java Persistence API or Hibernate. PropertyChange support and DT...HiberObjects is an Eclipse plugin for object oriented design of classes and unit tests for Java Persistence API or Hibernate. PropertyChange support and DTO's for Google Web Toolkit (GWT) can also be generated.
to software persistence computing ide develop tools plugin java hibernate eclipse by gresch on Aug 16, 2007, 2:32 PM- to API programming Java persistence software by timo on Aug 7, 2007, 12:53 AM
Hibernate is a powerful, high performance object/relational persistence and query service. Hibernate lets you develop persistent classes following object-o...Hibernate is a powerful, high performance object/relational persistence and query service. Hibernate lets you develop persistent classes following object-oriented idiom - including association, inheritance, polymorphism, composition, and collections. Hibernate allows you to express queries in its own portable SQL extension (HQL), as well as in native SQL, or with an object-oriented Criteria and Example API.
to ORM development .NET database storage persistence Hibernate Java DB by timo and 6 other people on Aug 7, 2007, 12:50 AMjPersist is an extremely powerful, light-weight, object-relational database persistence API that manages to avoid the need for configuration and annotation...jPersist is an extremely powerful, light-weight, object-relational database persistence API that manages to avoid the need for configuration and annotation; mapping is automatic. jPersist uses JDBC and can work with any relational database and any type of connection resource. jPersist uses information obtained from the database to handle mapping between the database and Java objects, so mapping configuration is not needed, and annotation is not needed, in fact there is no configuration needed at all.
to Java software library framework JDBC persistence by timo on Jul 23, 2007, 12:11 AM- to persistence osgi db4a by charoy on Jun 20, 2007, 7:35 PM
About XStream
XStream is a simple library to serialize objects to XML and back again.
Features
* Ease of use. A high level facade is supplied th...About XStream
XStream is a simple library to serialize objects to XML and back again.
Features
* Ease of use. A high level facade is supplied that simplifies common use cases.
* No mappings required. Most objects can be serialized without need for specifying mappings.
* Performance. Speed and low memory footprint are a crucial part of the design, making it suitable for large object graphs or systems with high message throughput.
* Clean XML. No information is duplicated that can be obtained via reflection. This results in XML that is easier to read for humans and more compact than native Java serialization.
* Requires no modifications to objects. Serializes internal fields, including private and final. Supports non-public and inner classes. Classes are not required to have default constructor.
* Full object graph support. Duplicate references encountered in the object-model will be maintained. Supports circular references.
* Integrates with other XML APIs. By implementing an interface, XStream can serialize directly to/from any tree structure (not just XML).
* Customizable conversion strategies. Strategies can be registered allowing customization of how particular types are represented as XML.
* Error messages. When an exception occurs due to malformed XML, detailed diagnostics are provided to help isolate and fix the problem.
* Alternative output format. The modular design allows other output formats. XStream ships currently with JSON support and morphing.
to persistence codehaus xml framework software java by gresch and 2 other people on Jun 13, 2007, 11:28 PMRefactoring Java code is far simpler than refactoring a relational database, but fortunately that isn't so much the case with object databases. In this ins...Refactoring Java code is far simpler than refactoring a relational database, but fortunately that isn't so much the case with object databases. In this installment of The busy Java developer's guide to db4o, Ted Neward introduces you to yet another advant
to tutorial database java howto db4o persistence by charoy on Jun 5, 2007, 9:15 PMBased on Oracle's contribution of TopLink
to eclipse persistence db java by fsteeg on Mar 21, 2007, 6:19 PMSimple Persistence for Java is an open source object-relational persistence library that uses a custom query language and built-in database support to simp...Simple Persistence for Java is an open source object-relational persistence library that uses a custom query language and built-in database support to simplify object persistence in Java applications.
to orm java db persistence by fsteeg on Feb 20, 2007, 8:49 PMJPOX is a free and fully compliant implementation of the JDO1, JDO2 specifications, providing transparent persistence of Java objects. It supports persiste...JPOX is a free and fully compliant implementation of the JDO1, JDO2 specifications, providing transparent persistence of Java objects. It supports persistence to all of the major RDBMS on the market today, persistence to the DB4O object datastore, supporting all of the main Object-Relational Mapping (ORM) patterns demanded by today's applications, allows querying using either JDOQL, SQL, or JPQL, and comes with its own byte-code enhancer. JPOX is available under the Open Source Apache 2 license, allowing access to not just a top quality Java persistence implementation but also to the source code, allowing you to contribute to the success story of the principal standards-compliant Open Source persistence implementation in the world today.
to db40 software develop db frameworks persistence java jdo by gresch on Feb 15, 2007, 11:46 AM