Copyright © 2006 Stephen Schaub
 Eclipse Corner Article

 

Creating Database Web Applications with Eclipse

Summary 
The Eclipse Web Tools Project delivers a feature-rich environment for developing J2EE database-driven web applications. This tutorial walks you through the process of creating a simple database web application using Eclipse WTP, Tomcat, and the Derby database engine. 

By Stephen Schaub
Department of Computer Science
Bob Jones University
April 10, 2006


Introduction

Creating database-driven web applications in Java has traditionally involved a steep learning curve. Even if you already know how to write Java programs, and have a basic understanding of web applications, the Java 2 Enterprise Edition (J2EE) stack is daunting. Learning to use the Servlet API and Java Server Page technology to generate dynamic content is just the beginning. Installing and configuring an open source J2EE web application server and a DBMS, and getting them to talk to each other, can require significant developer effort.

In this article, I will demonstrate how the combination of Eclipse WTP, Tomcat 5.5, and Derby help to "lower the bar" by virtually eliminating the server administration issues, allowing developers to focus on the task at hand: building the web application. I will assume that you understand the basics of SQL, and are familiar with HTML and basic web application concepts.

Prerequisites

You will need the following software to build the project:  

  1. Web Tools Platform (WTP) project
    The WTP project can be downloaded from http://download.eclipse.org/webtools/downloads/. This tutorial was written using version 1.0.1. I suggest that you download the all-in-one package, which bundles Eclipse with all of the plugins needed to use the WTP tooling. To install, simply extract the download archive to your hard drive.

  2. Tomcat 5.5
    Available from http://tomcat.apache.org/download-55.cgi. This tutorial was written using version 5.5.16.

    Note: If you're a Windows user, I recommend downloading the zip distribution and extracting it, instead of getting the packaged Tomcat installer, which installs Tomcat as a Windows service (not an appropriate configuration for use with Eclipse WTP).

  3. Derby Plugin for Eclipse
    Get the Derby Plugin for Eclipse (derby_core_plugin_10.1.2.zip and derby_ui_plugin_1.1.0.zip), available at http://db.apache.org/derby/derby_downloads.html.

    Note: The plugins contain the Derby engine. You don't need to download the standard Derby distribution for this tutorial.

  4. JRE 5.0
    Sun's JRE is available from http://java.sun.com/j2se/1.5.0/download.jsp

Getting Started with Derby

Derby is an open-source pure-Java Database Management System. I picked it as the DBMS for this article because it is freely available, integrates nicely with Eclipse, runs on all platforms that Eclipse runs on, and, most importantly, is far simpler to install and administer than traditional DBMS's.

Like most popular DBMS's, Derby is a client/server system. The Derby engine runs as a server process, accepting connections from client applications. To use Derby, you start the Derby server, then you use Java database management tools to connect to the Derby server, create and populate databases, run queries, and so on. The Derby plugin for Eclipse described in this article integrates the Derby server controls into Eclipse, so you can start and stop the Derby server from the Eclipse environment. The plugin also stores the database files in the workspace, simplifying backup.

Installing the Derby plugin for Eclipse is fairly straightforward. Here's how to do it.

  1. Unzip the two Derby Eclipse plugins (derby_core_plugin_10.1.2.zip and derby_ui_plugin_1.1.0.zip) into your eclipse installation folder (ECLIPSE_ROOT). Detailed instructions are available here: http://db.apache.org/derby/integrate/plugin_howto.html#Installing+the+plug-ins

  2. In your ECLIPSE_ROOT/plugins folder, you should have a folder named org.apache.derby.core_10.1.2. Copy the file derbyclient.jar from that folder to your TOMCAT_ROOT/common/lib folder. This installs the Derby JDBC driver into Tomcat for use in a DataSource.

Eclipse organizes files in the workspace into projects. When you use the Derby plugin for Eclipse, you create an empty Java project, and then you "Derby enable" it. This project then becomes the repository for all of the Derby databases that you create in your workspace.

Follow these steps to create a Derby data project in Eclipse: 

  1. Start Eclipse. If you have an existing Eclipse workspace, I suggest choosing a new workspace folder for this tutorial. Then, create a new Java project by selecting File > New > Project. Select Java Project and click Next. Enter the name data for the project, choose the option to create separate source and output folders, and click Finish.


  2. This project will hold your Derby database for this tutorial. In the Package Explorer, right-click your new project and choose Apache Derby > Add Apache Derby Nature. This action marks the project as a Derby project, capable of storing one or more Derby databases.

  3. Next, right-click your data project and choose Apache Derby > Start Derby Network Server.




  4. This action starts the Derby server. You should see the following message appear in the Eclipse Console:

  5. The Derby server will run as long as you have Eclipse open. If you close Eclipse, the next time you start Eclipse, you will need to start the Derby server again. The server accepts connections only from the local host, which is just what you want for a development database.

Creating a Derby Database

Now that you've installed Derby and started the Derby server, you will create a new database to hold the data for your web application.

To create a new Derby database, you must use a Java DBMS management tool to connect to the Derby server with a specially formatted connection string that includes the name of the database you want to create, and an option that tells the Derby server to create the database. Here's how to accomplish the task using the Eclipse Data tooling included with \WTP.

  1. Select Window > Show View > Other, and select Data > Database Explorer.


  2. In the Database Explorer view, right-click the Connections folder and choose New Connection.

  3. Fill out the dialog as shown. Note carefully the selections: Choose the Derby 10.1 database manager; select the Derby Client JDBC Driver (not the Embedded Driver); accept the default Database name ("sample"); browse to find the location of your derbyclient.jar file (it contains the Derby Client/Server JDBC driver); use any non-blank User ID and non-blank password (the password is ignored by Derby).

  4. Click Finish. The connection wizard will open a connection to the Derby engine, which will create a new database named sample. The database files are stored in a folder named sample in your data project. If you want to see them, right-click the data project and choose Refresh.

To create a backup of your Derby database, simply stop the Derby server, make a copy of the sample folder and its subfolders, and restart the server. Restoring the database is just as simple: stop the server, replace the sample folder structure with the backup copy, and restart the server.

Now that the database is created, it's time to create a table for our application and populate it with some data. The current version of WTP doesn't include any wizards to create a table, so we'll create a table using SQL Data Definition commands.  

To execute SQL commands using the Eclipse Data tooling, you will create a SQL Scrapbook page, which provides an editor that allows you to enter and execute SQL statements.

  1. Choose File > New > Other, and choose Data > SQL Scrapbook Page. Click Next, and enter scratch (or whatever) as the filename. Click Finish.

  2. A blank SQL Scrapbook page will open. Copy and paste the following code into the editor:

    CREATE TABLE app.posts (
      post_id INTEGER PRIMARY KEY GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1), 
      postname VARCHAR(50),
      comments VARCHAR(512) NOT NULL
     );
      
    INSERT INTO app.posts(postname, comments) VALUES('Fred Jones', 
       'Derby is cool, and the Eclipse plugin makes using it a snap!');
    INSERT INTO app.posts(postname, comments) VALUES('Wilma Harris', 
       'Tomcat lets me register DataSources using a file in my web project? That''s great stuff!');
  3. Right-click in the editor and choose Run SQL.




  4. Select the connection you created and click Finish.

  5. The Data Output tab will appear to show the results of the execution.

  6. Now, back on the Database Explorer tab, browse to find the table that was created. Right-click the Posts table and choose Data > Edit to view the contents in an editable grid. In this screen shot, I've moved the Database Explorer tab from its default location, at the bottom of the workspace, over to the left.

Creating a Web Project

Now that the database is in place, we're ready to begin creating our web application. A J2EE web application consists of a collection of dynamic resources (such as Servlets, JavaServer Pages (JSP), and other Java classes), static resources (HTML pages and images), and configuration files, all organized in a standardized directory. Eclipse helps you organize your web applications using a type of project called a Dynamic Web Project. When you create a Dynamic Web Project, you must select a J2EE web application server, which provides libraries needed by the project.

Follow these steps to create the project.  

  1. Select File > New > Other. Select Web > Dynamic Web Project and click Next. Enter the Project Name demo, and click New beside the Target runtime dropdown.

  2. Select Tomcat 5.5 and click Next.

  3. Select your Tomcat 5.5 installation folder (the root folder of the extracted Tomcat download archive). Eclipse may warn you that a Java SDK is needed for Tomcat, but Tomcat 5.5 ships with the Eclipse Java compiler, so a JDK is not necessary as it is with previous versions of Tomcat. Click Finish.

  4. The application will use JSP tag libraries that you must download and install into your project. Browse to http://jakarta.apache.org/site/downloads/downloads_taglibs-standard.cgi and download the jakarta-taglibs-standard-1.1.2.zip distribution (or, you can get them from the completed sample that accompanies this article). Copy the jstl.jar and standard.jar files from the download archive into your project's WebContent/WEB-INF/lib folder. When you've done this, you may need to right-click on the project and choose Refresh. Although the archives won't appear inside the lib folder, you should see them listed under Web App Libraries as shown here:

Next, we'll tackle the issue of database connection management for our application. Servlets and JSP pages that access a database are usually designed to obtain a database connection for each incoming request, and release the connection when the request has finished processing. Since opening and closing database connections is usually an expensive operation, an efficient web application makes use of JNDI connection pooling to speed up database access. The application server maintains a pool of connections to the database, and makes them available to the web application via a DataSource object.

Since connection pools are managed by the application server, not the web application, configuring connection pooling can be a pain. Fortunately, Tomcat 5.5 makes it really easy. Tomcat allows the developer to configure the database connection pool using a configuration file in the web project. We'll use that feature to simplify this tutorial.

If you are using an older version of Tomcat, or another application server, you must consult your application server for information on configuring a DataSource.
  1. Choose File > New > File, select the META-INF folder, and enter the name context.xml.


  2. Copy and paste the following into your context.xml file. This defines a DataSource with the name "jdbc/SampleDB". Our application will retrieve database connections from the pool using this name.

    <?xml version="1.0" encoding="UTF-8"?>
    
    <Context>
       <Resource name="jdbc/SampleDB" auth="Container"
           type="javax.sql.DataSource" 
           username="app" password="app"
           driverClassName="org.apache.derby.jdbc.ClientDriver"
           url="jdbc:derby://localhost:1527/sample" 
           maxActive="8"    /> 
    </Context> 
If you want to use a different DBMS, simply change the driverClassName and url to values appropriate for your database, and make sure you install your DBMS's JDBC driver in Tomcat's common/lib folder.

Writing the Application

Standard J2EE web applications use servlets and JSPs to generate dynamic content. For this tutorial, we'll create a JSP page to allow the user to interact with the database. You don't have to know Java to write JSPs; the JSP Standard Tag Library provides all the capabilities a simple database application needs.

We'll begin with a simple page that displays the comments in the Posts table.

  1. Choose File > New > File. Fill out the dialog as shown, making sure that the WebContent folder is highlighted.

  2. Next, paste the following code into the page:

            <%@ page language="java" contentType="text/html; charset=ISO-8859-1"%>
    
         <%@ taglib prefix="sql" uri="http://java.sun.com/jsp/jstl/sql" %>
            <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    
         <sql:setDataSource dataSource="jdbc/SampleDB" />
    
            <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
            <html>
            <head>
            <title>Speak To Me, Please</title>
            </head>
            <body>
    
            <h1>Speak To Me, Please</h1>
    
            Welcome to the Acme Corp. feedback site. 
             
            <h2>Here's what your fellow workers have said:</h2> 
            <table border='1'>
              <tr><th>Worker</th><th>Comment</th></tr>
    
           <sql:query var="qryPosts" >
                      SELECT postname, comments FROM app.posts
              </sql:query>
    
           <c:forEach var="row" items="${qryPosts.rows}">
    	        <tr>
                   <td><c:out value="${row.postname}" /></td>
                      <td><c:out value="${row.comments}" /></td>
    	        </tr>
              </c:forEach>
            </table>
    
            </body>
            </html>
    
Notes about the code:
If you're using an application server other than Tomcat 5.5, and you don't know how to configure a DataSource, you can embed the connection attributes directly in the JSP page. You won't get connection pooling, but you can at least get the sample working by replacing line with the following lines:
    <% Class.forName("org.apache.derby.jdbc.ClientDriver"); %>
    <sql:setDataSource dataSource="jdbc:derby://localhost:1527/sample" user="app" password="app" />
If you do this, you may also find it necessary to copy the derbyclient.jar file to your project's WEB-INF/lib folder to make the JDBC driver class available to your application.

Testing the Application

We haven't finished the application yet, but let's take a break from coding to test the existing functionality.

  1. Right click on demo.jsp and select Run As > Run on Server. Select the Tomcat 5.5 server, and click Finish.

  2. Eclipse starts the Tomcat application server. After the server starts, you should see a page like this.



    Note: If Eclipse has problems starting the server, make sure you don't already have Tomcat running on your system. If you have an instance of Tomcat running, you should stop it before trying to test your application in Eclipse.

  3. Try adding a new row to the Posts table using the Eclipse table editor I mentioned earlier. After you save the new row, you should be able to click Reload in the web browser, and the new row should appear.

Letting Users Leave Feedback

This application doesn't allow users to contribute feedback. Let's enhance the JSP page to provide a form that users can fill out to add comments.

Switch to the JSP editor and copy and paste the following code just above the closing </body> tag:

     <form action="demo.jsp" method="post">
          <table>
            <tr>
              <td>Your name: (optional)</td>
           <td><input type='text' name='name' value="${name}"></td>
            </tr>
            <tr>
              <td>Your comments:</td>
           <td><textarea name='comments' rows="6" cols="40">${comments}</textarea></td>
            </tr>  
            <tr>
              <td></td>
           <td><input type='submit' name='action' value='Submit'>
            </tr>
           </table>
        <h3>${msg}</h3>
        </form>

When the user clicks the submit button on this form, the name and comments entered by the user will be submitted to the demo.jsp page for processing. A message indicating success or failure will be placed in a JSP variable named msg to inform the user of the result of the processing.

Next, we need to write the code to process the form submission. Insert the following code at the top of the page, after the <sql:setDataSource> tag:

     <c:set var="name" value="${param.name}" />
        <c:set var="comments" value="${param.comments}" />
            
     <c:if test="${param.action == 'Submit'}">
          <c:choose>
         <c:when test="${not empty comments}">
            <sql:update>
		    INSERT INTO posts(postname, comments) VALUES(?, ?)
	            <sql:param value="${name}"/>
		    <sql:param value="${comments}"/>
	       </sql:update>
            <c:set var="msg" value="Thank you for your feedback." />
	       <c:set var="name" value="" />
	       <c:set var="comments" value="" />		
            </c:when>
            <c:otherwise>
            <c:set var="msg" value="Please supply some comments." />
            </c:otherwise>
          </c:choose>
        </c:if>

Notes about the code:

After entering this code, save the changes. Switch back to the browser view and click Reload. You should see a form appear:

Try entering some comments and clicking Submit. The page should process the submission, and you should see your comments appear in the table. Check the database table using the table editor; you should find that the comments have been saved there.

Deploying the Database

When you are ready to deploy the application to a production Tomcat application server, you must copy the Derby database data folders to the application server computer. You then have a couple of options for accessing the Derby database from your deployed application.

Summary

I have built J2EE web applications for several years now, and teach the technology. I've observed that building J2EE database applications with open source tools has often been harder than it should be, due mainly to server configuration and integration issues. The Eclipse Web Tools Project, combined with Tomcat 5.5 and Derby, reduces the burden of server administration, delivering a convenient platform for J2EE database web application development.  

 

Resources

The completed sample is available. You can import it into Eclipse by renaming it to demo.war, choosing File > Import, and selecting WAR File. Note that the database is not included; you must set that up following the instructions in the article.

If you want to know more about JSP application development, here are some resources that can help.