How to connect html to database with mysql using java

  • Planning the Structure
    • index.jsp
    • response.jsp
  • Creating a New Project
  • Preparing the Web Interface
    • Setting up the welcome page
    • Creating the response page
    • Creating a stylesheet
  • Preparing Communication between the Application and Database
    • Setting up a JDBC data source and connection pool
    • Referencing the data source from the application
    • Adding the database driver’s JAR file to the server
  • Adding Dynamic Logic
    • Adding the JSTL library to the project’s classpath
    • Implementing JSTL code
  • Running the Completed Application
  • Troubleshooting
    • Do database resources exist?
    • Do the connection pool and data source exist on the server?
    • Is the MySQL Connector/J driver accessible to the GlassFish server?
    • Is the database password-protected?
    • Are the connection pool properties correctly set?
  • See Also

Written by Troy Giunipero

This document describes how to create a simple web application that connects to a MySQL database server. It also covers some basic ideas and technologies in web development, such as JavaServer Pages (JSP), JavaServer Pages Standard Tag Library (JSTL), the Java Database Connectivity (JDBC) API, and two-tier, client-server architecture. This tutorial is designed for beginners who have a basic understanding of web development and are looking to apply their knowledge using a MySQL database.

MySQL is a popular open source database management system commonly used in web applications due to its speed, flexibility and reliability. MySQL employs SQL, or Structured Query Language, for accessing and processing data contained in databases.

This tutorial is a continuation from the Connecting to a MySQL Database tutorial and assumes that you have already created a MySQL database named MyNewDatabase, which you have registered a connection for in the NetBeans IDE. The table data used in that tutorial is contained in ifpwafcad.sql and is also required for this tutorial. This SQL file creates two tables, Subject and Counselor, then populates them with sample data. If needed, save this file to your computer, then open it in the NetBeans IDE and run it on the MySQL database named MyNewDatabase.

How to connect html to database with mysql using java

Figure 1. Content on this page applies to the NetBeans IDE 7.2, 7.3, 7.4 and 8.0

To follow this tutorial, you need the following software and resources.

Software or ResourceVersion Required

NetBeans IDE

7.2, 7.3, 7.4, 8.0, Java EE bundle

Java Development Kit (JDK)

version 7 or 8

MySQL database server

5.x

MySQL Connector/J JDBC Driver

version 5.x

GlassFish Server Open Source Edition

3.x or 4.x

Notes:

  • The Java download bundle of the NetBeans IDE enables you to install the GlassFish server. You require the GlassFish server to work through this tutorial.

  • The MySQL Connector/J JDBC Driver, necessary for communication between Java platforms and the MySQL database protocol, is included in the NetBeans IDE.

  • If you need to compare your project with a working solution, you can download the sample application.

Planning the Structure

Simple web applications can be designed using a two-tier architecture, in which a client communicates directly with a server. In this tutorial, a Java web application communicates directly with a MySQL database using the Java Database Connectivity API. Essentially, it is the MySQL Connector/J JDBC Driver that enables communication between the Java code understood by the application server (the GlassFish server), and any content in SQL, the language understood by the database server (MySQL).

The application you build in this tutorial involves the creation of two JSP pages. In each of these pages you use HTML and CSS to implement a simple interface, and apply JSTL technology to perform the logic that directly queries the database and inserts the retrieved data into the two pages. The two database tables, Subject and Counselor, are contained in the MySQL database, MyNewDatabase, which you create by completing the Connecting to a MySQL Database tutorial. Consider the following two-tier scenario.

image::images/ifpwafcad-structure.png[title="Sample structure of a two-tier web application"]

The welcome page (index.jsp) presents the user with a simple HTML form. When a browser requests index.jsp, the JSTL code within the page initiates a query on MyNewDatabase. It retrieves data from the Subject database table, and inserts it into to the page before it is sent to the browser. When the user submits his or her selection in the welcome page’s HTML form, the submit initiates a request for the response page (response.jsp). Again, the JSTL code within the page initiates a query on MyNewDatabase. This time, it retrieves data from both the Subject and Counselor tables and inserts it into to the page, allowing the user to view data based upon his or her selection when the page is returned to the browser.

In order to implement the scenario described above, you develop a simple application for a fictitious organization named IFPWAFCAD, The International Former Professional Wrestlers' Association for Counseling and Development.

index.jsp

How to connect html to database with mysql using java

Figure 2. index.jsp displayed in a browser

response.jsp

How to connect html to database with mysql using java

Figure 3. response.jsp displayed in a browser

Creating a New Project

Begin by creating a new Java web project in the IDE:

  1. Choose File > New Project (Ctrl-Shift-N; ⌘-Shift-N on Mac) from the main menu. Select the Java Web category, then select Web Application. Click Next.

How to connect html to database with mysql using java

Figure 4. Use the IDE’s New Project wizard to create a new project

The New Project wizard allows you to create an empty web application in a standard IDE project. The standard project uses an IDE-generated Ant build script to compile, deploy, and run the application.

  1. In Project Name, enter IFPWAFCAD. Also, specify the location for the project on your computer. (By default, the IDE places projects in a NetBeansProjects folder located in your home directory.) Click Next.

  2. In the Server and Settings panel, specify the GlassFish server as server which will be used to run the application.

*Note. *The GlassFish server displays in the Server drop-down field if you installed the Java version of the NetBeans IDE. Because the GlassFish server is included in the download, it is automatically registered with the IDE. If you want to use a different server for this project, click the Add button located next to the Server drop-down field, and register a different server with the IDE. However, working with servers other than the GlassFish server is beyond the scope of this tutorial.

  1. In the Java EE Version field, select Java EE 5.

How to connect html to database with mysql using java

Figure 5. Specify server settings in the New Web Application wizard

Java EE 6 and Java EE 7 web projects do not require the use of the web.xml deployment descriptor, and the NetBeans project template does not include the web.xml file in Java EE 6 and Java EE 7 projects. However, this tutorial demonstrates how to declare a data source in the deployment descriptor, and it does not rely on any features specific to Java EE 6 or Java EE 7, so you can set the project version to Java EE 5.

Note. You could equally set the project version to Java EE 6 or Java EE 7 and then create a web.xml deployment descriptor. (From the New File wizard, select the Web category, then Standard Deployment Descriptor.)

  1. Click Finish. The IDE creates a project template for the entire application, and opens an empty JSP page (index.jsp) in the editor. The index.jsp file serves as the welcome page for the application.

Preparing the Web Interface

Begin by preparing the welcome (index.jsp) and response (response.jsp) pages. The welcome page implements an HTML form that is used to capture user data. Both pages implement an HTML table to display data in a structured fashion. In this section, you also create a stylesheet that enhances the appearance of both pages.

  • Setting up the welcome page

  • Creating the response page

  • Creating a stylesheet

Setting up the welcome page

Confirm that index.jsp is open in the editor. If the file is not already open, double-click index.jsp under the Web Pages node in the IFPWAFCAD project in the Projects window.

  1. In the editor, change the text between the </code> tags to: <code>IFPWAFCAD Homepage</code>.</p></li><li><p>Change the text between the <code><h2></code> tags to: <code>Welcome to IFPWAFCAD, the International Former Professional Wrestlers' Association for Counseling and Development!</code>.</p></li><li><p>Open the IDE’s Palette by choosing Window > Palette (Ctrl-Shift-8; ⌘-Shift-8 on Mac) from the main menu. Hover your pointer over the Table icon from the HTML category and note that the default code snippet for the item displays.</p></li></ol></p><p><p><div class="imgBox"><img alt="How to connect html to database with mysql using java" data-orgimg="https://sg.cdnki.com/how-to-connect-html-to-database-with-mysql-using-java---aHR0cHM6Ly9uZXRiZWFucy5hcGFjaGUub3JnL2tiL2RvY3Mvd2ViL2ltYWdlcy9wYWxldHRlLnBuZw==.webp" ></img></div></p><p>Figure 6. Palette displays code snippet when hovering over an item</p><p><span>You can configure the Palette to your liking - right-click in the Palette and choose Show Big Icons and Hide Item Names to have it display as in the image above.</span></p><p><ol><li><p>Place your cursor at a point just after the <code><h2></code> tags. (This is where you want to implement the new HTML table.) Then, in the Palette, double-click the Table icon.</p></li><li><p>In the Insert Table dialog that displays, specify the following values then click OK:</p><p><ul><li><p><strong>Rows</strong>: 2</p></li><li><p><strong>Columns</strong>: 1</p></li><li><p><strong>Border Size</strong>: 0 The HTML table code is generated and added to your page.</p></li></ul></p></li><li><p>Add the following content to the table heading and the cell of the first table row (new content shown in <strong>bold</strong>):</p></li></ol></p><p><pre><code><table border="0"> <thead> <tr> <th>*IFPWAFCAD offers expert counseling in a wide range of fields.*</th> </tr> </thead> <tbody> <tr> <td>*To view the contact details of an IFPWAFCAD certified former professional wrestler in your area, select a subject below:*</td> </tr></code></pre></p><p><ol><li><p>For the bottom row of the table, insert an HTML form. To do so, place your cursor between the second pair of <code><td></code> tags, then double-click the HTML form ( <span><div class="imgBox"><img alt="How to connect html to database with mysql using java" data-orgimg="https://sg.cdnki.com/how-to-connect-html-to-database-with-mysql-using-java---aHR0cHM6Ly9uZXRiZWFucy5hcGFjaGUub3JnL2tiL2RvY3Mvd2ViL2ltYWdlcy9odG1sLWZvcm0taWNvbi5wbmc=.webp" ></img></div></span> ) icon in the Palette. In the Insert Form dialog, type in <code>response.jsp</code> in the Action text field, then click OK.</p></li></ol></p><p><p><div class="imgBox"><img alt="How to connect html to database with mysql using java" data-orgimg="https://sg.cdnki.com/how-to-connect-html-to-database-with-mysql-using-java---aHR0cHM6Ly9uZXRiZWFucy5hcGFjaGUub3JnL2tiL2RvY3Mvd2ViL2ltYWdlcy9pbnNlcnQtZm9ybS5wbmc=.webp" ></img></div></p><p>Figure 7. Specify form settings in the Insert Form dialog</p><p><ol><li><p>Type in the following content between the <code><form></code> tags (new content shown in <strong>bold</strong>):</p></li></ol></p><p><pre><code><tr> <td> <form action="response.jsp"> *<strong>Select a subject:</strong>* </form> </td> </tr></code></pre></p><p><ol><li><p>Press Enter to add an empty line after the content you just added and then double-click Drop-down List in the Palette to open the Insert Drop-down dialog box.</p></li><li><p>Type <code>subject_id</code> for the Name text field in the Insert Drop-down dialog and click OK. Note that the code snippet for the drop-down list is added to the form.</p></li></ol></p><p>The number of options for the drop-down is currently not important. Later in the tutorial you will add JSTL tags that dynamically generate options based on the data gathered from the Subject database table.</p></p><p><ol><li><p>Add a submit button item ( <span><div class="imgBox"><img alt="How to connect html to database with mysql using java" data-orgimg="https://sg.cdnki.com/how-to-connect-html-to-database-with-mysql-using-java---aHR0cHM6Ly9uZXRiZWFucy5hcGFjaGUub3JnL2tiL2RvY3Mvd2ViL2ltYWdlcy9zdWJtaXQtYnV0dG9uLnBuZw==.webp" ></img></div></span> ) to a point just after the drop-down list you just added. You can either use the Palette to do this, or invoke the editor’s code completion as illustrated in the previous step. In the Insert Button dialog, enter <code>submit</code> for both the Label and Name text fields, then click OK.</p></li><li><p>To format your code, right-click in the editor and choose Format (Alt-Shift-F; Ctrl-Shift-F on Mac). Your code is automatically formatted, and should now look similar to the following:</p></li></ol></p><p><pre><code><body> <h2>Welcome to <strong>IFPWAFCAD</strong>, the International Former Professional Wrestlers' Association for Counseling and Development! </h2> <table border="0"> <thead> <tr> <th>IFPWAFCAD offers expert counseling in a wide range of fields.</th> </tr> </thead> <tbody> <tr> <td>To view the contact details of an IFPWAFCAD certified former professional wrestler in your area, select a subject below:</td> </tr> <tr> <td> <form action="response.jsp"> <strong>Select a subject:</strong> <select name="subject_id"> <option></option> </select> <input type="submit" value="submit" name="submit" /> </form> </td> </tr> </tbody> </table> </body></code></pre></p><p>To view this page in a browser, right-click in the editor and choose Run File (Shift-F6; Fn-Shift-F6 on Mac). When you do this, the JSP page is automatically compiled and deployed to your server. The IDE opens your default browser to display the page from its deployed location.</p><p><p><div class="imgBox"><img alt="How to connect html to database with mysql using java" data-orgimg="https://sg.cdnki.com/how-to-connect-html-to-database-with-mysql-using-java---aHR0cHM6Ly9uZXRiZWFucy5hcGFjaGUub3JnL2tiL2RvY3Mvd2ViL2ltYWdlcy9icm93c2VyLW91dHB1dC5wbmc=.webp" ></img></div></p><p>Figure 8. index.jsp displays in a browser</p><p><h3 id="creating-the-response-page">Creating the response page</h3><p>In order to prepare the interface for <code>response.jsp</code> you must first create the file in your project. Note that most of the content that displays in this page is generated dynamically using JSP technology. Therefore, in the following steps you add placeholders which you will later substitute for the JSP code.</p><p><ol><li><p>Right-click the IFPWAFCAD project node in the Projects window and choose New > JSP. The New JSP File dialog opens.</p></li><li><p>In the JSP File Name field, enter <code>response</code>. Note that Web Pages is currently selected for the Location field, meaning that the file will be created in the project’s <code>web</code> directory. This is the same location as where the <code>index.jsp</code> welcome page resides.</p></li><li><p>Accept any other default settings and click Finish. A template for the new <code>response.jsp</code> page is generated and opens in the editor. A new JSP node also displays under Web Pages in the Projects window.</p></li></ol></p><p><p><div class="imgBox"><img alt="How to connect html to database with mysql using java" data-orgimg="https://sg.cdnki.com/how-to-connect-html-to-database-with-mysql-using-java---aHR0cHM6Ly9uZXRiZWFucy5hcGFjaGUub3JnL2tiL2RvY3Mvd2ViL2ltYWdlcy9yZXNwb25zZS1qc3Atbm9kZS5wbmc=.webp" ></img></div></p><p>Figure 9. response.jsp node appears in the Projects window</p><p><ol><li><p>In the editor, change the title to: <code>IFPWAFCAD - {placeholder}</code>.</p></li><li><p>Remove the <code><h2>Hello World!</h2></code> line between the <code><body></code> tags, then copy and paste the following HTML table into the body of the page:</p></li></ol></p><p><pre><code><table border="0"> <thead> <tr> <th colspan="2">{placeholder}</th> </tr> </thead> <tbody> <tr> <td><strong>Description: </strong></td> <td><span style="font-size:smaller; font-style:italic;">{placeholder}</span></td> </tr> <tr> <td><strong>Counselor: </strong></td> <td>{placeholder} <br> <span style="font-size:smaller; font-style:italic;"> member since: {placeholder}</span> </td> </tr> <tr> <td><strong>Contact Details: </strong></td> <td><strong>email: </strong> <a href="mailto:{placeholder}">{placeholder}</a> <br><strong>phone: </strong>{placeholder} </td> </tr> </tbody> </table></code></pre></p><p>To view this page in a browser, right-click in the editor and choose Run File (Shift-F6; Fn-Shift-F6 on Mac). The page compiles, is deployed to the GlassFish server, and opens in your default browser.</p><p><p><div class="imgBox"><img alt="How to connect html to database with mysql using java" data-orgimg="https://sg.cdnki.com/how-to-connect-html-to-database-with-mysql-using-java---aHR0cHM6Ly9uZXRiZWFucy5hcGFjaGUub3JnL2tiL2RvY3Mvd2ViL2ltYWdlcy9icm93c2VyLXJlc3BvbnNlLnBuZw==.webp" ></img></div></p><p>Figure 10. response.jsp displays in a browser</p><p><h3 id="creating-a-stylesheet">Creating a stylesheet</h3><p>Create a simple stylesheet that enhances the display of the web interface. This tutorial assumes that you understand how style rules function, and how they affect corresponding HTML elements found in <code>index.jsp</code> and <code>response.jsp</code>.</p><p><ol><li><p>Open the New File wizard by pressing the New File ( <span><div class="imgBox"><img alt="How to connect html to database with mysql using java" data-orgimg="https://sg.cdnki.com/how-to-connect-html-to-database-with-mysql-using-java---aHR0cHM6Ly9uZXRiZWFucy5hcGFjaGUub3JnL2tiL2RvY3Mvd2ViL2ltYWdlcy9uZXctZmlsZS1idG4ucG5n.webp" ></img></div></span> ) button in the IDE’s main toolbar. Select the Web category, then select Cascading Style Sheet and click Next.</p></li><li><p>Type <code>style</code> for CSS File Name and click Finish. The IDE creates an empty CSS file and places it in the same project location as <code>index.jsp</code> and <code>response.jsp</code>. Note that a node for <code>style.css</code> now displays within the project in the Projects window, and the file opens in the editor.</p></li><li><p>In the editor, add the following content to the <code>style.css</code> file:</p></li></ol></p><p><pre><code>body { font-family: Verdana, Arial, sans-serif; font-size: smaller; padding: 50px; color: #555; } h2 { text-align: left; letter-spacing: 6px; font-size: 1.4em; color: #be7429; font-weight: normal; width: 450px; } table { width: 580px; padding: 10px; background-color: #c5e7e0; } th { text-align: left; border-bottom: 1px solid; } td { padding: 10px; } a:link { color: #be7429; font-weight: normal; text-decoration: none; } a:link:hover { color: #be7429; font-weight: normal; text-decoration: underline; }</code></pre></p><p><ol><li><p>Link the stylesheet to <code>index.jsp</code> and <code>response.jsp</code>. In both pages, add the following line between the <code><head></code> tags:</p></li></ol></p><p><pre><code><link rel="stylesheet" type="text/css" href="style.css"></code></pre></p><p><span>To quickly navigate between files that are open in the editor, press Ctrl-Tab, then select the file you are wanting.</span></p><p><h2 id="preparing-communication-between-the-application-and-database">Preparing Communication between the Application and Database</h2><p><p>The most efficient way to implement communication between the server and database is to set up a database connection pool. Creating a new connection for each client request can be very time-consuming, especially for applications that continuously receive a large number of requests. To remedy this, numerous connections are created and maintained in a connection pool. Any incoming requests that require access to the application’s data layer use an already-created connection from the pool. Likewise, when a request is completed, the connection is not closed down, but returned to the pool.</p><p>After preparing the data source and connection pool for the server, you then need to instruct the application to use the data source. This is typically done by creating an entry in the application’s <code>web.xml</code> deployment descriptor. Finally, you need to ensure that the database driver (MySQL Connector/J JDBC Driver) is accessible to the server.</p><p>*Important: * From this point forward, you need you ensure that you have a MySQL database instance named <code>MyNewDatabase</code> set up that contains sample data provided in ifpwafcad.sql. This SQL file creates two tables, <code>Subject</code> and <code>Counselor</code>, then populates them with sample data. If you have not already done this, or if you need help with this task, see Connecting to a MySQL Database before proceeding further.</p><p>Also, your database needs to be password-protected to create a data source and work with the GlassFish server in this tutorial. If you are using the default MySQL <code>root</code> account with an empty password, you can set the password from a command-line prompt.</p><p>This tutorial uses <code>nbuser</code> as an example password. To set your password to <code>nbuser</code>, navigate to your MySQL installation’s <code>bin</code> directory in the command-line prompt and enter the following:</p><p><pre><code>shell> mysql -u root mysql> UPDATE mysql.user SET Password = PASSWORD('_nbuser_') -> WHERE User = 'root'; mysql> FLUSH PRIVILEGES;</code></pre></p><p><ol><li><p>Setting up a JDBC data source and connection pool</p></li><li><p>Referencing the data source from the application</p> </li><li><p>Adding the database driver’s JAR file to the server</p></li></ol></p><p><h3 id="setting-up-a-jdbc-data-source-and-connection-pool">Setting up a JDBC data source and connection pool</h3><p>The GlassFish Server Open Source Edition contains Database Connection Pooling (DBCP) libraries that provide connection pooling functionality in a way that is transparent to you as a developer. To take advantage of this, you need to configure a JDBC (Java Database Connectivity) data source for the server which your application can use for connection pooling.</p><p>You could configure the data source directly within the GlassFish server Admin Console, or, as described below, you can declare the resources that your application needs in a <code>glassfish-resources.xml</code> file. When the application is deployed, the server reads in the resource declarations, and creates the necessary resources.</p><p>The following steps demonstrate how to declare a connection pool, and a data source that relies on the connection pool. The NetBeans JDBC Resource wizard allows you to perform both actions.</p><p><ol><li><p>Open the New File wizard by pressing the New File ( <span><div class="imgBox"><img alt="How to connect html to database with mysql using java" data-orgimg="https://sg.cdnki.com/how-to-connect-html-to-database-with-mysql-using-java---aHR0cHM6Ly9uZXRiZWFucy5hcGFjaGUub3JnL2tiL2RvY3Mvd2ViL2ltYWdlcy9uZXctZmlsZS1idG4ucG5n.webp" ></img></div></span> ) button in the IDE’s main toolbar. Select the GlassFish server category, then select JDBC Resource and click Next.</p></li><li><p>In step 2, General Attributes, choose the Create New JDBC Connection Pool option, then in the JNDI Name text field, type in <strong>jdbc/IFPWAFCAD</strong>.</p></li></ol></p><p><p><div class="imgBox"><img alt="How to connect html to database with mysql using java" data-orgimg="https://sg.cdnki.com/how-to-connect-html-to-database-with-mysql-using-java---aHR0cHM6Ly9uZXRiZWFucy5hcGFjaGUub3JnL2tiL2RvY3Mvd2ViL2ltYWdlcy9qZGJjLXJlc291cmNlLXdpemFyZC5wbmc=.webp" ></img></div></p><p>Figure 11. Specify data source settings in the JDBC Resource wizard</p><p><span>The JDBC data source relies on JNDI, the Java Naming and Directory Interface. The JNDI API provides a uniform way for applications to find and access data sources. For more information, see The JNDI Tutorial.</span></p><p><ol><li><p>Optionally, add a description for the data source. For example, type in: <code>Accesses the database that provides data for the IFPWAFCAD application</code>.</p></li><li><p>Click Next, then click Next again to skip step 3, Additional Properties.</p></li><li><p>In Step 4, type in <strong>IfpwafcadPool</strong> for JDBC Connection Pool Name. Make sure the Extract from Existing Connection option is selected, and choose <code>jdbc:mysql://localhost:3306/MyNewDatabase</code> from the drop-down list. Click Next.</p></li></ol></p><p><p><div class="imgBox"><img alt="How to connect html to database with mysql using java" data-orgimg="https://sg.cdnki.com/how-to-connect-html-to-database-with-mysql-using-java---aHR0cHM6Ly9uZXRiZWFucy5hcGFjaGUub3JnL2tiL2RvY3Mvd2ViL2ltYWdlcy9qZGJjLXJlc291cmNlLXdpemFyZDIucG5n.webp" ></img></div></p><p>Figure 12. Specify connection pool settings in the JDBC Resource wizard</p><p>*Note: *The wizard detects any database connections that have been set up in the IDE. Therefore, you need to have already created a connection to the <code>MyNewDatabase</code> database at this point. You can verify what connections have been created by opening the Services window (Ctrl-5; ⌘-5 on Mac) and looking for connection nodes ( <span><div class="imgBox"><img alt="How to connect html to database with mysql using java" data-orgimg="https://sg.cdnki.com/how-to-connect-html-to-database-with-mysql-using-java---aHR0cHM6Ly9uZXRiZWFucy5hcGFjaGUub3JnL2tiL2RvY3Mvd2ViL2ltYWdlcy9jb25uZWN0aW9uLW5vZGUtaWNvbi5wbmc=.webp" ></img></div></span> ) under the Databases category.</p><p><ol><li><p>In Step 5, select <code>javax.sql.ConnectionPoolDataSource</code> in the Resource Type drop-down list.</p></li></ol></p><p>Note that the IDE extracts information from the database connection you specified in the previous step, and sets name-value properties for the new connection pool.</p><p><p><div class="imgBox"><img alt="How to connect html to database with mysql using java" data-orgimg="https://sg.cdnki.com/how-to-connect-html-to-database-with-mysql-using-java---aHR0cHM6Ly9uZXRiZWFucy5hcGFjaGUub3JnL2tiL2RvY3Mvd2ViL2ltYWdlcy9qZGJjLXJlc291cmNlLXdpemFyZDMucG5n.webp" ></img></div></p><p>Figure 13. Default values are based on information extracted from the selected database connection</p><p><ol><li><p>Click Finish. The wizard generates a <code>glassfish-resources.xml</code> file that contains entries for the data source and connection pool you specified.</p></li></ol></p><p>In the Projects window, you can open the <code>glassfish-resources.xml</code> file that was created under the Server Resources node and note that, within the <code><resources></code> tags, a data source and connection pool have been declared containing the values you previously specified.</p><p>To confirm that a new data source and connection pool are indeed registered with the GlassFish server, you can deploy the project to the server, then locate the resources in the IDE’s Services window:</p><p><ol><li><p>In the Projects window, right-click the IFPWAFCAD project node and choose Deploy. The server starts up if not already running, and the project is compiled and deployed to it.</p></li><li><p>Open the Services window (Ctrl-5; ⌘-5 on Mac) and expand the Servers > GlassFish > Resources > JDBC > JDBC Resources and Connection Pools nodes. Note that the new data source and connection pool are now displayed:</p></li></ol></p><p><p><div class="imgBox"><img alt="How to connect html to database with mysql using java" data-orgimg="https://sg.cdnki.com/how-to-connect-html-to-database-with-mysql-using-java---aHR0cHM6Ly9uZXRiZWFucy5hcGFjaGUub3JnL2tiL2RvY3Mvd2ViL2ltYWdlcy9zZXJ2aWNlcy13aW5kb3ctZ2xhc3NmaXNoLnBuZw==.webp" ></img></div></p><p>Figure 14. New data source and connection pool displayed in Services window</p><p><h3 id="referencing-the-data-source-from-the-application">Referencing the data source from the application</h3><p>You need to reference the JDBC resource you just configured from the web application. To do so, you can create an entry in the application’s <code>web.xml</code> deployment descriptor.</p><p>Deployment descriptors are XML-based text files that contain information describing how an application is to be deployed to a specific environment. For example, they are normally used to specify application context parameters and behavioral patterns, security settings, as well as mappings for servlets, filters and listeners.</p><p><strong>Note.</strong> If you specified Java EE 6 or Java EE 7 as the Java version when you created the project, you need to create the deployment descriptor file by choosing Web > Standard Deployment Descriptor in the New File wizard.</p><p>Perform the following steps to reference the data source in the application’s deployment descriptor.</p><p><ol><li><p>In the Projects window, expand the Configuration Files folder and double-click <code>web.xml</code> to open the file in the editor.</p></li><li><p>Click the References tab located along the top of the editor.</p></li><li><p>Expand the Resource References heading and click Add to open the Add Resource Reference dialog.</p></li><li><p>For Resource Name, enter the resource name that you gave when configuring the data source for the server above (<code>jdbc/IFPWAFCAD</code>).</p></li><li><p>Type <strong><code>javax.sql.ConnectionPoolDataSource</code></strong> in the Resource Type field. Click OK.</p></li></ol></p><p>The Description field is optional, but you can enter a human-readable description of the resource, e.g., <code>Database for IFPWAFCAD application</code>.</p><p><p><div class="imgBox"><img alt="How to connect html to database with mysql using java" data-orgimg="https://sg.cdnki.com/how-to-connect-html-to-database-with-mysql-using-java---aHR0cHM6Ly9uZXRiZWFucy5hcGFjaGUub3JnL2tiL2RvY3Mvd2ViL2ltYWdlcy9hZGQtcmVzb3VyY2UtcmVmZXJlbmNlLnBuZw==.webp" ></img></div></p><p>Figure 15. Specify resource properties in the Add Resource Reference dialog</p><p>The new resource is now listed under the Resource References heading.</p><p><ol><li><p>To verify that the resource is now added to the <code>web.xml</code> file, click the Source tab located along the top of the editor. Notice that the following <`resource-ref`> tags are now included.</p></li></ol> </p><p><pre><code><resource-ref> <description>Database for IFPWAFCAD application</description> <res-ref-name>jdbc/IFPWAFCAD</res-ref-name> <res-type>javax.sql.ConnectionPoolDataSource</res-type> <res-auth>Container</res-auth> <res-sharing-scope>Shareable</res-sharing-scope> </resource-ref></code></pre></p><p><h3 id="adding-the-database-driver-s-jar-file-to-the-server">Adding the database driver’s JAR file to the server</h3><p>Adding the database driver’s JAR file is another step that is vital to enabling the server to communicate with your database. Ordinarily, you would need to locate your database driver’s installation directory and copy the <code>mysql-connector-java-5.1.6-bin.jar</code> file from the driver’s root directory into the library folder of the server you are using. Fortunately, the IDE’s server management is able to detect at deployment whether the JAR file has been added - and if not, it does so automatically.</p><p>In order to demonstrate this, open the Servers manager (Choose Tools > Servers). The IDE provides a JDBC driver deployment option. If the option is enabled, it initiates a check to determine whether any drivers are required for the server’s deployed applications. In the case of MySQL, if the driver is required and it is missing, the IDE’s bundled driver is deployed to the appropriate location on the server.</p><p><ol><li><p>Choose Tools > Servers to open the Servers manager. Select the GlassFish server in the left pane.</p></li><li><p>In the main pane, select the Enable JDBC Driver Deployment option.</p></li></ol></p><p><p><div class="imgBox"><img alt="How to connect html to database with mysql using java" data-orgimg="https://sg.cdnki.com/how-to-connect-html-to-database-with-mysql-using-java---aHR0cHM6Ly9uZXRiZWFucy5hcGFjaGUub3JnL2tiL2RvY3Mvd2ViL2ltYWdlcy9zZXJ2ZXJzLXdpbmRvdy5wbmc=.webp" ></img></div></p><p>Figure 16. JDBC Driver Deployment option enables automatic driver deployment</p><p><ol><li><p>Before you close the Servers manager, make a note of the path indicated in the Domains folder text field. When you connect to the GlassFish server in the IDE, you are actually connecting to an instance of the application server. Each instance runs applications in a unique domain, and the Domain Name field indicates the name of the domain your server is using. As shown in the image above, the driver JAR file should be located within <code>domain1</code>, which is the default domain created upon installing the GlassFish server.</p></li><li><p>Click Close to exit the Servers manager.</p></li><li><p>On your computer, navigate to the GlassFish server installation directory and drill into the <code>domains</code> > <code>domain1</code> > <code>lib</code> subfolder. Because you should have already deployed the IFPWAFCAD project to the server, you should see the <code>mysql-connector-java-5.1.6-bin.jar</code> file. If you do not see the driver JAR file, perform the following step.</p></li><li><p>Deploy your project to the server. In the IDE’s Projects window, choose Deploy from the right-click menu of the project node. You can view progress in the IDE’s Output window (Ctrl-4; ⌘-4 on Mac). The output indicates that the MySQL driver is deployed to a location in the GlassFish server.</p></li></ol></p><p><p><div class="imgBox"><img alt="How to connect html to database with mysql using java" data-orgimg="https://sg.cdnki.com/how-to-connect-html-to-database-with-mysql-using-java---aHR0cHM6Ly9uZXRiZWFucy5hcGFjaGUub3JnL2tiL2RvY3Mvd2ViL2ltYWdlcy9vdXRwdXQtd2luZG93LnBuZw==.webp" ></img></div></p><p>Figure 17. Output window indicates that the MySQL driver has been deployed</p><p>Now, if you return to the <code>domain1/lib</code> subfolder on your computer, you can see that the <code>mysql-connector-java-5.1.6-bin.jar</code> file has been automatically added.</p><p><h2 id="adding-dynamic-logic">Adding Dynamic Logic</h2><p><p>Returning to the <code>index.jsp</code> and <code>response.jsp</code> placeholders that you created earlier in the tutorial, you can now implement the JSTL code that enables pages to generate content dynamically, i.e., based on user input. To do so, perform the following three tasks.</p><p><ol><li><p>Add the JSTL library to the project’s classpath</p></li><li><p>Implement JSTL code</p></li></ol></p><p><h3 id="adding-the-jstl-library-to-the-project-s-classpath">Adding the JSTL library to the project’s classpath</h3><p>You can apply the JavaServer Pages Standard Tag Library (JSTL) to access and display data taken from the database. The GlassFish server includes the JSTL library by default. You can verify this by expanding the GlassFish Server node under the Libraries node in the Projects window, and searching for the <code>javax.servlet.jsp.jstl.jar</code> library. (Older versions of the GlassFish server use the <code>jstl-impl.jar</code> library.) Because the GlassFish server libraries are by default added to your project’s classpath, you do not have to perform any steps for this task.</p><p>JSTL provides the following four basic areas of functionality.</p><p><ul><li><p><code>core</code>: common, structural tasks such as iterators and conditionals for handling flow control</p></li><li><p><code>fmt</code>: internationalization and localization message formatting</p></li><li><p><code>sql</code>: simple database access</p></li><li><p><code>xml</code>: handling of XML content</p></li></ul></p><p>This tutorial focuses on usage of the <code>core</code> and <code>sql</code> tag libraries.</p><p><h3 id="implementing-jstl-code">Implementing JSTL code</h3><p>Now you can implement the code that dynamically retrieves and displays data for each page. Both pages require that you implement an SQL query that utilizes the data source created earlier in the tutorial.</p><p>The IDE provides several database-specific JSTL snippets which you can select from the Palette (Ctrl-Shift-8; ⌘-Shift-8 on Mac).</p><p><p><div class="imgBox"><img alt="How to connect html to database with mysql using java" data-orgimg="https://sg.cdnki.com/how-to-connect-html-to-database-with-mysql-using-java---aHR0cHM6Ly9uZXRiZWFucy5hcGFjaGUub3JnL2tiL2RvY3Mvd2ViL2ltYWdlcy9wYWxldHRlLWRiLnBuZw==.webp" ></img></div></p><p>Figure 18. Choose database-specific JSTL snippets from the Palette</p><p><h4>index.jsp</h4><p>In order to dynamically display the contents of the form in <code>index.jsp</code>, you need to access all <code>name`s from the `Subject</code> database table.</p><p><ol><li><p>Hover your mouse over the DB Report item in the Palette.</p></li></ol></p><p><p><div class="imgBox"><img alt="How to connect html to database with mysql using java" data-orgimg="https://sg.cdnki.com/how-to-connect-html-to-database-with-mysql-using-java---aHR0cHM6Ly9uZXRiZWFucy5hcGFjaGUub3JnL2tiL2RvY3Mvd2ViL2ltYWdlcy9kYi1yZXBvcnQucG5n.webp" ></img></div></p><p>Figure 19. Type 'db' and press Ctrl-Space to access database-specific JSTL snippets</p><p>The DB Report item uses the <code><sql:query></code> tag to create an SQL query, then it uses the <code><c:forEach></code> tag to loop through the query’s <code>resultset</code> and output the retrieved data.</p><p><ol><li><p>Place your cursor above the <code><%@page …​ %></code> declaration (line 7), then double-click the DB Report item in the Palette. In the dialog that displays, enter the following details:</p><p><ul><li><p><strong>Variable Name:</strong> <code>subjects</code></p></li><li><p><strong>Scope:</strong> <code>page</code></p></li><li><p><strong>Data Source:</strong> <code>jdbc/IFPWAFCAD</code></p></li><li><p><strong>Query Statement:</strong> <code>SELECT subject_id, name FROM Subject</code></p></li></ul></p></li></ol></p> <p><p><div class="imgBox"><img alt="How to connect html to database with mysql using java" data-orgimg="https://sg.cdnki.com/how-to-connect-html-to-database-with-mysql-using-java---aHR0cHM6Ly9uZXRiZWFucy5hcGFjaGUub3JnL2tiL2RvY3Mvd2ViL2ltYWdlcy9pbnNlcnQtZGItcmVwb3J0LnBuZw==.webp" ></img></div></p><p>Figure 20. Use the Insert DB Report dialog to specify query-specific details</p><p><ol><li><p>Click OK. The following content is generated in the <code>index.jsp</code> file. (New content shown in <strong>bold</strong>.)</p></li></ol></p><p><pre><code>*<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <%@taglib prefix="sql" uri="http://java.sun.com/jsp/jstl/sql"%>* <%-- Document : index Author : nbuser --%> *<sql:query var="subjects" dataSource="jdbc/IFPWAFCAD"> SELECT subject_id, name FROM Subject </sql:query> <table border="1"> <!-- column headers --> <tr> <c:forEach var="columnName" items="${subjects.columnNames}"> <th><c:out value="${columnName}"/></th> </c:forEach> </tr> <!-- column data --> <c:forEach var="row" items="${subjects.rowsByIndex}"> <tr> <c:forEach var="column" items="${row}"> <td><c:out value="${column}"/></td> </c:forEach> </tr> </c:forEach> </table>* <%@page contentType="text/html" pageEncoding="UTF-8"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"></code></pre></p><p>Note that the IDE automatically added <code>taglib</code> directives needed for the JSTL tags used in the generated content (<code><sql:query></code> and <code><c:forEach></code>). A <code>taglib</code> directive declares that the JSP page uses custom (i.e., JSTL) tags, names the tag library that defines them, and specifies their tag prefix.</p><p><ol><li><p>Run the project to see how it displays in a browser. Right-click the project node in the Projects window and choose Run.</p></li></ol></p><p>When you choose Run, the IDE deploys the project to the GlassFish server, the index page is compiled into a servlet, and the welcome page opens in your default browser. The code generated from the DB Report item creates the following table in the welcome page.</p><p><p><div class="imgBox"><img alt="How to connect html to database with mysql using java" data-orgimg="https://sg.cdnki.com/how-to-connect-html-to-database-with-mysql-using-java---aHR0cHM6Ly9uZXRiZWFucy5hcGFjaGUub3JnL2tiL2RvY3Mvd2ViL2ltYWdlcy9kYi1yZXBvcnQtdGFibGUucG5n.webp" ></img></div></p><p>Figure 21. Use DB Report for quick prototyping of database table data</p><p>As you can see, the DB Report item enables you to quickly test your database connection, and enables you to view table data from the database in your browser. This can be particularly useful when prototyping.</p> <p>The following steps demonstrate how to integrate the generated code into the HTML drop-down list you created earlier in the tutorial.</p><p><ol><li><p>Examine the column data in the generated code. Two <code><c:forEach></code> tags are used; one is nested inside the other. This causes the JSP container (i.e., the GlassFish server) to perform a loop on all table rows, and for each row, it loops through all columns. In this manner, data for the entire table is displayed.</p></li><li><p>Integrate the <code><c:forEach></code> tags into the HTML form as follows. The value of each item becomes the <code>subject_id</code>, and the output text becomes the <code>name</code>, as recorded in the database. (Changes are displayed in <strong>bold</strong>).</p></li></ol></p><p><pre><code><form action="response.jsp"> <strong>Select a subject:</strong> <select name="subject_id"> *<c:forEach var="row" items="${subjects.rowsByIndex}"> <c:forEach var="column" items="${row}">* <option *value="<c:out value="${column}"/>"*>*<c:out value="${column}"/>*</option> *</c:forEach> </c:forEach>* </select> <input type="submit" value="submit" name="submit" /> </form></code></pre></p><p><span>An alternative, simpler way to integrate the <code><c:forEach></code> tags into the HTML form would be as follows.</span></p><p><pre><code><form action="response.jsp"> <strong>Select a subject:</strong> <select name="subject_id"> *<c:forEach var="row" items="${subjects.rows}">* <option *value="${row.subject_id}"*>*${row.name}*</option> *</c:forEach>* </select> <input type="submit" value="submit" name="submit" /> </form></code></pre></p><p>In either case, the <code><c:forEach></code> tags loop through all <code>subject_id</code> and <code>name</code> values from the SQL query, and insert each pair into the HTML <code><option></code> tags. In this manner, the form’s drop-down list is populated with data.</p><p><ol><li><p>Delete the table that was generated from the DB Report item. (Deletion shown below as <strong><span>strike-through text</span></strong>.)</p></li></ol></p><p><pre><code><%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <%@taglib prefix="sql" uri="http://java.sun.com/jsp/jstl/sql"%> <%-- Document : index Created on : Dec 22, 2009, 7:39:49 PM Author : nbuser --%> <sql:query var="subjects" dataSource="jdbc/IFPWAFCAD"> SELECT subject_id, name FROM Subject </sql:query> *[.line-through]#<table border="1"> <!-- column headers --> <tr> <c:forEach var="columnName" items="${subjects.columnNames}"> <th><c:out value="${columnName}"/></th> </c:forEach> </tr> <!-- column data --> <c:forEach var="row" items="${subjects.rowsByIndex}"> <tr> <c:forEach var="column" items="${row}"> <td><c:out value="${column}"/></td> </c:forEach> </tr> </c:forEach> </table>#* <%@page contentType="text/html" pageEncoding="UTF-8"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"></code></pre></p><p><ol><li><p>Save your changes (Ctrl-S; ⌘-S on Mac).</p></li><li><p>Refresh the welcome page of the project in your browser.</p></li></ol></p><p>Note that the drop-down list in the browser now contains subject names that were retrieved from the database.</p><p>You do not need to redeploy your project because compile-on-save is enabled for your project by default. This means that when you modify and save a file, the file is automatically compiled and deployed and you do not need to recompile the entire project. You can enable and disable compile-on-save for your project in the Compiling category of the Properties window of the project.</p><p><h4>response.jsp</h4><p>The response page provides details for the counselor who corresponds to the subject chosen in the welcome page. The query you create must select the counselor record whose <code>counselor_id</code> matches the <code>counselor_idfk</code> from the selected subject record.</p><p><ol><li><p>Place your cursor above the <code><%@page …​ %></code> declaration (line 7), and double-click DB Query in the Palette to open the Insert DB Query dialog box.</p></li><li><p>Enter the following details in the Insert DB Query dialog box.</p><p><ul><li><p><strong>Variable Name:</strong> <code>counselorQuery</code></p></li><li><p><strong>Scope:</strong> <code>page</code></p></li><li><p><strong>Data Source:</strong> <code>jdbc/IFPWAFCAD</code></p></li><li><p><strong>Query Statement:</strong> <code>SELECT * FROM Subject, Counselor WHERE Counselor.counselor_id = Subject.counselor_idfk AND Subject.subject_id = ? <sql:param value="${param.subject_id}"/></code></p></li></ul></p></p></li></ol></p><p><p><div class="imgBox"><img alt="How to connect html to database with mysql using java" data-orgimg="https://sg.cdnki.com/how-to-connect-html-to-database-with-mysql-using-java---aHR0cHM6Ly9uZXRiZWFucy5hcGFjaGUub3JnL2tiL2RvY3Mvd2ViL2ltYWdlcy9pbnNlcnQtZGItcXVlcnkyLnBuZw==.webp" ></img></div></p><p>Figure 22. Use the Insert DB Query dialog to specify query-specific details</p><p><ol><li><p>Click OK. The following content is generated in the <code>response.jsp</code> file. (New content shown in <strong>bold</strong>.)</p></li></ol></p><p><pre><code>*<%@taglib prefix="sql" uri="http://java.sun.com/jsp/jstl/sql"%>* <%-- Document : response Created on : Dec 22, 2009, 8:52:57 PM Author : nbuser --%> *<sql:query var="counselorQuery" dataSource="jdbc/IFPWAFCAD"> SELECT * FROM Subject, Counselor WHERE Counselor.counselor_id = Subject.counselor_idfk AND Subject.subject_id = ? <sql:param value="${param.subject_id}"/> </sql:query>* <%@page contentType="text/html" pageEncoding="UTF-8"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"></code></pre></p><p>Note that the IDE automatically added the <code>taglib</code> directive needed for the <code><sql:query></code> tag. Also, note that you used an <code><sql:param></code> tag directly within the query. Because this query relies on the <code>subject_id</code> value that was submitted from <code>index.jsp</code>, you can extract the value using an EL (Expression Language) statement in the form of <code>${param.subject_id}</code>, and then pass it to the <code><sql:param></code> tag so that it can be used in place of the SQL question mark (<code>?</code>) during runtime.</p><p><ol><li><p>Use a <code><c:set></code> tag to set a variable that corresponds to the first record (i.e., row) of the <code>resultset</code> returned from the query. (New content shown in <strong>bold</strong>.)</p></li></ol></p><p><pre><code><sql:query var="counselorQuery" dataSource="jdbc/IFPWAFCAD"> SELECT * FROM Subject, Counselor WHERE Counselor.counselor_id = Subject.counselor_idfk AND Subject.subject_id = ? <sql:param value="${param.subject_id}"/> </sql:query> *<c:set var="counselorDetails" value="${counselorQuery.rows[0]}"/>*</code></pre></p><p>Although the <code>resultset</code> returned from the query should only contain a single record, this is a necessary step because the page needs to access values from the record using EL (Expression Language) statements. Recall that in <code>index.jsp</code>, you were able to access values from the <code>resultset</code> simply by using a <code><c:forEach></code> tag. However, the <code><c:forEach></code> tag operates by setting a variable for the rows contained in the query, thus enabling you to extract values by including the row variable in EL statements.</p><p><ol><li><p>Add the <code>taglib</code> directive for the JSTL <code>core</code> library to the top of the file, so that the <code><c:set></code> tag is understood. (New content shown in <strong>bold</strong>.)</p></li></ol></p><p><pre><code>*<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>* <%@taglib prefix="sql" uri="http://java.sun.com/jsp/jstl/sql"%></code></pre></p><p> <ol><li><p>In the HTML markup, replace all placeholders with EL statements code that display the data held in the <code>counselorDetails</code> variable. (Changes below shown in <strong>bold</strong>):</p></li></ol></p><p><pre><code><html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <link rel="stylesheet" type="text/css" href="style.css"> <title>*${counselorDetails.name}*

    *${counselorDetails.name}*
    Description: *${counselorDetails.description}*
    Counselor: *${counselorDetails.first_name} ${counselorDetails.nick_name} ${counselorDetails.last_name}*
    member since: *${counselorDetails.member_since}*
    Contact Details: email: *${counselorDetails.email}*
    phone: *${counselorDetails.telephone}*

    Running the Completed Application

    You’ve now completed the application. Try running it again to see how it displays in a browser. Note that because of NetBeans' Compile on Save feature, you do not need to worry about compiling or redeploying the application. When you run a project, you can be sure the deployment contains your latest changes.

    Click the Run Project (

    How to connect html to database with mysql using java
    ) button in the main toolbar. The index.jsp page opens in the IDE’s default browser.

    When index.jsp displays in the browser, select a subject from the drop-down list and click submit. You should now be forwarded to the response.jsp page, showing details corresponding to your selection.

    How to connect html to database with mysql using java

    Figure 23. response.jsp displayed in a browser, showing data retrieved from database

    This concludes the Creating a Simple Web Application Using a MySQL Database tutorial. This document demonstrated how to create a simple web application that connects to a MySQL database. It also demonstrated how to construct an application using a basic two-tier architecture, and utilized numerous technologies including JSP, JSTL, JDBC, and JNDI as a means of accessing and displaying data dynamically.

    Troubleshooting

    Most of the problems that occur with the tutorial application are due to communication difficulties between the GlassFish Server Open Source Edition and the MySQL database server. If your application does not display correctly, or if you are receiving a server error, the following examinations may be useful.

    • Do database resources exist?

    • Do the connection pool and data source exist on the server?

    • Is the MySQL Connector/J driver accessible to the GlassFish server?

    • Is the database password-protected?

    • Are the connection pool properties correctly set?

    Do database resources exist?

    Use the IDE’s Services window (Ctrl-5; ⌘-5 on Mac) to ensure that the MySQL server is running, and that MyNewDatabase is accessible and contains appropriate table data.

    • To connect to the MySQL database server, right-click the MySQL Server node and choose Connect.

    • If a connection node (

      How to connect html to database with mysql using java
      ) for MyNewDatabase does not display in the Services window, you can create a connection by right-clicking the MySQL driver node (
      How to connect html to database with mysql using java
      ) and choosing Connect Using. Enter the required details in the dialog that displays.

    How to connect html to database with mysql using java

    Figure 24. Establish a database connection in the IDE using the New Database Connection dialog

    The fields provided in the New Database Connection dialog mirror the URL string entered in the Show JDBC URL option. Therefore, if you know the URL (e.g., jdbc:mysql://localhost:3306/MyNewDatabase) you can paste it into the Show JDBC URL field, and the remaining dialog fields become automatically populated. * To ensure that the Subject and Counselor tables exist and that they contain sample data, expand the MyNewDatabase connection node (

    How to connect html to database with mysql using java
    ) and locate the MyNewDatabase catalog node (
    How to connect html to database with mysql using java
    ). Expand the catalog node to view existing tables. You can view table data by right-clicking a table node and choosing View Data.

    How to connect html to database with mysql using java

    Figure 25. View table data by choosing View Data from the right-click menu of a database table node

    Do the connection pool and data source exist on the server?

    After deploying the application to the GlassFish server, the glassfish-resources.xml contained in the project should instruct the server to create a JDBC resource and connection pool. You can determine whether these exist from the Servers node in the Services window.

    • Expand the Servers > the GlassFish Server > Resources node. Expand JDBC Resources to view the jdbc/IFPWAFCAD data source that was created from glassfish-resources.xml. Expand the Connection Pools node to view the IfpwafcadPool connection pool that was created from glassfish-resources.xml. (This is demonstrated above.)

    Is the MySQL Connector/J driver accessible to the GlassFish server?

    • Locate the GlassFish server installation folder on your computer and drill down into the GlassFish domains/domain1/lib subfolder. Here you should find the mysql-connector-java-5.1.6-bin.jar file.

    Is the database password-protected?

    The database needs to be password-protected to enable the GlassFish server data source to work properly in this tutorial. If you are using the default MySQL root account with an empty password, you can set the password from a command-line prompt.

    • To set your password to nbuser, navigate to your MySQL installation’s bin directory in the command-line prompt and enter the following:

    shell> mysql -u root
    mysql> UPDATE mysql.user SET Password = PASSWORD('_nbuser_')
        ->     WHERE User = 'root';
    mysql> FLUSH PRIVILEGES;

    Are the connection pool properties correctly set?

    Ensure that the connection pool is working correctly for the server.

    1. Open the Services window (Ctrl-5; ⌘-5 on Mac) and expand the Servers node.

    2. Right-click the GlassFish server node and choose View Admin Console.

    3. Enter the username and password if you are prompted. You can view the username and password in the Servers manager.

    4. In the tree on the left side of the console, expand the Resources > JDBC > JDBC Connection Pools > IfpwafcadPool node. Details for the IfpwafcadPool connection pool display in the main window.

    5. Click the Ping button. If the connection pool is set up correctly, you will see a ‘Ping Succeeded’ message.

    How to connect html to database with mysql using java

    Figure 26. Test your connection pool by clicking Ping in the GlassFish server Admin Console

    1. If the ping fails, click the Additional Properties tab and ensure that the listed property values are correctly set.

    See Also

    For more information about Java web development, see the following resources.

    • NetBeans Articles and Tutorials

    • Connecting to a MySQL Database in NetBeans IDE. Covers the basics of working with a MySQL database in the IDE.

    • Introduction to JavaServer Faces 2.x. An introductory tutorial describing how to use the JSF framework in a Java web project.

    • Introduction to the Spring Framework. An introductory tutorial describing how to create an MVC web application using the Spring Framework.

    • Java Database Connectivity (JDBC)

    • JDBC Overview

    • Getting Started with the JDBC API

    • The Java Tutorials: JDBC Basics

    • JavaServer Pages Standard Tag Library (JSTL)

    • JavaServer Pages Standard Tag Library (official product page)

    • Java Naming and Directory Interface (JNDI)

    • Java SE Core Technologies - Java Naming and Directory Interface

    • The JNDI Tutorial

    • The Java Tutorials: Java Naming and Directory Interface

    How do I connect HTML form with MySQL database using JDBC?

    To start with the basic concept of interfacing:.
    Step 1: Creation of Database and Table in MySQL. ... .
    Step 2: Implementation of required Web-pages. ... .
    Step 3: Creation of Java Servlet program with JDBC Connection. ... .
    Step 4: To use this class method, create an object in Java Servlet program. ... .
    Step 5: Get the data from the HTML file..

    How do you connect to a MySQL database in Java?

    To connect to MySQL from Java, you have to use the JDBC driver from MySQL. The MySQL JDBC driver is called MySQL Connector/J. You find the latest MySQL JDBC driver under the following URL: http://dev.mysql.com/downloads/connector/j. The download contains a JAR file which we require later.

    Can we connect HTML with database?

    It happens on server, which is where the website is hosted. So, in order to connect to the database and perform various data related actions, you have to use server-side scripts, like php, jsp, asp.net etc. In order to insert new data into the database, you can use phpMyAdmin or write a INSERT query and execute them.

    Can we connect MySQL with Java?

    In Java, we can connect to our database(MySQL) with JDBC(Java Database Connectivity) through the Java code. JDBC is one of the standard APIs for database connectivity, using it we can easily run our query, statement, and also fetch data from the database.