The invention relates to methods used to access databases using Enterprise Java Beans.
An ever increasing number of e-commerce providers or e-businesses rely on application server technology as the lifeblood of their business. Application servers form a proven foundation for supporting e-commerce applications, providing the presentation, business and information-access logic, security and management services, and underlying infrastructure required for highly scalable and mission-critical software applications. Increasingly, the demands of today's modern businesses require support for a new breed of Web and wireless applications, helping to meet the needs of increasingly sophisticated customers.
One such application server, WebLogic Server, from BEA Systems, Inc. San Jose, Calif., is based on an implementation of the Java 2 Enterprise Edition (J2EE) specification. WebLogic Server is used as the backbone for many of today's most sophisticated e-business applications, playing an integral role in a tightly integrated, comprehensive infrastructure that delivers commerce, personalization, campaign management, enterprise integration, workflow management, and business-to-business collaboration. From Web and wireless clients to Windows, Unix, and mainframe servers, WebLogic Server manages all of the underlying complexities of a business' e-commerce applications, allowing the organization to focus instead on delivering new and innovative products and services.
A typical application server, including WebLogic Server, supports a variety of clients, including Web browsers, and wireless devices. On the server side, WebLogic Server supports leading Unix, Linux, Windows, and mainframe operating systems. On the back-end, WebLogic Server integrates with relational databases, messages queues, and legacy systems. WebLogic Server provides support for features such as Servlets, Java Server Pages (JSPs), Enterprise JavaBeans (EJBs), Java Messaging Service (JMS), to provide access to standard network protocols, database, and messaging systems. When developing applications, developers can create, assemble, and deploy components that use these services.
In a typical deployment, WebLogic Server also includes a Web server for hosting static content and dynamic J2EE Web applications. J2EE Web applications typically include a collection of HTML/XML pages, Java Server Pages, Servlets, Java classes, applets, images, multimedia files, and other file types. WebLogic Server may also be integrated with other Web servers such as Apache, Microsoft IIS, or Netscape Web servers. Web components usually provide the presentation logic for browser-based or wireless applications, while EJB components encapsulate business objects and processes, and are used to access data resources.
One problem associated with standard application server systems that use EJBs to access databases is that the operations required to retrieve the values of multiple fields per EJB must be explicitly specified in user written code in terms of object manipulation. Typically, in the traditional model, the developer must retrieve a set of EJBs, each of which satisfies the search criteria of a standard EJB QL query, then call each of these EJBs individually to retrieve the desired field values. The traditional model is an inefficient and time-consuming process. A more efficient method would bypass the requirement to manipulate the set of EJBs that contain the data that are the target of retrieval.
The invention provides a set of enhancements to the EJB Query Language (EJB QL) to efficiently access a data store using Enterprise Java Beans. Particularly, these EJB QL language extensions allow for the selection and retrieval of ResultSets. When the application developer writes a query that specifies the return of multiple fields from a single bean type or from multiple bean types, the system efficiently extracts the requested data from the database and returns the data as a ResultSet. This system bypasses the need to engage in the expensive object retrieval and manipulation operations that would be required if the traditional model had been used to accomplish the equivalent task.
In one embodiment, the invention provides EJB QL features which are comprised of a set of enhancements to the standard Query Language and further increase the overall usefulness of the Query Language. The present invention supports additional features such as: QL Subqueries, Aggregate Functions, and QL Queries Returning Result Sets.
The invention provides a set of enhancements to the EJB Query Language (EJB QL) to efficiently access a database using Container Managed Persistence (CMP) Enterprise Java Beans EJB's. Particularly, the EJB QL language extensions allow for the selection and retrieval of ResultSets. A ResultSet is a construct which allows multiple fields and/or aggregates of fields to be returned to the user.
The ResultSet capability allows for more efficient retrieval of multiple fields and aggregates of fields than would be possible using standard CMP EJB query models. The ResultSet feature is resource-efficient because the application client is not required to access EJB objects in order to extract information from the database. Rather, the present invention allows direct access to query data. The bean developer defines the EJB QL query for an ejbSelect method. An EJB QL parser translates the query into an organized tree which represents the query. The EJB QL parser is generated from a unique grammar file which allows the parser to recognize a SELECT clause that returns a ResultSet. The tree that is produced by the EJB QL parser is translated into the target language of the database (SQL), and the database interprets the SQL query. The EJB QL parser and translator are referred to herein as the “EJB QL Compiler”. After the ejbSelect method is invoked by a bean instance, the database returns the requested data to the ResultSet object. The data within the ResultSet object is available for use by any bean within the container, including session and message beans. Thus, the ResultSet capability allows the user to bypass the need to engage in expensive object retrieval and manipulation.
The EJB QL features provided by the invention is comprised of a set of enhancements to the Query Language implementation that are made available to the users of the WebLogic Application server. These enhancements apply to Container Managed Persistence EJBs. The features of the present invention support additional features such as: QL Subqueries, Aggregate Functions, and QL Queries Returning ResultSets.
Definitions of Terms, Acronyms, and Abbreviations
After the home stub 110 has been created on the client side 106, the client 112 uses a finder method, such as findByPrimaryKey( ), to lookup a particular bean. When the client invokes a finder method, the container 102 uses the EJB home object on the server side. The container 102 comprises a portion of the application server 104. The EJB home object implements the bean's home interface. For example, the bean home 114 implements bean A's home interface. Additionally, the bean home 122 object implements bean N's home interface.
The home stub 110 requests the bean's home object to have an instance of the EJB returned for use by the client. The container 102 initializes a bean instance 118 using data extracted from the database 100 and using its primary key to identify the entity object within the container 102. The EJB container 102 then creates an EJB object 116 on the server side to implement the bean's remote or local interface. The EJB home 114 returns an EJB reference (object stub 108) to the client 112.
The object stub 108 implements either the remote or the local interface of the Bean Instance 118. The EJB home returns a remote object reference if the client invokes a method on the remote interface. The EJB home returns a local reference if the client invokes a method on the local interface. The client works through the object stub 108 to invoke business methods on the bean instance 118. The object stub 108 relays the method calls to the EJB object 116; The EJB object 116 delegates the method calls to the bean instance 118. If the bean instance 118 will be used to access data, the bean instance 118 will either return data that was previously extracted from the database 100, or it will load data from the database 100 which will be returned.
The process is similar for additional beans. For example, the EJB container creates an EJB object 124 and the home 122 returns an additional object stub to the client. Additionally, EJB object 124 delegates Bean N's method calls to Bean N's corresponding bean instance 126.
The present invention allows the ejbSelect mechanism 202 to return the desired data as a ResultSet 400, wherein the requested data contains multiple fields from multiple bean types. This method bypasses the additional steps that would be required when utilizing the traditional model which consist of returning corresponding objects 306, 308, 310 and invoking individual get methods 312,316,320 (and others) to retrieve multiple data fields 300,302,304 (and others).
In the traditional method, in the body of an EJB QL query, the SELECT clause allows the bean developer to define only one type of object or field to be returned. A single-valued select method returns a local or remote object or a single column value corresponding to a single bean field. A multi-valued select method returns a collection of EJB objects of a single type or a collection of column values corresponding to a single bean field. The present invention allows the bean developer to SELECT multiple fields from multiple bean types. The bean developer may also SELECT single fields from multiple bean types with a single query.
In
It will be evident to one skilled in the art that the example given above is merely illustrative of the general operation of an embodiment of the invention, and that other selection mechanisms and qualifiers can be used to specify object relationships and to further customize the selection and retrieval of ResultSets and other data.
EJB QL Compiler
A portion of the data retrieval process requires the system to parse and translate an EJB QL language query into a target language (SQL) for a target database. A variety of mechanisms may be employed to perform this EJB QL-SQL (“EJB QL”) parsing and compilation. One embodiment utilizes “ANTLR” (‘ANother Tool for Language Recognition’) to generate an EJB QL parser using a supplied EJB QL grammar specification. The parser operates by taking an input EJB QL query and constructing an Abstract Syntax Tree that represents that EJB QL query. In accordance with this embodiment, the EJB QL-SQL Compiler takes the Abstract Syntax Tree that was generated by the EJB QL parser and processes the tree to produce the SQL translation of the EJB QL query. The translated SQL query is what is transmitted to the database for processing. The EJB QL parser and EJB QL-SQL compiler are referred to collectively as the “EJB QL compiler”.
Additional Features
An embodiment of the invention includes support for QL Subqueries (“Subqueries”). The relationship between regular QL Queries (“Queries”) and Subqueries is similar to the relationship between traditional SQL-queries and SQL-subqueries. Subqueries are Queries that may be used in the WHERE clause of an outer Query. The following is an example of a Query that selects all above-average students as determined by a number grade:
The syntax for a Subquery is the same as for a normal Query.
Subquery Return Types
The Result of an Aggregate Function, eg:
selects all the salaries of the employees in the finance dept.
Supported WHERE clause operators that take Subqueries as argument include ALL, ANY, [NOT] IN, [NOT] EXISTS, and the Arithmetic Operators: <, >, <=, >=, =, and <>. Use of the DISTINCT clause in a Subquery will result in the use of an SQL ‘SELECT DISTINCT’ in the Subquery's generated SQL. This is different from the usage of DISTINCT in a main query, in which enforcement of the DISTINCT clause is done in the EJB container and not via the use of a generated SQL
selects the employees whose salary is above average, and uses the ‘>’ Operator on an uncorrelated subquery.
selects the last 10 shipped Orders.
selects all customers that have not placed orders, and uses the ‘NOT IN’ operator on a correlated subquery.
Support for Aggregate Functions
Aggregate Functions behave like their SQL Query Language Counterparts. Aggregate functions are evaluated over the range of the Beans returned by the WHERE conditions of the query. This property of Aggregate Functions means that an Aggregate Function is only a SELECT clause target and may not be used in other parts of a query, such as in the WHERE clause. The invention includes support for the following Aggregate Functions:
MIN(x)—Return the Minimum Value of this field.
selects the Maximum Number of Customers served by any single sales representative in Los Angeles.
AVG([DISTINCT] x)—Return the Average Value of this field.
selects the Average Price of a Book in the category Computer Science.
SUM([DISTINCT] x)—Return the Sum of this field.
retrieves the total number of customers served by sales representatives in Los Angeles.
COUNT([DISTINCT] x)—Return the number of occurances of a field.
retrieves the number of deals closed that were for at least 1 million dollars.
Support for Queries Returning ResultSets
The queries executed by an ejbSelect method can return the results of multi-column, multi-object-type queries in the form of a java.sql.ResultSet. These queries may also specify the return of aggregates of columns in the returned java.sql.ResultSet. To support these features, the invention allows the SELECT clause to specify a comma delimited list of target fields and aggregates of fields, e.g.:
returns a java.sql.ResultSet with rows whose Columns are the Employee Locations and the Average Salary of the Employees at those Locations.
The foregoing description of the present invention has been provided for the purposes of illustration and description. It is not intended to be exhaustive or to limit the invention to the precise forms disclosed. Many modifications and variations will be apparent to the practitioner skilled in the art. Particularly, it will be evident that the above described EJB QL enhancements can be incorporated into other types of database request mechanisms beyond those described. The embodiments were chosen and described in order to best explain the principles of the invention and its practical application, thereby enabling others skilled in the art to understand the invention for various embodiments and with various modifications that are suited to the particular use contemplated. It is intended that the scope of the invention be defined by the following claims and their equivalence.
This application is a continuation of U.S. patent application “SYSTEM AND METHOD FOR PROVIDING RESULT SETS USING EJB QUERY LANGUAGE”, application Ser. No. 10/342,573, filed Jan. 15, 2003, which claims the benefit of provisional application “SYSTEM AND METHOD FOR PROVIDING RESULT SETS USING EJB QUERY LANGUAGE”, Application Ser. No. 60/349,606, filed Jan. 18, 2002, each of which applications are incorporated herein by reference.
Number | Name | Date | Kind |
---|---|---|---|
6199195 | Goodwin et al. | Mar 2001 | B1 |
6269373 | Apte et al. | Jul 2001 | B1 |
6591272 | Williams | Jul 2003 | B1 |
6889227 | Hamilton | May 2005 | B1 |
7054858 | Sutherland | May 2006 | B2 |
20020049749 | Helgeson et al. | Apr 2002 | A1 |
Number | Date | Country | |
---|---|---|---|
20060004773 A1 | Jan 2006 | US |
Number | Date | Country | |
---|---|---|---|
60349606 | Jan 2002 | US |
Number | Date | Country | |
---|---|---|---|
Parent | 10342573 | Jan 2003 | US |
Child | 11177514 | US |