advertisement
javaboutique
Search Tips
Articles  |   Tutorials  |   Reviews  |   Tools  |   by Category  |   by Date  |   by Name  |   Submit  |   Source  |   Forums  |  
javaboutique
Browse DevX


Partners & Affiliates











advertisement

Tutorials : A Brief Introduction to Struts – Expression Language :

A Brief Introduction to Struts – Expression Language

by Benoy Jose

Introduction:

Struts is a robust and powerful framework which promised scalability, separation of concerns and reusability. The tag libraries introduced in Struts made JSP pages more readable and maintainable. However in the past my opinion was that this neatness of the JSP page came at a price. A confusing tag library structure and a learning curve that could deter a lot of people. I would agree that once a person is comfortable with the tags, writing JSP pages is simple but why would you want to make a developer go through a learning process.

Ideally I would think of a scripting platform which is easy to use, easily maintainable and one that can be learned easily. The present tag libraries shipped with struts deviate from the regular way JSP’s were written and introduce a new way of writing code. This seemed counter productive as a vast number of programmers would now need to learn some new concept of writing JSP pages which could be used mostly with Struts. Another argument in its favor is the ease it offers non-programmers to write JSP code. Honestly though, I haven’t encountered many instances where non-programmers, graphic artists and people with absolutely no programming experience were writing JSP pages. One thing these tags surely help is in streamlining regular and mundane iteration tasks on a JSP page and makes them more consistent and neat, but I still doubted if this should was reason enough to include a complex and confusing tag library into the Struts framework. My opinion surely changed when I saw the Expression Language (EL) or JSTL.

Sample:

How many times have you written JSP code like the one below and got confused with the names, ids and properties of a Struts custom tag. Though the code looked elegant I personally found it difficult to remember all those logic tags and iterate tags and what they and their attributes did. The problem is compounded when you have multiple collections embedded into a collection which in turn is accessible to the page as a bean attribute.

<logic:iterate id="myColl" collection="<%= someColl %>">
Title = <bean:write name="SomeColl" property="title"/>
<logic:iterate id="SecColl" collection ="<%=secColl%>">
<logic:equal name="someName" property="someProp" value="whichValue">
Price = 
</logic:equal>
</logic:iterate>
</logic:iterate> 
Compare the above code with the one below written in JSTL.

<c:forEach var ="myColl" items="${someColl}">
<c:out value="Title is ${myColl.title}">
<c:forEach var="secColl" items="${secColl}">
	<c:if test= "${myColl.name = secColl.name}">
		<c:out value ="Oh they are the Same value">
<c:forEach>
</c:forEach>

So which looks easier to program and still looks as readable. Well though the code above looks like Perl, python or some other scripting language, it is actually not. It is a tag based scripting language that has its roots borrowed from Perl. The language makes it easy for developers who are used to embedding JSP scriptlets in JSP pages. In the following sections I shall describe a few important expression language tags that could be useful in manipulating JSP pages. I will only be discussing the tags and how they can be useful. Please refer to Sun’s website http://java.sun.com/products/jsp/jstl/index.jsp for information on installation and configuration of JSTL.

How to Add Java Applets to Your Site

New on the Java Boutique:

New Review:

Time Management Made Easy with the Quartz Enterprise Job Scheduler
Why not just use the Java timer API? This open source scheduling API boasts simplicity, ease-of-integration, a well-rounded feature set, and it's free!

New Applet:

Reverse Complement
Reverse Complement is a simple applet that converts DNA or RNA sequences into three useful formats.

Elsewhere on internet.com:

WebDeveloper Java
Lots of Java information on webdeveloper.com

WDVL Java
Thorough Java resource at the Web Developer's Virtual Library.

ScriptSearch Java
Hundreds of free Java code files to download.

jGuru: Your View of the Java Universe
Customizable portal with online training, FAQs, regular news updates, and tutorials.

 BlackBerry Application Development Resources
 Microsoft Visual Studio 2010 Showcase
 MSDN Spotlight
 PHP for Windows Showcase
XML error: undefined entity at line 39
advertisement
Receive Articles via our XML/RSS feed
Receive Articles via our XML/RSS feed

JavaBytes
Internet Cyclone
This powerful, easy-to-use, internet optimizer is for Windows 95, 98, ME, NT, 2000 and XP. It's designed to automatically optimize your Windows settings, boosting your Internet connection up to 200%.

ActiveState Debuts Open Source Business Suite
Salesforce Offers Visual App Builder
Codesion Steps Out From CVS's Shadow
Facebook Makes Major PHP Push With HipHop
Free Ride Over for Microsoft Azure Users
Drupal Opens the Garden to Boost CMS
Oracle Talks Plans for Linux, Solaris
Azure Makes Cloud Computing Innovation Safe
Red Hat's JBoss Looks Ahead
Microsoft Readies Two Windows Phone Systems?

Apple Surveying iPhone Developers? Happiness With The App Store
HTML 5 Leaves Client Storage Open to Web Attacks
Basic Market Forecasting with Encog Neural Networks
Location-Aware App Review
The Future of Web Content -- HTML5, Flash, and Mobile Apps
Moonlight 3.0 Preview Offered For Rich Internet Apps on Linux and Unix
Why a Moderator is Key in the Engineering Review Process, Part II
Windows 7 Features Your Clients Will Need on Day One
What Your Clients Will Ask About Windows 7
Melissa Data Helps Developers Improve the Quality of Business Data

Advertising Info  |   Member Services  |   Contact Us  |   Help  |   Feedback  |   Site Map  |   Network Map  |   About


The Network for Technology Professionals

Search:

About Internet.com

Legal Notices, Licensing, Permissions, Privacy Policy.
Advertise | Newsletters | E-mail Offers