Display:
Sorted by Most Recent
30 DEC 08
La terraza de Aravaca: Lessons learned using GWT, Axis and JPA simultaneously SAVE
PEOPLE
Here you have some lessons learned that should be taken into account when working with the Google Web Toolkit, Axis and any of the JPA implementations out there
TAGS
21 DEC 08
Dustin's Software Development Cogitations and Speculations: 2008: Year of the Java Persistence API SAVE
PEOPLE
It appears that one of the most popular themes in Java development in 2008 has been the Java Persistence API (JPA). I base this statement on the recent announcements that JPA-focused articles appeared in the Top Ten lists of articles for both Oracle Technology Network (OTN) and JavaLobby.
TAGS
16 OCT 08
InfoQ: Java In-Memory Persistence with Space4J SAVE
PEOPLE
Space4J is a simple database system that will let you work with Java Collections in memory. Since memory is several orders of magnitude faster than disk for random access to data, Space4J provides better scalability for "real-time" web applications and systems that require performance.
TAGS
27 SEP 08
Using Java Persistence in a J2EE 1.4 Web Application SAVE
PEOPLE
This document takes you through the basics of how to add Javaâ„¢ Persistence functionality to a J2EE 1.4 web application. Though the Java Persistence API was introduced as part of the Java EE 5 platform, it is possible to use Java Persistence in a J2EE 1.4 application
TAGS
21 SEP 08
Space4J - Java Persistence SAVE
PEOPLE
Space4J is a simple database system that will let you work with Java Collections in memory. Instead of having to perform a SQL SELECT to fetch a User from a database table, you can just access the users map (java.util.Map) and call users.get(id). With Space4J, all your data is kept in memory inside the JVM. There is no need for an extra database application
TAGS
03 AUG 08
Adam Bien's Weblog : Useful Explanation: "iBATIS, Hibernate, and JPA: Which is right for you?", Strange Conclusion SAVE
PEOPLE
iBatis is the most powerful, but not that simple. It comes with highest amount of XML-configuration, which has to be maintained during the whole lifecycle
TAGS
15 JUL 08
iBATIS, Hibernate, and JPA: Which is right for you? - Java World SAVE
PEOPLE
In this article we introduce and compare two of the most popular open source persistence frameworks, iBATIS and Hibernate. We also discuss the Java Persistence API (JPA)
TAGS
26 JUN 08
Software Sensation Inc. - jWebApp Web Application Framework, Install&Update, MemSL - Memory Structures Library SAVE
PEOPLE
jPersist is an extremely powerful object-relational persistence API that is based on the Active-Record and Data-Mapper patterns. jPersist wraps JDBC functionality and can work with any relational database, and any type of connection resource
TAGS
03 MAY 08
Java Persistence 2.0 Early Draft Available - Linda DeMichiel's Blog SAVE
PEOPLE
We've just released the Early Draft of the Java Persistence 2.0 specification, so I thought it would be a good time to report on some of the work we've been doing in the JSR 317 Expert Group.
TAGS
06 FEB 08
mike desjardins' blog: A Delicious and Simple JPA Mapping tutorial: The Pizza Shop SAVE
PEOPLE
So, another JPA tutorial. What makes this one different? Well, for one thing, this one comes with a working, downloadable project that works with Eclipse, NetBeans, and IntelliJ IDEA 7. It's packaged with Hibernate, Toplink, and OpenJPA. And it's been tes