Comments
Patrick Collands wrote: collands (AT) gmail com I'd be very grateful for an invitation. Thank you.
Cloud Expo on Google News

SYS-CON.TV

2009 East
PLATINUM SPONSORS:
IBM
Smarter Business Solutions Through Dynamic Infrastructure
IBM
Smarter Insights: How the CIO Becomes a Hero Again
Microsoft
Windows Azure
GOLD SPONSORS:
Appsense
Why VDI?
CA
Maximizing the Business Value of Virtualization in Enterprise and Cloud Computing Environments
ExactTarget
Messaging in the Cloud - Email, SMS and Voice
Freedom OSS
Stairway to the Cloud
Sun
Sun's Incubation Platform: Helping Startups Serve the Enterprise
POWER PANELS:
Click For 2008 West
Event Webcasts
JSF: The Ultimate in Flexibility? Or Complexity?
JSF: The Ultimate in Flexibility? Or Complexity?

I have a love/hate relationship with J2EE. I love the idea of standards that we can all use in our development to improve interoperability, ease integration issues, create a pool of skilled developers, etc. I hate the idea that I have to wait years for the standards to evolve and become usable. And I hate having specs that seem to work well in theory but have no practical implementation behind them. This brings me to the JSF specification.

How long have we heard about JSF (JavaServer Faces) and how it will make it easier to build Web pages? Why did it take more than two and a half years to come up with JSF, which is essentially an event model for Web pages? And it happened at a time when Microsoft was coming out with major innovations (a debatable point, I concede) and huge pushes targeted at providing ease of development for the corporate developer. Visual Studio/.NET developers look at the J2EE community and basically say "these guys don't get it."

Let's take a look back at JSPs. Isn't one of J2EE's goals to encourage encapsulation and object-orientation? If so, why create a standard that encourages a mixture of presentation logic, application logic, business logic, and data access into one page class? The answer is Microsoft. It was a reaction to what Microsoft had: "Hmm, we need something to compete with ASP. Hey, let's make JSP. We'll have tag libraries so we can easily embed components on a page and call it encapsulated." Obviously things have evolved a bit since then and we can now separate the flow of the application from the pages with frameworks like Struts. Well, last time I looked, Struts isn't part of J2EE - which means you're doing nonstandard development - but it is open and has an ecosystem of developers so it's a pretty safe choice. Of course, if you like editing XML, Struts is for you. There are Struts editors out there to help you, but in the end you're still dealing with a lot of complexity.

Now we have JSF, which promises to apply the "ease" of Swing to page development.

My expertise is in building corporate business applications and the needs of the business application developer. What I see in JSF is overengineering. Let's think of every possible usage pattern for Web pages and address them, not necessarily a bad thing. The resulting standard is one in which there are several layers of abstraction, many, many moving parts, and ultimate flexibility.

The problem is that ultimate flexibility comes at a cost - it's called ultimate complexity. From what I can tell, JSF won't actually reduce the complexity of creating Web applications. In fact, it greatly adds to the complexity. Just as JSPs did too little to provide granularity in building pages, JSF goes too far and makes things too granular. Do I really need a separate event to be called for each piece of data that has changed on a form? And possibly separate handlers for each? Be prepared for the framework that will sit in front of JSF to simplify its complexity.

In defense of JSF, it does follow many of the object-oriented Web page design concepts that we had at SilverStream in, oh, 1998. And it does have some appeal to the PowerBuilder developer that I used to be in the mid-'90s. However, experience has shown that building page-based applications with the level of object granularity shown in JSF doesn't make life easier; it makes it more complicated. I've architected and used many frameworks in my career and the trick is to perfect the balance between the ultimate flexibility that the architect wants and the ultimate usability by nonengineer developers.

I just joined ClearNova, and for several years our product, ThinkCAP, has provided a rapid way to build applications and presentations, one thing that attracted me to the company. We're doing the R&D needed to move parts of the platform toward JSF, but I'm concerned we'll lose a lot of the productivity that our current product has by implementing a spec that only object-oriented theorists could love. If we don't allow developers to have complete control over everything that JSF can do, we'll take flak from the purists, even if doing so makes the tool so hard to use that it appeals only to experienced J2EE developers.

Ultimately, my fear is that JSF will once again play into the hands of Microsoft's "complexity attack" and tempt business developers to run for the J2EE exit.

About Steve Benfield
Steve Benfield is CTO of Agentis Software. A technology marketeer and strategist with 20 years of software entreprenuerism experience, he is both a gifted writer and a technical visionary, a combination of qualities that made him the perfect choice of Editor-in-Chief for SYS-CON Media's inaugural publication 12 years ago, PowerBuilder Developer's Journal. Steve's proven ability to determine marketing and technology strategies that align with market needs led to successful stints at SilverStream, where he started as technology evangelist and ended as CTO, and at ClearNova where he was CTO.

In order to post a comment you need to be registered and logged in.

Register | Sign-in

Reader Feedback: Page 1 of 1

Oh Doctor, maybe you should give another 3 months try to JSF, and particularly with MyFaces implementation. They have a pager and sorting for tables, and a lot more.
I've got more than one year of experience in JSF, and I love it !
So much easier than Struts once you've understood the JSF way of doing things.

I had practical experience with JSF 1.1 for three month.
Idea actually is great! :D But I think JSF is not ready for real world commercial application development. :( It's visual components lib is poor, for example there are not standard paging and sorting compinents for table and etc. Of course I can write my oun components, but I have not time and wish to do it. And what is more, JSF code is green and contains bugs. I think we should waiting for a year, before using it. Now JSF is good only for homepages. :(
Today I prefer Struts.

By the way, anybody knows any JSF-based professional commercial projects?

Agreed, pity I didn''t use my bogometer earlier.

I was not impressed by the Coldtags suite suggestion, it costs (which would be inconvenient) and I''m sick & tired of tag spagetti, I think only layout should be done by tags, everything else should be in well designed beans or configuration files.

I go with "guy",

looks like Steve only looks at the pictures. In the end, flexibility rules. JSF is very powerful, and, you can do it simple if you want.

My experience with Microsoft is that everything looks so simple, but in the end you discover that you need the same complexity as any other framework/technique.

The difference is just, that Microsoft tries to sell itself to managers with its appearent simplicity (one manager told me that with .NET we can build 6 times faster than with java, and he believed it), whereas java sells itself to (software) architects.

Maybe this leads to the following conclusion: Steve looks only skin deep (regarding technology) or listens to the wrong people, just like managers.

well;
obviously, this guy never had to deal directly with JSF or try to code a small application using it.
this technology is so easy & intuitive, you dont even need a supporting IDE to develop great apps.

Check out Coldtags suite for example:
http://www.servletsuite.com/jsp.htm
It is amazingly useful collection

OK, so which projects are worth looking at, which are not merely a reaction to Microsoft, but offer genuine benefit for web developers?

I''m interested in the answer because I may have to more a client off the, over-priced, coding nightmare that is Informix Web DataBlade.


Your Feedback
Fred wrote: Oh Doctor, maybe you should give another 3 months try to JSF, and particularly with MyFaces implementation. They have a pager and sorting for tables, and a lot more. I've got more than one year of experience in JSF, and I love it ! So much easier than Struts once you've understood the JSF way of doing things.
Doctor wrote: I had practical experience with JSF 1.1 for three month. Idea actually is great! :D But I think JSF is not ready for real world commercial application development. :( It's visual components lib is poor, for example there are not standard paging and sorting compinents for table and etc. Of course I can write my oun components, but I have not time and wish to do it. And what is more, JSF code is green and contains bugs. I think we should waiting for a year, before using it. Now JSF is good only for homepages. :( Today I prefer Struts. By the way, anybody knows any JSF-based professional commercial projects?
Busy retail developer wrote: Agreed, pity I didn''t use my bogometer earlier. I was not impressed by the Coldtags suite suggestion, it costs (which would be inconvenient) and I''m sick & tired of tag spagetti, I think only layout should be done by tags, everything else should be in well designed beans or configuration files.
Java software architect wrote: I go with "guy", looks like Steve only looks at the pictures. In the end, flexibility rules. JSF is very powerful, and, you can do it simple if you want. My experience with Microsoft is that everything looks so simple, but in the end you discover that you need the same complexity as any other framework/technique. The difference is just, that Microsoft tries to sell itself to managers with its appearent simplicity (one manager told me that with .NET we can build 6 times faster than with java, and he believed it), whereas java sells itself to (software) architects. Maybe this leads to the following conclusion: Steve looks only skin deep (regarding technology) or listens to the wrong people, just like managers.
guy wrote: well; obviously, this guy never had to deal directly with JSF or try to code a small application using it. this technology is so easy & intuitive, you dont even need a supporting IDE to develop great apps.
Dan Novik wrote: Check out Coldtags suite for example: http://www.servletsuite.com/jsp.htm It is amazingly useful collection
Busy retail developer wrote: OK, so which projects are worth looking at, which are not merely a reaction to Microsoft, but offer genuine benefit for web developers? I''m interested in the answer because I may have to more a client off the, over-priced, coding nightmare that is Informix Web DataBlade.
Latest Cloud Developer Stories
The Enterprise Cloud Requires a real time infrastructure and a management discipline that understands and can enforce service level discipline.
CloudBench Applications, Inc. announced its financial results for the three months and nine months ending September 30, 2009. All amounts are stated in Canadian dollars unless otherwise noted. Revenues from BasicGov, the Company's cloud computing solution for local government, gr...
The new contract is an industry first, with CSC being the first Microsoft partner to lead and win a cloud computing services agreement of this scale. Under terms of the contract, CSC will provide Royal Mail Group's 30,000 employees with access to new IT services using Microsoft's...
Operates in over 170 countries and is one of the world’s leading providers of communications solutions and services. Richard Tarboton talks for MeettheBoss.TV on his role as Head of Energy & Carbon for BT and what they are doing towards reducing carbon emissions.
CA is going to put its Agile Planner software on salesforce.com’s Force.com platform in the first half to accelerate development time and give users visibility over their development initiatives to reduce time-to-market. Customers are supposed to be able to accelerate the deploym...
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
ADS BY GOOGLE

Breaking Cloud Computing News
CloudBench Applications, Inc. announced its financial results for the three months and nine months e...