| By Javier Paniza | Article Rating: |
|
| July 21, 2012 01:00 PM EDT | Reads: |
4,647 |
OpenXava is a framework for Rapid Java Web Development, well-suited for business and database oriented applications.
OpenXava allows you develop applications just by writing simple domain classes with Java or Groovy. The user interface is generated automatically in runtime, without code generation.
OpenXava 4.5 has some new interesting features such as:
- Support for all strategies of JPA inheritance mapping.
- Data for list and collections is obtained via JPA, before JDBC was used.
- Automated Business Logic (ABL) library added.
- All new layout architecture (the code that paints the UI). It still in BETA but can be activated with layout.painter in xava.properties.
And many other useful new features and bug fixes.
Support for all strategies of JPA inheritance mapping
This feature has been demanded for long time by the community. Until now only single table per class hierarchy mapping strategy was supported, that is the case where all classes hierarchy is stored in the same table. Since OpenXava 4.5 you can also use joined and table per class mapping strategies.
That is, you can write some classes in this way:
@Entity
@Inheritance(strategy=InheritanceType.JOINED)
class Computer extends Identifiable {
String name
}
@Entity
class Tablet extends Computer {
int screenSize
}
In this case, you have a table for Computer with ID and NAME columns and a table for Tablet with ID and SCREENSIZE columns. JPA will do a JOIN of the two table when needed.
Also you can write:
@Entity
@Inheritance(strategy=InheritanceType.TABLE_PER_CLASS)
class Shop extends Identifiable {
String name
}
@Entity
class InternetShop extends Shop {
String url
}
In this case, you have a table for Shop with ID and NAME column and another for InternetShop with ID, NAME and URL columns.
From now on OpenXava will generate a correct user interface for the above classes.
Data for list and collections is obtained via JPA
Until now OpenXava has used JDBC to get the data for list and collections. It was in this way for historical reasons, specially because the very first version of OpenXava used EJB 1.0 CMP entities for persistence and EJB CMP is too slow and rigid to implement the OpenXava list behavior, so we used JDBC. But now, JPA is rapid and flexible enough to be used for obtaining the list data, so we have written a new JPATabProvider to read the data of the list, and it is the one used by default. This allows us to support all the inheritance JPA types, but also opens many interesting posibilities for the future, such as using DataNucleus instead of Hibernate as JPA engine to access to non-relational databases.
Automated Business Logic (ABL) library added
The folk from the California startup Automated Business Logic have been working hard to integrate their library, ABL, in OpenXava. ABL allows you to define business logic declaratively using annotations. The wiki explains how to use ABL from OpenXava.
All new layout architecture (the code that paints the UI)
The people from SicFlex, a Dominican company that has developed a complete ERP with OpenXava, have developed a new render engine for OpenXava. This is the more important and complicated part of OpenXava. This new render engine will generate even more complex and beautiful user interfaces for OpenXava applications. It is still in beta and it's disabled by default, but you can activate it with the next entries in xava.properties:
# Layout parser calculate and prepare properties to be renderer.
# This is optional, by default OX uses org.openxava.render.DefaultLayoutParser
layout.parser=org.openxava.web.layout.DefaultLayoutParser
# Layout painter, render all properties in cell forms
# If a valid painter is defined here, view rendering is performed by it.
layout.painter=org.openxava.web.layout.DefaultLayoutPainter
And more
See changelog for the complete list of new features and fixes.
Published July 21, 2012 Reads 4,647
Copyright © 2012 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
More Stories By Javier Paniza
Javier Paniza is the project lead for OpenXava project. He works as software developer at Gestión 400, a software company for public administration in Spain. He has been developing with Java Enterprise since 1998. Also he has been J2EE mentor for development teams in banking projects.
- Cloud People: A Who's Who of Cloud Computing
- New Relic Q1 2013 Blazes Past Growth Targets and Reaches 40,000 Active Customer Accounts
- According to Nick Gholkar, Accounting Apps Make Conducting Business Easier
- Infinity Augmented Reality and Technical Evangelist Robert Scoble Are Enthusiastic About the Upcoming Release of Google Glass
- Gameloft and Fox Digital Entertainment Announce Epic™, the New, Official Game Inspired by the Upcoming Animated Feature from the Creators of Ice Age
- Which Web Browser Offers Best Malware Protection? NSS Labs Releases New 2013 Web Browser Group Test Results
- MicroStrategy Announces General Availability of MicroStrategy 9.3.1
- GoBank Announces Timing of General Availability and National Distribution Relationships at FinovateSpring
- MicroStrategy Announces General Availability of MicroStrategy 9.3.1
- New RushCard Initiatives Aim for Best-in-Industry Transparency
- News America Marketing Partners With Children's Miracle Network Hospitals To Support Upcoming 'EPIC' Campaign
- ClickSoftware Announces 2013 Annual General Meeting of Shareholders to be Held on July 8, 2013
- Cloud People: A Who's Who of Cloud Computing
- AMD and Adobe Collaborate on Upcoming Version of Adobe Premiere Pro Software to Enable Breakthrough Video Editing Performance Through Open Standards
- New Relic Q1 2013 Blazes Past Growth Targets and Reaches 40,000 Active Customer Accounts
- Swipe to See Your Account Balance with Groundbreaking Bank of the West Mobile Apps, Built on Mobiliti from Fiserv
- AWS Going into a New Line of Work
- ipDatatel Winner of Best New Residential Alarm & Monitoring Technology by Security Industry Association
- According to Nick Gholkar, Accounting Apps Make Conducting Business Easier
- Authors of McGraw-Hill Reading Wonders, Key Contributors to Development of Common Core State Standards, Speak on Literacy Issues at International Reading Association's 2013 Annual Convention
- Infinity Augmented Reality and Technical Evangelist Robert Scoble Are Enthusiastic About the Upcoming Release of Google Glass
- Gameloft and Fox Digital Entertainment Announce Epic™, the New, Official Game Inspired by the Upcoming Animated Feature from the Creators of Ice Age
- Which Web Browser Offers Best Malware Protection? NSS Labs Releases New 2013 Web Browser Group Test Results
- Apple Makes Highly Eccentric Hire
- Where Are RIA Technologies Headed in 2008?
- Sun Blew its "iPhone" Java Opportunity to AJAX
- Building an iPhone Application with Adobe AIR
- iPhone Will Make Mobile AJAX and Web 2.0 Happen
- AJAXWorld Conference Adds "iPhone Developer Track"
- Cloud People: A Who's Who of Cloud Computing
- Kindle 2 vs Nook
- Why Build Applications for the iPhone and iPod Touch?
- Designing For the "iPhone" Is a Refreshing Experience
- Apple iPad Reminds Us How Brands Succeed by Transforming Experiences
- New Column: A Geek's Bookshelf
- Android: Who Hates Google Over the Phone?






















