This tutorial begins where Tutorial: Reusing Existing COBOL Programs in a Java Web Services Environment left off, using the Apache Tomcat application server, and the same CobolBook and JSPBookDemo projects. Therefore, you must complete that tutorial in its entirety, using the Tomcat 7 application server, before starting this tutorial. See Tutorial: Reusing Existing COBOL Programs in a Java Web Services Environment for complete instructions.
You must also install Oracle Database 11g Express Edition.
This section explains the modifications you need to make to the SQL Server version of the tutorial so that the application works with Oracle instead of SQL Server.
http://www.oracle.com/technetwork/database/enterprise-edition/jdbc-112010-090769.html
<Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443"/>
To:
<Connector connectionTimeout="20000" port="9000" protocol="HTTP/1.1" redirectPort="8443"/>
This adds the file to the Driver file list.
Property | Value |
---|---|
SID | Xe |
Host | Localhost |
Port number | 1521 |
User name | Scott 1 |
Password | tiger 1,2 |
Connection URL | jdbc:oracle:thin:@localhost:1521:xe |
1 Connection credentials used for this tutorial. 2 Password is case sensitive. |
DROP TABLE BOOKS; CREATE TABLE BOOKS ( TITLE VARCHAR2(50) NOT NULL, TYPE VARCHAR2(20) NOT NULL, AUTHOR VARCHAR2(50) NOT NULL, STOCKNO CHAR(4) PRIMARY KEY, ISBN DECIMAL (13, 0) NOT NULL, RETAIL DECIMAL(4,2) NOT NULL, ONHAND INT NOT NULL, SOLD INT NOT NULL ); INSERT INTO BOOKS VALUES( 'OLIVER TWIST', 'CHARLES DICKENS', 'CLASSIC', '1111', 9780140620467, 5.00, 10, 30 ); INSERT INTO BOOKS VALUES( 'A GAME OF THRONES', 'GEORGE R. R. MARTIN', 'FANTASY', '1112', 7428545, 3.86, 17, 75 ); INSERT INTO BOOKS VALUES( 'A CLASH OF KINGS', 'GEORGE R. R. MARTIN', 'FANTASY', '1113', 7447833, 6.49, 17, 75 ); INSERT INTO BOOKS VALUES( 'THE DAY OF THE JACKAL', 'FREDERICK FORSYTH', 'ADVENTURE', '1114', 99552710, 2.00, 26, 75 ); INSERT INTO BOOKS VALUES( 'HARRY POTTER AND THE PHILOSOPHER''S STONE', 'J. K. ROWLING', 'ADVENTURE', '1116', 747558191, 5.24, 48, 100 ); INSERT INTO BOOKS VALUES( 'HARRY POTTER AND THE CHAMBER OF SECRETS', 'J. K. ROWLING', 'ADVENTURE', '1117', 747562180, 5.24, 44, 100 ); INSERT INTO BOOKS VALUES( 'HARRY POTTER AND THE PRISONER OF AZKABAN', 'J. K. ROWLING', 'ADVENTURE', '1118', 747573760, 5.24, 49, 100 ); INSERT INTO BOOKS VALUES( 'HARRY POTTER AND THE GOBLET OF FIRE', 'J. K. ROWLING', 'ADVENTURE', '1119', 747582386, 6.74, 44, 100 ); INSERT INTO BOOKS VALUES( 'HARRY POTTER AND THE ORDER OF THE PHOENIX', 'J. K. ROWLING', 'ADVENTURE', '1120', 747591261, 6.74, 37, 100 ); INSERT INTO BOOKS VALUES( 'HARRY POTTER AND THE HALF-BLOOD PRINCE', 'J. K. ROWLING', 'ADVENTURE', '1121', 747598460, 6.74, 41, 100 ); INSERT INTO BOOKS VALUES( 'HARRY POTTER AND THE DEATHLY HALLOWS', 'J. K. ROWLING', 'ADVENTURE', '1122', 1408810298, 6.74, 40, 100 ); INSERT INTO BOOKS VALUES( 'THE FELLOWSHIP OF THE RING', 'J. R. R. TOLKIEN', 'FANTASY', '1123', 7123825, 4.95, 23, 100 ); INSERT INTO BOOKS VALUES( 'THE TWO TOWERS', 'J. R. R. TOLKIEN', 'FANTASY', '1124', 261102362, 7.99, 28, 100 ); INSERT INTO BOOKS VALUES( 'LORD OF THE FLIES', 'WILLIAM GOLDING', 'SCARY', '2222', 9780571191475, 4.50, 30, 100 ); INSERT INTO BOOKS VALUES( 'CATCH 22', 'JOSEPH HELLER', 'WAR', '3333', 9780099477310, 6.50, 50, 200 ); INSERT INTO BOOKS VALUES( 'THE HITCHHIKER''S GUIDE TO THE GALAXY', 'DOUGLAS ADAMS', 'COMEDY', '4444', 9780345453747, 6.73, 100, 360 ); INSERT INTO BOOKS VALUES( 'TO KILL A MOCKINGBIRD', 'HARPER LEE', 'CLASSIC', '5555', 9780099466734, 4.87, 50, 75 ); SELECT * FROM BOOKS; /* create user SCOTT identified by tiger grant dba to SCOTT */
exec sql connect to PUBS end-exec
To:
exec sql connect to ora end-exec
<Resource name="ora" auth="Container" type="javax.sql.DataSource" maxActive="10" maxIdle="10" maxWait="10000" username="SCOTT" password="tiger" driverClassName="oracle.jdbc.driver.OracleDriver" url="jdbc:oracle:thin:@localhost:1521/XE" />
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5"> <display-name>JSPBookDemo</display-name> <servlet> <servlet-name>BookServlet</servlet-name> <servlet-class>com.microfocus.book.BookServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>BookServlet</servlet-name> <url-pattern>/view</url-pattern> </servlet-mapping> <welcome-file-list> <welcome-file>view</welcome-file> </welcome-file-list> <resource-ref> <description>DB Connection</description> <res-ref-name>pubs</res-ref-name> <res-type>javax.sql.DataSource</res-type> <res-auth>Container</res-auth> </resource-ref> </web-app>