YOUR FEEDBACK
Three RIA Platforms Compared: Adobe Flex, Google Web Toolkit, and OpenLaszlo
NN wrote: Yeah you are right GWT is poor man's Flex. After using GWT on two...
SOA World Conference
Virtualization Conference
$200 Savings Expire May 16, 2008... – Register Today!

2007 West
GOLD SPONSORS:
Active Endpoints
Your SOA Needs BPEL for Orchestration
BEA
Virtualized SOA: Adaptive Infrastructure for Demanding Applications
Nexaweb
Overcoming Bandwidth Challenges with Nexaweb
TIBCO
What is Service Virtualization?
SILVER SPONSORS:
WSO2
Using Web Services Technologies and FOSS Solutions
Click For 2007 East
Event Webcasts

2008 East
PLATINUM SPONSORS:
Appcelerator
Think Fast: Accelerate AJAX Development with Appcelerator
GOLD SPONSORS:
DreamFace Interactive
The Ultimate Framework for Creating Personalized Web 2.0 Mashups
ICEsoft
AJAX and Social Computing for the Enterprise
Kaazing
Enterprise Comet: Real–Time, Real–Time, or Real–Time Web 2.0?
Nexaweb
Now Playing: Desktop Apps in the Browser!
Sun
jMaki as an AJAX Mashup Framework
POWER PANELS:
The Business Value
of RIAs
What Lies Beyond AJAX?
KEYNOTES:
Douglas Crockford
Can We Fix the Web?
Anthony Franco
2008: The Year of the RIA
Click For 2007 Event Webcasts

SYS-CON.TV
TOP THREE LINKS YOU MUST CLICK ON


Apache Beehive - Evolution of the BEA Workshop Runtime
WebLogic Workshop 8.1 included both an application framework and an IDE to support developing enterprise applications

Digg This!

Overview
WebLogic Workshop 8.1 included both an application framework and an IDE to support developing enterprise applications using Page Flows, Controls, and annotated web services. This post describes some of the differences between the 8.1 Workshop runtime and the Apache Beehive project.

The Community
Since 2003 when the WebLogic Workshop 8.1 application framework shipped, it has undergone significant change. Most notably, BEA contributed the framework to the Apache Software Foundation as the Beehive project. This donation was announced in May 2004, and Beehive underwent Apache incubation until August 2005 when it was converted into a top-level Apache project. This means that the code, community, bugs, development process, and future of the project is now open to the entire enterprise Java community. The change doesn't end there, however, as Beehive has made significant technical advances as well.

The Technology
The technology in the Beehive framework has undergone significant change since Workshop 8.1. Beehive Controls are now contained in a lighter, more testable, and more flexible container while maintaining a simple, metadata-driven user model. NetUI is more feature-rich and configurable with advances made in the programming model and presentation layer. The most apparent change from Workshop 8.1 to Beehive is the switch from Javadoc metadata tags to standards-compliant, Java 5.0 annotations.

Controls
The Controls framework is now a generalized, metadata driven POJO framework. The framework has been divided into two parts -- a core framework that supports developing annotation based JavaBeans and a set of system controls and services that specialize the core framework for abstracting access to J2EE resources like JDBC DataSources, JMS queues, and EJBs as well as transaction and security services.

While Workshop 8.1 Controls ran inside of the EJB container, the Controls core framework has no dependence on J2EE. This framework is also testable outside of the J2EE container meaning that business logic and resource access can be unit tested without starting an application container.

The Controls core framework supports loose copuling between a Control interface and one or more implementations -- an implementation can be bound to an interface dynamically. The metadata applied to a Control can now be overridden at runtime to make it easy to configure a control to execute in different environments. For example, the JNDI DataSource name of a database control can be overridden at runtime through this pluggable metadata mechanism.

Controls can be instantiated both declaratively using the @Control annotation and programmatically using a JavaBeans API call. Controls can even be used in the JSP container via the tag. In Beehive, a Control method is neither implicitly transacted or secured. These functions can be optionally added by a Control developer.

System Controls
The System Controls are extensions to the Controls Core framework that provide abstractions for J2EE technologies including EJB, JMS, and JDBC. If you're familiar with the built-in Controls in Workshop 8.1, you will likely be familiar with their successors in Beehive.

For example, the Beehive database control still setting a SQL statement on a method with dynamic binding to method parameters and mapping a ResultSet to a return type, but additional features such as pluggable ResultSet mapping, batch updates, retrieval of generated keys, out of container testing, and other features are now available.

NetUI and Page Flow
Both the Page Flow and UI frameworks in NetUI have evolved as well. Page Flow has evolved to support many new features including:

The architectural difference between a Page Flow and a Control has also been adjusted so that Controls can be contained inside of Page Flows similarly to their containment inside of Web Services. For example, when the Beehive database control returns a JDBC ResultSet to a Page Flow, the Result set will not be closed.

The user interface technology provided as the NetUI JSP tags now support validatable HTML 4.0.1 and XHTML 1.0 transitional / strict rendering. The JSP 2.0 expression language is used by virtuall all of the JSP tag attributes for data data binding. This exposes the full functionality of the JSP 2.0 container's expression language, implicit objects, and JSP functions to NetUI tag users. There is a new data grid that renders arbitrary data sets such as object arrays, XMLBeans, RowSets, and ResultSets. The data grid also supports a flexible sorting, filtering, and paging model, and there is a new AJAX-enabled HTML tree.

The Project Model and Project Builds
Another significant change in Beehive is the project model -- there isn't one! Beehive source files are just that, annotated Java 5.0 without any custom file extensions. They're just pure .java. The framework doesn't make any assumptions about the structure of projects that use the framework which can be used to build web applications, web services, enterprise applications, or even Controls that might run inside of a Java Swing application. Beehive also provides a set of Ant 1.6 macros used to build Controls and Page Flows; these can be combined in arbitrary ways to support any style of project. Finally, builds of Beehive-enabled applications just require the tools available in a Java 5.0 JDK and do not require use of an IDE. Though, use of Eclipse and other tools can certainly make the development experience easier.

Testing
Some of the Beehive source artifacts can also be tested outside of the application container. In the Workshop 8.1 framework, It was challenging to practice test-driven development with Controls as they required the application container and a test framework that could integrate into EJB. Today, Beehive Controls can be tested using a JUnit test container that can run without an application server and will ship with the next version of the framework.

Conclusion
Hopefully this provides a view into how the Workshop 8.1 framework has evolved into Apache Beehive. The changes described here highlight some major advances in Beehive; of course, there are many other new features that are worth a look.

Perhaps most importantly, the community and code are now open, and the Apache Beehive community welcomes involvement in developing the project. The best way to become involved is to subscribe to our mailing lists, download Beehive 1.0, build an application, and send us feedback. More information on getting involved can be found here.

About Eddie O'Neil
Eddie O'Neil is the Apache Beehive VP / PMC Chair and a Staff Engineer at BEA Systems. While currently focusing on Beehive, he has worked previously on WebLogic Workshop 8.1 and WebLogic Portal. He holds BS and MS degrees in Computer Science from the University of Virginia.

SYS-CON India News Desk wrote: WebLogic Workshop 8.1 included both an application framework and an IDE to support developing enterprise applications using Page Flows, Controls, and annotated web services. This article describes some of the differences between the 8.1 Workshop runtime and the Apache Beehive project.
read & respond »
SYS-CON Italy News Desk wrote: WebLogic Workshop 8.1 included both an application framework and an IDE to support developing enterprise applications using Page Flows, Controls, and annotated web services. This article describes some of the differences between the 8.1 Workshop runtime and the Apache Beehive project.
read & respond »
BEA WEBLOGIC LATEST STORIES
Microsoft To Keynote 4th International Virtualization Conference & Expo
Mike Neil is general manager for virtualization strategy in the Windows Server Division at Microsoft. Mike is focused on the delivery of the Windows virtualization technology, including Windows Server 2008 Hyper-V, Microsoft Hyper-V Server and Virtual PC 2007. Mike also directs the tec
3rd International Virtualization Conference & Expo: Themes & Topics
From Application Virtualization to Xen, a round-up of the virtualization themes & topics being discussed in NYC June 23-24, 2008 by the world-class speaker faculty at the 3rd International Virtualization Conference & Expo being held by SYS-CON Events in The Roosevelt Hotel, in midtown
Virtualization Meets DaaS - Desktop-as-a-Service
After a $1.5 million angel round, Desktone, which was started in 2006 by Eric Pulier, who also started SOA Software, US Interactive and IVT, picked up $17 million in first-round funding about a year ago from Highland Capital Partners, SoftBank Capital, Citrix Systems and the China-base
Engelbart's Usability Dilemma: Efficiency vs Ease-of-Use
The mouse was the original idea of Doug Engelbart who was the head of the Augmentation Research Center (ARC) at Stanford Research Institute. Engelbart's philosophy is best embodied, in my opinion, in the design of another device that he invented, the five-finger keyboard - with keys li
Web 2.0 Is Fundamentally About Empowering People
'Unlocking content to be remixed into new business value' is the driver of Web 2.0 in the enterprise, says Rod Smith, IBM VP of Emerging Internet Technologies, in this Exclusive Q&A with Jeremy Geelan on the occasion of IBM's release of a new technology created by IBM researchers, code
Why Do 'Cool Kids' Choose Ruby or PHP to Build Websites Instead of Java?
Here is a question that I have been pondering on and off for quite a while: Why do 'cool kids' choose Ruby or PHP to build websites instead of Java? I have to admit that I do not have an answer. Why do I even care? Because I am a Java developer. Like many Java developers, I get along w
SUBSCRIBE TO THE WORLD'S MOST POWERFUL NEWSLETTERS
SUBSCRIBE TO OUR RSS FEEDS & GET YOUR SYS-CON NEWS LIVE!
Click to Add our RSS Feeds to the Service of Your Choice:
Google Reader or Homepage Add to My Yahoo! Subscribe with Bloglines Subscribe in NewsGator Online
myFeedster Add to My AOL Subscribe in Rojo Add 'Hugg' to Newsburst from CNET News.com Kinja Digest View Additional SYS-CON Feeds
Publish Your Article! Please send it to editorial(at)sys-con.com!

Advertise on this site! Contact advertising(at)sys-con.com! 201 802-3021

SYS-CON FEATURED WHITEPAPERS

MOST READ THIS WEEK
ADS BY GOOGLE
BREAKING NEWS FROM THE WIRES
AmberPoint Extends SOA Governance to Apache ServiceMix, BEA AquaLogic Service Bus 3.0, BEA WebLogic Integration, Cisco ACE XML Gateway, JBoss Enterprise Application Platform and Oracle Fusion
AmberPoint announced today that it has extended the reach of its runtime SOA governance