1. Field of the Invention
The field of the invention is data processing, or, more specifically, methods, systems, and products for deploying Java applications in resource constrained environments. ‘Java’ is a registered trademark of Sun Microsystems, Inc.
2. Description Of Related Art
The use of Java applications generally and Web applications more specifically, is increasing rapidly. Many companies are training application developers in J2EE (“Java 2 Platform, Enterprise Edition”) design patterns and are using the J2EE programming model. While the use of Java applications is growing, the number of embedded devices having resource constraints making deploying Java applications difficult also continues to grow. Such embedded devices often have limited memory, low performance processors, and limited persistent storage. There is increasing demand for business applications for such resource constrained embedded devices that are similar to those developed for systems with more robust resources. Some technologies designed to facilitate deploying Java applications on embedded technologies are currently available. Wireless Binary XML (‘WBXML’), for example, currently provides a means of compressing the XML into a smaller format thereby reducing some system requirements of embedded devices. WBXML however requires a ‘rehydration’ of the compressed XML and requires the rehydrated binary XML to be parsed. This does not remove the need for XML parsing altogether and therefore has only limited benefits for embedded devices. There is therefore an ongoing need for methods, systems, and products for deploying Java applications in resource constrained environments to allow businesses to leverage their investments in enterprise Java program developers, and leverage aspects of current business applications by using them in embedded environments.
Methods, systems, and products are provided for deploying Java applications in resource constrained environments. Embodiments include identifying a resource constraint of a target system and filtering the Java application in dependence upon the identified resource constraint. In many embodiments, identifying a resource constraint of a target system includes identifying limited runtime processing capabilities of the target system and filtering the Java application in dependence upon the identified resource constraint includes preprocessing a tag library of the Java application. In some embodiments, preprocessing a tag library is carried out by identifying a tag library descriptor of the Java application and copying a listener from the tag library descriptor to a deployment descriptor for the Java application. Many embodiments also include identifying to Java runtime platform the copying of the listener from the tag library descriptor to the deployment descriptor.
In many embodiments, identifying a resource constraint of a target system includes identifying that the target system has no XML parser and filtering the Java application in dependence upon the identified resource constraint includes replacing a static XML deployment descriptor with a deployment descriptor readable without an XML parser. Some embodiments also include identifying to a Java runtime platform the replacing of a static XML deployment descriptor with a deployment descriptor readable without an XML parser.
In many embodiments, identifying a resource constraint of a target system includes identifying a target system having limited processing capacity and filtering the Java application in dependence upon the identified resource constraint includes identifying a hierarchy of classes of the Java application stored in a single file and storing each class of the hierarchy as a separate file accessible to the Java application. Many of these embodiments also include decompressing the single file containing the hierarchy of classes.
The foregoing and other objects, features and advantages of the invention will be apparent from the following more particular descriptions of exemplary embodiments of the invention as illustrated in the accompanying drawings wherein like reference numbers generally represent like parts of exemplary embodiments of the invention.
The present invention is described to a large extent in this specification in terms of methods for deploying Java applications in resource constrained environments. Persons skilled in the art, however, will recognize that any computer system that includes suitable programming means for operating in accordance with the disclosed methods also falls well within the scope of the present invention. Suitable programming means include any means for directing a computer system to execute the steps of the method of the invention, including for example, systems comprised of processing units and arithmetic-logic circuits coupled to computer memory, which systems have the capability of storing in computer memory, which computer memory includes electronic circuits configured to store data and program instructions, programmed steps of the method of the invention for execution by a processing unit.
The invention also may be embodied in a computer program product, such as a diskette or other recording medium, for use with any suitable data processing system. Embodiments of a computer program product may be implemented by use of any recording medium for machine-readable information, including magnetic media, optical media, or other suitable media. Persons skilled in the art will immediately recognize that any computer system having suitable programming means will be capable of executing the steps of the method of the invention as embodied in a program product. Persons skilled in the art will recognize immediately that, although most of the exemplary embodiments described in this specification are oriented to software installed and executing on computer hardware, nevertheless, alternative embodiments implemented as firmware or as hardware are well within the scope of the present invention.
Exemplary methods, systems, and products for deploying Java applications in resource constrained environments are now explained with reference to the accompanying drawings, beginning with
The top-level directory of a Web application is also the document root of the Web application. In this top-level directory, a developer places the HTML files (“HyperText Markup Language”) and JSP pages (“Java Server Pages”) that comprise the Web application's user interface. When a system administrator deploys the Web application onto a particular server, the system administrator assigns a context path to the Web application
Two exemplary types of Web applications are presentation-oriented Web applications and service-oriented Web application. A presentation-oriented Web application generates dynamic Web pages containing various types of markup language (HTML, XML, and so on) in response to requests. A service-oriented Web application implements the endpoint of a Web service. Service-oriented Web applications are often invoked by presentation-oriented applications.
In the Java 2 Platform, Web components provide the dynamic extension capabilities for a Web application server. Examples of such Web components include Java Servlets or JSP pages. Servlets are Java programming language classes that dynamically process requests and construct responses. JSP pages are text-based documents that execute as servlets and allow the creation of static content. Although servlets and JSP pages can be used interchangeably, each has its own strengths. Servlets are often optimized for service-oriented Web applications and managing the control functions of presentation-oriented applications, such as dispatching requests and handling non-textual data. JSP pages are optimized for generating text-based markup such as HTML, SVG, WML, and XML.
Web applications run on a Java runtime platform called a Web container. A Web container provides services for such as request dispatching, security, concurrency, and life cycle management for Web applications. Web containers also give Web components access to APIs for naming, transactions, and e-mail. One exemplary Web container useful in embodiments of the presenting invention is ‘Tomcat.’ Tomcat is a Web container that is identified in the official Reference Implementation for the Java Servlet and JavaServer Pages specifications. Tomcat is developed by Apache and released under the Apache Software License and is intended to be a collaboration of the best-of-breed developers from around the world.
While many embodiments of the present invention are described with specific reference to Web applications, this is for explanation and not for limitation. In fact, methods, systems, and products for deploying Java applications according to the present invention may be applied to more than Web applications and may be applied to Java applications generally as will occur to those of skill in the art.
The system of
The system of
The arrangement of computers making up the exemplary system illustrated in
Deploying Java applications on resource constrained target systems such as those illustrated in
As mentioned above, deploying Java applications in resource constrained environments is generally implemented with computers, that is, with automated computing machinery. For further explanation,
Also stored in RAM is a WM (“Java Virtual Machine”) (190). A JVM is a platform-independent execution environment that converts Java bytecode into machine language and executes it. Most programming languages compile source code directly into machine code that is designed to run on a specific microprocessor architecture or operating system, such as Windows or UNIX. A JVM mimics a real Java processor, enabling Java bytecode to be executed as actions or operating system calls on any processor regardless of the operating system.
Also stored in RAM in the example of
The computer (134) of
The exemplary computer (134) of
The example computer of
For further explanation
The method of
As discussed above, examples of target systems with resource constraints include target systems with limited runtime processing capabilities, target systems having no XML parser, target systems having limited persistent storage, and so on as will occur to those of skill in the art. For further explanation,
In the method of
The tag libraries contain tag library descriptors that describe the tag library. A tag library descriptor (TLD) is an XML document that describes a tag library. A TLD contains information about a library as a whole and about each tag contained in the library. TLD file names have the extension.tld. In the case of Web applications, TLD files are also typically stored in the WEB-INF directory of the Web application's WAR file or in a subdirectory of WEB-INF. TLDs typically include only limited information that is actually processed by a Web container at runtime. Most of the data contained in the TLD files specify information needed by a Web container to use the tag library for already compiled JSP servlets. That is, the information contained in TLDs is extracted by a Web application builder at tool time and provided to the Web container in the deployment descriptor at runtime. Preprocessing the tag library therefore reduces the runtime processing requirements of a target system and therefore optimizes the Java application for target systems having limited runtime processing capabilities.
For further explanation,
The method of
In the case of a Web application, a deployment descriptor is an XML file describing the servlets and other components that make up the Web application, along with any initialization parameters and Web container-managed security constraints that are to be enforced by the Web container. The deployment descriptor defines all the information needed by the Web container except a context path, which is assigned by the system administrator when the application is deployed. The Java Servlet Specification includes a Document Type Descriptor (DTD) for deployment descriptors, and Web containers such as Tomcat enforce the rules defined in the DTD when Web applications are processed.
Copying (508) a listener (506) from the tag library descriptor (502) to a deployment descriptor (510) for the Java application (310) reduces the runtime processing requirements of the target system. In the case of Web applications, for example, providing the listener at run time to the Web container in the deployment descriptor removes the requirement of a Web container to identify the appropriate TLD and to locate the listener contained in the TLD thereby reducing the overall runtime processing requirements of the target system.
To gain the efficiency provided by the method of
As discussed above, examples of target systems with resource constraints include target systems with limited runtime processing capabilities, target systems having no XML parser, target systems having limited persistent storage, and so on as will occur to those of skill in the art. For further explanation,
In the method of
Another way of replacing a static XML deployment descriptor with a deployment descriptor readable without an XML parser is carried out by replacing the static XML deployment descriptor with a serialized object. To serialize an object means to convert its state to a byte stream so that the byte stream can be reverted back into a copy of the object. A Java object is serializable if its class or any of its superclasses implements either the java.io.Serializable interface or its subinterface, java.io.Extemalizable. Deserialization is the process of converting the serialized form of an object back into a copy of the object. The Java platform specifies a default way by which serializable objects are serialized. When an object is serialized, information that identifies its class is recorded in the serialized stream.
The removal of XML parsing at runtime advantageously lowers the required footprint of the target system and decreases the processing requirements of the target system. To gain the efficiency provided by the method of
As discussed above, examples of target systems with resource constraints include target systems with limited runtime processing capabilities, target systems having no XML parser, target systems having limited persistent storage, and so on as will occur to those of skill in the art. For further explanation,
In the method of
In the method of
Web applications, for example, often have a hierarchy of classes stored in a single compressed Java Archive (‘JAR’) file. Accessing the hierarchy of classes stored in a single compressed JAR file therefore also includes decompressing the JAR file containing the hierarchy of classes prior to accessing one or more of the classes contained within the file. This is an additional strain on target systems. The method of
It will be understood from the foregoing description that modifications and changes may be made in various embodiments of the present invention without departing from its true spirit. The descriptions in this specification are for purposes of illustration only and are not to be construed in a limiting sense. The scope of the present invention is limited only by the language of the following claims.
Number | Name | Date | Kind |
---|---|---|---|
6530080 | Fresko et al. | Mar 2003 | B2 |
6584612 | Mueller et al. | Jun 2003 | B1 |
6658625 | Allen | Dec 2003 | B1 |
6675382 | Foster | Jan 2004 | B1 |
6732108 | Factor et al. | May 2004 | B2 |
6751797 | Desgranges et al. | Jun 2004 | B1 |
6948151 | Gerken | Sep 2005 | B2 |
6961929 | Pelegri-Llopart et al. | Nov 2005 | B1 |
7000218 | Gerken | Feb 2006 | B2 |
7127713 | Davis et al. | Oct 2006 | B2 |
7159224 | Sharma et al. | Jan 2007 | B2 |
7162687 | Pelegri-Llopart et al. | Jan 2007 | B2 |
7165243 | Pelegri-Llopart et al. | Jan 2007 | B1 |
7246134 | Kitain et al. | Jul 2007 | B1 |
7246351 | Bloch et al. | Jul 2007 | B2 |
7305671 | Davidov et al. | Dec 2007 | B2 |
7512932 | Davidov et al. | Mar 2009 | B2 |
7546576 | Egli | Jun 2009 | B2 |
7565647 | Davidov et al. | Jul 2009 | B2 |
7580703 | Veselov et al. | Aug 2009 | B1 |
20020073236 | Helgeson et al. | Jun 2002 | A1 |
20030005411 | Gerken | Jan 2003 | A1 |
20030009743 | Fresko et al. | Jan 2003 | A1 |
20030020752 | Santiago | Jan 2003 | A1 |
20030084097 | Messinger et al. | May 2003 | A1 |
20030093465 | Banerjee et al. | May 2003 | A1 |
20030093717 | Mason | May 2003 | A1 |
20030225774 | Davidov et al. | Dec 2003 | A1 |
20030226136 | Calahan | Dec 2003 | A1 |
20040093595 | Bilange | May 2004 | A1 |
20040095386 | Flynn et al. | May 2004 | A1 |
20040103407 | Blaukopf et al. | May 2004 | A1 |
20040158571 | Kovacs et al. | Aug 2004 | A1 |
20040158577 | Chu et al. | Aug 2004 | A1 |
20040177352 | Narayanaswamy et al. | Sep 2004 | A1 |
20040255293 | Spotswood | Dec 2004 | A1 |
20040255294 | Spotwood | Dec 2004 | A1 |
20040268312 | Abe et al. | Dec 2004 | A1 |
20050003810 | Chu et al. | Jan 2005 | A1 |
20050235248 | Victoria et al. | Oct 2005 | A1 |
20050278718 | Griffith et al. | Dec 2005 | A1 |
20060053410 | Charisius et al. | Mar 2006 | A1 |
20060101453 | Burkhart et al. | May 2006 | A1 |
20070143748 | Hennessy | Jun 2007 | A1 |
20080201701 | Hofhansl et al. | Aug 2008 | A1 |
Number | Date | Country | |
---|---|---|---|
20060101453 A1 | May 2006 | US |