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.

 Microsoft Visual Studio 2010 Showcase
 Avaya Developer 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%.

Windows 7: From Beta to Final Code in One Year
Google Shows Off Chrome OS, Releases Source
Microsoft Shows Off Silverlight 4, IE9 Plans
Metasploit Expands Vulnerability Test Framework
HyperCard Reborn?
Fedora 12 Takes Aim at Linux Networking
Top Supercomputer Nearly Doubles in Speed
Fedora 12 Linux Tackles Virtualization
Apple Gives iPhone Developers App Status Tracker
Novell Sets OpenSUSE 11.2 Free

Creating Custom Export Filters for StarOffice with XSLT
WPF Wonders: Using DataTemplates
Crystal Reports Family Offers Options for Developers
Avaya Aura Session Manager video
Avaya Aura Overview video
Exploring HTML 5's Audio/Video Multimedia Support
Overriding Virtual Functions? Use C++0x Attributes to Avoid Bugs.
Understanding the Cloud Computing Security Vulnerabilities
Cisco and IBM Target a Greener World
Upgrade to Visual Studio 2010 with the Ultimate Offer

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

internet.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

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