Display related records from the database when we click the show all link through JDBC

Introduction 

 
Here we produce two JSP pages, in first the first (Display.jsp) it contains some data with a show all link. When the user clicks on that link, all related data of that link will be displayed in the second JSP page (showall.jsp).
  
Creation of a context file
  
Create any folder in any drive as (E:\Jsp). Inside that folder store your .jsp files. Give the Context pathname as JSP and docBase as E:\Jsp, here docBase means the total path where we are storing our .jsp files. These changes are done in the server.xml file, which is present in (E:\Program Files\Apache Software Foundation\Tomcat 6.0\conf) directory.
  
Server.xml file
  1. <?xml version='1.0' encoding='utf-8'?>  
  2. <!--  
  3. Licensed to the Apache Software Foundation (ASF) under one or more  
  4. contributor license agreements. See the NOTICE file distributed with  
  5. this work for additional information regarding copyright ownership.  
  6. The ASF licenses this file to You under the Apache License, Version 2.0  
  7. (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at  
  8.   
  9. http://www.apache.org/licenses/LICENSE-2.0  
  10.   
  11. Unless required by applicable law or agreed to in writing, software  
  12. distributed under the License is distributed on an "AS IS" BASIS,  
  13. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
  14. See the License for the specific language governing permissions and  
  15. limitations under the License.  
  16. -->  
  17. <!-- Note: A "Server" is not itself a "Container", so you may not  
  18. define subcomponents such as "Valves" at this level. Documentation at /docs/config/server.html  
  19. -->  
  20.   
  21. <?xml version='1.0' encoding='utf-8'?>  
  22. <!--  
  23.   Licensed to the Apache Software Foundation (ASF) under one or more  
  24.   contributor license agreements.  See the NOTICE file distributed with  
  25.   
  26.  this work for additional information regarding copyright ownership.  The ASF licenses this file to You under the Apache License, Version 2.0  (the "License"); you may not use this file except in compliance with the License.  You may obtain a copy of the License at  
  27.    
  28.       http://www.apache.org/licenses/LICENSE-2.0  
  29.    
  30.   Unless required by applicable law or agreed to in writing, software  
  31.   distributed under the License is distributed on an "AS IS" BASIS,  
  32.   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
  33.   See the License for the specific language governing permissions and  
  34.   limitations under the License.  
  35. -->  
  36. <!-- Note:  A "Server" is not itself a "Container", so you may not  
  37.      define subcomponents such as "Valves" at this level.  
  38.      Documentation at /docs/config/server.html  
  39.  -->  
  40. <Server port="8005" shutdown="SHUTDOWN">  
  41.   <!--APR library loader. Documentation at /docs/apr.html -->  
  42.   <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />  
  43.   <!--Initialize Jasper prior to webapps are loaded. Documentation at /docs/jasper-howto.html -->  
  44.   <Listener className="org.apache.catalina.core.JasperListener" />  
  45.   <!-- JMX Support for the Tomcat server. Documentation at /docs/non-existent.html -->  
  46.   <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener" />  
  47.   <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />  
  48.   
  49.   <!-- Global JNDI resources  
  50.        Documentation at /docs/jndi-resources-howto.html  
  51.   -->  
  52.   <GlobalNamingResources>  
  53.     <!-- Editable user database that can also be used by  
  54.          UserDatabaseRealm to authenticate users  
  55.     -->  
  56.     <Resource name="UserDatabase" auth="Container"  
  57.               type="org.apache.catalina.UserDatabase"  
  58.               description="User database that can be updated and saved"  
  59.               factory="org.apache.catalina.users.MemoryUserDatabaseFactory"  
  60.               pathname="conf/tomcat-users.xml" />  
  61.   </GlobalNamingResources>  
  62.    
  63.   <!-- A "Service" is a collection of one or more "Connectors" that share  
  64.        a single "Container" Note:  A "Service" is not itself a "Container",   
  65.        so you may not define subcomponents such as "Valves" at this level.  
  66.        Documentation at /docs/config/service.html  
  67.    -->  
  68.   <Service name="Catalina">    
  69.     <!--The connectors can use a shared executor, you can define one or more named thread pools-->  
  70.     <!--  
  71.     <Executor name="tomcatThreadPool" namePrefix="catalina-exec-"   
  72.         maxThreads="150" minSpareThreads="4"/>  
  73.     -->      
  74.       
  75.     <!-- A "Connector" represents an endpoint by which requests are received  
  76.          and responses are returned. Documentation at :  
  77.          Java HTTP Connector: /docs/config/http.html (blocking & non-blocking)  
  78.          Java AJP  Connector: /docs/config/ajp.html  
  79.          APR (HTTP/AJP) Connector: /docs/apr.html  
  80.          Define a non-SSL HTTP/1.1 Connector on port 8080  
  81.     -->  
  82.     <Connector port="8081" protocol="HTTP/1.1"   
  83.                connectionTimeout="20000"   
  84.                redirectPort="8443" />  
  85.     <!-- A "Connector" using the shared thread pool-->  
  86.     <!--  
  87.     <Connector executor="tomcatThreadPool"  
  88.                port="8080" protocol="HTTP/1.1"   
  89.                connectionTimeout="20000"   
  90.                redirectPort="8443" />  
  91.     -->             
  92.     <!-- Define a SSL HTTP/1.1 Connector on port 8443  
  93.          This connector uses the JSSE configuration, when using APR, the   
  94.          connector should be using the OpenSSL style configuration  
  95.          described in the APR documentation -->  
  96.     <!--  
  97.     <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"  
  98.                maxThreads="150" scheme="https" secure="true"  
  99.                clientAuth="false" sslProtocol="TLS" />  
  100.     -->  
  101.    
  102.     <!-- Define an AJP 1.3 Connector on port 8009 -->  
  103.     <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />  
  104.    
  105.     <!-- An Engine represents the entry point (within Catalina) that processes  
  106.          every request.  The Engine implementation for Tomcat stand alone  
  107.          analyzes the HTTP headers included with the request, and passes them  
  108.          on to the appropriate Host (virtual host).  
  109.   
  110.          Documentation at /docs/config/engine.html -->   
  111.     <!-- You should set jvmRoute to support load-balancing via AJP ie :  
  112.     <Engine name="Standalone" defaultHost="localhost" jvmRoute="jvm1">           
  113.     -->   
  114.     <Engine name="Catalina" defaultHost="localhost">  
  115.    
  116.       <!--For clustering, please take a look at documentation at:  
  117.   
  118.           /docs/cluster-howto.html  (simple how to)  
  119.           /docs/config/cluster.html (reference documentation) -->  
  120.       <!-- 
  121.       <Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"/> 
  122.  
  123.       -->          
  124.    
  125.       <!-- The request dumper valve dumps useful debugging information about  
  126.            the request and response data received and sent by Tomcat.  
  127.            Documentation at: /docs/config/valve.html -->  
  128.       <!-- 
  129.       <Valve className="org.apache.catalina.valves.RequestDumperValve"/> 
  130.       -->  
  131.    
  132.       <!-- This Realm uses the UserDatabase configured in the global JNDI  
  133.            resources under the key "UserDatabase".  Any edits  
  134.            that are performed against this UserDatabase are immediately  
  135.            available for use by the Realm.  -->  
  136.       <Realm className="org.apache.catalina.realm.UserDatabaseRealm"  
  137.              resourceName="UserDatabase"/>  
  138.    
  139.       <!-- Define the default virtual host  
  140.            Note: XML Schema validation will not work with Xerces 2.2.  
  141.        -->  
  142.       <Host name="localhost"  appBase="webapps"  
  143.   
  144.             xmlValidation="false" xmlNamespaceAware="false">  
  145.   
  146.         <!-- SingleSignOn valve, share authentication between web applications  
  147.              Documentation at: /docs/config/valve.html -->  
  148.   
  149.         <!-- 
  150.         <Valve className="org.apache.catalina.authenticator.SingleSignOn" /> 
  151.         -->  
  152.   
  153.         <!-- Access log processes all example.  
  154.              Documentation at: /docs/config/valve.html -->  
  155.         <!--  
  156.         <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"    
  157.                prefix="localhost_access_log." suffix=".txt" pattern="common" resolveHosts="false"/>   
  158.             <Context path="/jsp" docBase="E:\Jsp" reloadable="true" debug="0" />   
  159.       </Host>  
  160.     </Engine>  
  161.   </Service>  
  162. </Server>  
Table creation
  
First, create an employee table in Oracle and insert some data as below 
  1. Create table employee(empid varchar(50),empname varchar(50),empaddress varchar(50),designation varchar(50),salary int)  
  2.   
  3. insert into employee values('E001','Raj','Delhi','Clerk',10000)  
  4. insert into employee values('E002','Harry','Mumbai','Player',20000)  
  5. insert into employee values('E003','Sunil','Noida','Producer',30000)  
  6. insert into employee values('E004','Pollock','Durban','Manager',40000)  
  7. insert into employee values('E005','Jonty','Perth','Director',50000)  
  8. insert into employee values('E006','Kallis','Oslo','Dean',60000)  
  9. insert into employee values('E007','Imran','Dubai','Admin',70000)  
Creation of dsn (database source name)
  
Start-Control panel- Administrative Tools- Data Sources (ODBC)-go to system DSN tab-click add button-select a driver for which you want to set up a data source (for Oracle- Oracle in XE)-select it and click finish-give any name in data source name textbox-then click ok button.
 
Note:- Here Username=system, Password=pintu and Dsn name=dsn1
  
Display.jsp 
  1. <%@ page import="java.sql.*" %>  
  2.  <  
  3.  html >  
  4.  <  
  5.  body bgcolor = "Yellow" >  
  6.  <  
  7.  table border = "1"  
  8. width = "30%"  
  9. height = "30%" >  
  10.  <  
  11.  tr >  
  12.  <  
  13.  th > < font color = 'Red' > EMP ID < /font></th >  
  14.  <  
  15.  th > < font color = 'Red' > EMP NAME < /font></th >  
  16.  <  
  17.  th > < font color = 'Red' > SALARY < /font></th >  
  18.  <  
  19.  th > < font color = 'Red' > SHOW ALL < /font></th >  
  20.  <  
  21.  /tr>  
  22. <%  
  23. Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");  
  24. Connection con=DriverManager.getConnection("jdbc:odbc:dsn1","system","pintu");  
  25. Statement stmt=con.createStatement();  
  26. ResultSet rs=stmt.executeQuery("select *  from employee");  
  27.   while(rs.next())  
  28.   {  
  29.       String EmployeeId=rs.getString("empid");  
  30.       String EmployeeName=rs.getString("empname");  
  31.       String EmployeeAddress=rs.getString("empaddress");  
  32.       String Employeedesignation=rs.getString("designation");  
  33.       int Salary=rs.getInt("salary");  
  34.    
  35.   %>  
  36.  <  
  37.  tr >  
  38.  <  
  39.  td > < b > < font color = '#663300' > <%=EmployeeId%> < /font></b > < /td> <  
  40.  td > < b > < font color = '#663300' > <%=EmployeeName%> < /font></b > < /td> <  
  41.  td > < b > < font color = '#663300' > <%=Salary%> < /font></b > < /td> <  
  42.  td > < b > < font color = '#663300' > < a href = 'showall.jsp?id=<%=EmployeeName%>' > Show All < /a></font > < /b></td >  
  43.   
  44.  <  
  45.  /tr>  
  46. <%  
  47.   }  
  48.  %>  
  49.   
  50.  <  
  51.  /table> <  
  52.  /body> <  
  53.  /html>   
showall.jsp
  1. <%@ page import="java.sql.*" %>  
  2.  <  
  3.  html >  
  4.  <  
  5.  body bgcolor = "Yellow" >  
  6.   
  7.  <  
  8.  table border = "1"  
  9. width = "30%"  
  10. height = "30%" >  
  11.  <  
  12.  tr >  
  13.  <  
  14.  th > < font color = 'Red' > ID < /font></th >  
  15.  <  
  16.  th > < font color = 'Red' > NAME < /font></th >  
  17.  <  
  18.  th > < font color = 'Red' > ADDRESS < /font></th >  
  19.  <  
  20.  th > < font color = 'Red' > DESIGNATION < /font></th >  
  21.  <  
  22.  th > < font color = 'Red' > SALARY < /font></th >  
  23.   
  24.  <  
  25.  /tr>  
  26. <%  
  27. String empname= request.getParameter("id");  
  28. Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");  
  29. Connection con=DriverManager.getConnection("jdbc:odbc:dsn1","system","pintu");  
  30. Statement stmt=con.createStatement();  
  31. ResultSet rs=stmt.executeQuery("select *  from employee where empname='"+empname+"'");  
  32.   while(rs.next())  
  33.   {  
  34.       String EmployeeId=rs.getString("empid");  
  35.       String EmployeeName=rs.getString("empname");  
  36.       String EmployeeAddress=rs.getString("empaddress");  
  37.       String Employeedesignation=rs.getString("designation");  
  38.       int Salary=rs.getInt("salary");   
  39.   %>  
  40.  <  
  41.  tr >  
  42.  <  
  43.  td > < b > < font color = '#663300' > <%=EmployeeId%> < /font></b > < /td> <  
  44.  td > < b > < font color = '#663300' > <%=EmployeeName%> < /font></b > < /td> <  
  45.  td > < b > < font color = '#663300' > <%=EmployeeAddress%> < /font></b > < /td> <  
  46.  td > < b > < font color = '#663300' > <%=Employeedesignation%> < /font></b > < /td> <  
  47.  td > < b > < font color = '#663300' > <%=Salary%> < /font></b > < /td> <  
  48.  /tr>  
  49. <%  
  50.   }  
  51.  %>  
  52.  <  
  53.  /table> <  
  54.  /body> <  
  55.  /html>  
Running the application
 
Run the tomcat then write the below link in the URL
  
http://localhost:8081/jsp/ 
 
Here JSP is the Context path, which we mentioned in the server.xml file, which is present in (E:\Program Files\Apache Software Foundation\Tomcat 6.0\conf) directory. 
 
After giving the URL a set a listing will come, here only two appears as Display.jsp and showall.jsp click on Display.jsp. 
 
Output 
 
jdbc
  
Thanks for reading


Similar Articles