Similar Articles |
|
JavaWorld May 23, 2003 Andrei Cioroianu |
Call JavaBean methods from JSP 2.0 pages JavaServer Pages (JSP) 2.0 introduced many new features that will change the way you develop Java Web applications. This article walks you through three examples that show how to separate the JSP/HTML markup from the Java code using the new expression language (EL) and developing custom tags with dynamic attributes. |
JavaWorld August 2000 Simon Brown |
Encapsulate reusable functionality in JSP tags JavaServer Pages (JSP) are a great mechanism for delivering dynamic Web-based content. This article will show how easy it is to build, deploy, and use your own custom JSP tag, using the Servlet/JSP reference implementation, Tomcat. |
JavaWorld July 25, 2003 Dustin Marx |
More JSP best practices Advancements in the JavaServer Pages specification have eased the development of highly maintainable and standardized JSP-based Web applications. This article discusses key advancements and how each of them enables easier development of robust JSP Web applications. |
Linux Journal July 2001 Reuven M. Lerner |
Custom JSP Actions Learning shorthand for complicated Java code.... |
JavaWorld December 5, 2003 Borislav Iordanov |
Dynamic server includes with local runtime context This article shows how to achieve true black-box reuse of frontend logic in the form of JSP pages or Java servlets, by wrapping the servlet request object and effectively creating a local runtime context for an included resource. |
JavaWorld February 2002 Julien Mercay & Gilbert Bouzeid |
Boost Struts with XSLT and XML Struts is an innovative server-side Java framework designed to build Web applications. This article introduces the processing model underlying Struts, describes the Struts framework itself, and presents Model 2X, which enhances Struts... |
JavaWorld December 2002 David Geary |
A first look at JavaServer Faces, Part 2 JavaServer Faces, with a well-defined request processing lifecycle and a rich component hierarchy, will profoundly affect the development of J2EE applications. Part 1 of this two-part series introduced JavaServer Faces and explored its fundamental concepts. Part 2 examines more advanced concepts such as custom validation, internationalization, and custom component implementation. |
JavaWorld February 2002 Victor Okunev |
Generate JavaBean classes dynamically with XSLT For some projects, you need a more flexible business object structure. This article lays a foundation for a simple framework to build truly adaptive systems, saving you hours of routine programming... |
JavaWorld September 2002 David Geary |
A look at the Composite design pattern The Composite design pattern lets you treat primitive and composite objects exactly the same. This article explores how to implement the Composite pattern and how to use it with the Tiles tag library from the Apache Struts application framework. |
JavaWorld November 2001 Dustin Marx |
JSP best practices This article discusses simple approaches and best practices that, when used correctly, facilitate JavaServer Pages (JSPs) development. These tips ensure reusable and easily maintainable JSPs, JSPs that allow developers to focus on their programming strengths... |
JavaWorld January 2001 Vincent DiBartolo |
FreeMarker: An open alternative to JSP You can place FreeMarker tags in text files of any format and are not married to any server-side architecture or solution. FreeMarker is easily extensible, and you can quickly build a library of reusable custom objects that will live longer than the technology solutions that utilize them... |
JavaWorld December 2001 David Geary |
Web application components made easy with Composite View If you want to develop flexible and reusable JSP-based Web applications, you must separate presentation logic from business logic. Beyond that, you can extend that flexibility and reusability by separating content from layout... |
JavaWorld December 2001 Taylor Cowan |
XSLT blooms with Java XSLT (Extensible Stylesheet Language Transformation) offers an excellent vehicle for styling XML documents as HTML. However, it shows some weakness when the transformation requires extensive logic. When XSLT languages fail to complete the job, you can extend your stylesheets with Java classes and take advantage of both languages' features. This article demonstrates how to extend XSLT with Java. You will learn how to instantiate and invoke methods on Java objects from within an XSLT stylesheet. The article also demonstrates how XML nodes are passed to Java classes and returned back to the stylesheet for further processing. |
JavaWorld November 14, 2003 Allen Holub |
Create client-side user interfaces in HTML, Part 2 This "Create Client-Side User Interfaces in HTML" series continues by examining the HTMLPane sources. Part 2 offers examples of how to customize the JEditorPane to support custom tags and also provides an extended description of the Factory Method design pattern. |
JavaWorld September 2000 David Geary |
JSP templates This article presents a template mechanism for JSP that allows layout to be encapsulated and reused. JSP templates minimize the impact of layout changes and encourage modular design... |
JavaWorld October 2001 Michael Ball |
Dispatcher eases workflow implementation This article explains how to use an Extensible Stylesheet Language (XSL)-based application employing the Dispatcher design pattern to create simple workflows and a reusable API... |
JavaWorld December 2000 Thor Kristmundsson |
Strut your stuff with JSP tags Learn how to use the custom tags from the open source Struts library and create extensions that ease the coding of properties associated with field values and user input validation... |
JavaWorld August 2001 Rinaldo Di Giorgio |
Serve clients' specific protocol requirements with Brazil, Part 5 How to use Brazil to process content from diverse Websites, tailor the content to reflect a user's desires, and provide the content as a Web service -- and how to use Brazil to integrate new technologies with legacy Web applications that aren't XML-enabled... |
JavaWorld August 29, 2003 |
Letters to the Editor JavaWorld authors discuss byte code encryption; jEdit's attractive features; method synchronization; and more. |
JavaWorld September 2002 Joe Walker |
XML glossary With XML evolving at a rapid pace, many developers get lost in a sea of acronyms. This article defines many XML technologies crucial to Java developers |
JavaWorld October 3, 2003 Allen Holub |
Create client-side user interfaces in HTML This article presents a variant on Swing's JEditorPane that makes it possible to specify an entire screen of your client-side user interface (UI) in HTML. |
JavaWorld September 2000 Andre Tost |
XML document processing in Java using XPath and XSLT The XSLT and XPath standards provide a way of handling certain problems that is more elegant and efficient than simply using the DOM API. In fact, using DOM, XSLT, and XPath together, applying each to different problems, will lead to the best code... |
JavaWorld June 2000 Michael Ball |
XSL gives your XML some style Separating content from presentation is one of XML's major features. But eventually you need to style that XML into something presentable. That's where XSL (Extensible Stylesheet Language) comes in -- XSL transforms XML from one document type to another. Servlets provide a great platform for doing those translations. In this article you'll learn how to transform XML into HTML, using servlets. |
JavaWorld June 2002 David Geary |
Take command of your software How to use the Command pattern both in client-side Java to attach application-specific behavior to Swing menu items and in server-side Java to implement application-specific behavior with the Apache Struts application framework. |
JavaWorld June 2001 Brian R.J. Heumann |
Personalize your Website with skins You can give your users control over your Website's look and feel by exploiting user profiles and factoring out key visual design elements into skins. This article demonstrates a basic skin server and shows how you can use that server to begin personalizing your JSP-based Website. (1,000 words) |
JavaWorld January 2001 Stanley Santiago |
Combine the power of XPath and JSP tag libraries In this article, we'll examine the XPath custom tag library for JSPs and see a tag collection that provides simple control constructs and a uniform attribute value substitution facility, all of which combine to reduce complexity and improve functionality... |
JavaWorld May 2001 Serge Knystautas |
Cache in on faster, more reliable JSPs Want faster, more reliable JSPs? The OpenSymphony group has released the OSCache tag library, which provides fast in-memory caching within your existing JSPs. Find out why it's a great example of open source engineering and innovation... |
Linux Journal November 2001 Michael Yuan |
Linux in Education: Implementing a Research Knowledge Base Keeping up with large volumes of research requires a system both flexible and intuitive... |
JavaWorld January 2001 Milan Adamovic |
Process JSPs effectively with JavaBeans The JavaServer Pages Model II concept is well known. The basic idea is that the presentation should be separated from the processing code. This article offers an effective, reusable design for moving the dynamic content, processing, and validation from a JavaServer Page to a corresponding JavaBean... |
JavaWorld December 5, 2003 |
Java Product News Ekkon Technologies optimizes MerchantSpace Commerce... Etnus connects debuggers... Koalog reveals Koalog Configurator 0.13 |
JavaWorld October 2000 Rinaldo Di Giorgio |
Serve clients' specific protocol requirements with Brazil, Part 2 How to use XML to facilitate data exchange between applications.... How you apply XML to exchange weather data... Scripting languages that you can implement to efficiently and quickly produce XML-tagged data... etc. |
JavaWorld January 2, 2004 Allen Holub |
More on getters and setters This article provides one of several possible programmatic solutions to the get/set-elimination problem. In particular, it demonstrates how to construct both Web-based and client-side user interfaces without exposing your object's implementation to the entire program. |
JavaWorld November 21, 2003 |
Java Product News /k/ Embedded Java Solutions unveils Mika... Infravio assembles Ensemble 4.0... Reasoning improves inspection services |
JavaWorld November 14, 2003 |
Java Product News IBM alphaWorks adds XML tool... Atlassian enhances JIRA... Side of Software puts out Print Preview library... Jamcracker produces Pivot Path... etc. |
JavaWorld March 2001 Tony Loton |
Access the world's biggest database with Web DataBase Connectivity What if the World Wide Web really were a database; if each Webpage were a table that you could query using SQL or even JDBC? Then you wouldn't be limited to just browsing. This article provides Java code for accessing web pages in an SQL-like manner. |
JavaWorld December 20, 2002 |
Java Product News Handango updates its Commerce Engine... Ephox ships content authoring app... Velare Technologies launches Discorso... JCP issues final release of JSR 90... GOBS separates Java apps into modules... Codagen transforms UML into code... Orient Technologies releases ODBMS Just Edition 2.0... etc. |
InternetNews May 25, 2004 Michael Singer |
Sun Heats Up Java Vendor Wars Java's creator rolls new Web services developer tools and new application server platform in a bid to tease market share from BEA and IBM. |
JavaWorld December 13, 2002 |
Java Product News Servertec announces object store and foundation classes... New Technology/enterprise updates JeeWiz!... Millstone UI library now available... Instantiations ships CodePro Studio 2.0 with WebSphere 5.0 support... Wakesoft and Flashline partner... etc. |
JavaWorld December 6, 2002 |
Java Product News PrintWeaver leverages Java printing mechanism... Starlasoft updates JLAN Server... Thuraya phones receive J2ME boost... New JSP tag library now available... abaXX Technology announces support for JBoss... Precise adds Oracle9i support... Tortuga Technologies updates Ozibug... etc. |
JavaWorld September 13, 2002 |
Java Product News Teamstudio for Java audits Java apps... JProfiler points out performance bottlenecks... Hitachi announces Quadrasis EASI Express... Oak Grove updates workflow engine... Prentice Hall publishes introductory Web services guide... JRockit receives boost from Introscope... etc. |
JavaWorld September 2000 John Zukowski |
Which JSP book serves up the best lesson? JavaServer Pages is the latest craze for generating dynamic content Webpages for cross-platform and cross-Web server support. With at least six JSP books in stores today, more coming, and book prices rising, making the best book choice can be overwhelming... |