Free download Easy Java Persistence EJP 2.6
Easy Java Persistence (EJP) is a powerful and easy to use relational database persistence API for Java. EJP's main features include:
- automatic object-relational mapping (A-O/RM)
- objects are isolated from database changes, and vice versa
- similar functionality to JPA (only easier)
- performance is equal to or better then any JPA implementation
- a footprint a fraction the size of any other (less than 300k)
- object-oriented queries, inserts, updates, deletes, etc.
- automatic object/relational mapping (A-O/RM)
- automatic handling of all associations
- automatic persistence tracking
- commercially supported software
- and a lot more (see web site)
EJP has no need for mapping annotations or XML configuration, and there is no need to extend any classes or implement any interfaces. You truly do use your Plain Old Java Objects (POJOs). EJP is, by far, the easiest persistence API available for Java. And it can handle anything you need to do!
EJP is this easy (no annotations or configuration):
public static void main(String[] args)
{
// One of many ways to connect to your database
DatabaseManager dbm = DatabaseManager.getDatabaseManager("com.mysql.jdbc.Driver",
"jdbc:mysql://localhost/ejp_example");
dbm.saveObject(new Customer("Smith", "John"));
Customer customer;
if ((customer = dbm.loadObject(new Customer("Smith"))) != null)
{
customer.getSupport().add(new Support(...));
dbm.saveObject(customer);
}
Collection<Customer> list = dbm.loadObjects(new ArrayList<Customer>(), Customer.class);
...
}
And, it's used with normal unadorned (no annotations) class definitions.
Easy Java Persistence EJP 2.6 development, components & libraries software developed by dabuTech. The license of this development, components & libraries software is freeware, the price is 0.00, you can free download and get a free trial before you buy a license or registration. All Easy Java Persistence EJP 2.6 download links are direct Easy Java Persistence EJP full download from dabuTech site or their selected mirrors.
Keywords: persistence, ORM, object-relational, relational, relational database, object database, RDBM, RDBMS, Java, JPA, hibernate, JDBC, database, oracle, mysql, db2, hsqldb, postgresql, jsp, servlet, java web development, java persistence, Freeware, Development, Components & Libraries, dabuTech, Easy Java Persistence EJP
Recent Changes: This release contains major performance enhancements that bring EJP to the top of the list in terms of features and speed across the board. EJP now out-performs the leading database access software in queries, inserts, updates and deletes. And it's far easier!
Install Support: Install Only
Supported Languages: English
Additional Requirements: It's a Java based API that is built over JDBC
|