DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

How does AI transform chaos engineering from an experiment into a critical capability? Learn how to effectively operationalize the chaos.

Data quality isn't just a technical issue: It impacts an organization's compliance, operational efficiency, and customer satisfaction.

Are you a front-end or full-stack developer frustrated by front-end distractions? Learn to move forward with tooling and clear boundaries.

Developer Experience: Demand to support engineering teams has risen, and there is a shift from traditional DevOps to workflow improvements.

Related

  • Rails 6: Multiple DB Support
  • Keep Your Application Secrets Secret
  • Android Cloud Apps with Azure
  • Introduction to Data Replication With MariaDB Using Docker Containers

Trending

  • Understanding the Mandelbrot Set: A Beautiful Benchmark for Computing Power
  • The Bare Metal Bet That Made Our Multiplayer Platform Hum
  • The Missing Infrastructure Layer: Why AI's Next Evolution Requires Distributed Systems Thinking
  • Misunderstanding Agile: Bridging The Gap With A Kaizen Mindset
  1. DZone
  2. Data Engineering
  3. Databases
  4. Configuring a DataSource in an Enterprise Application Using Payara Server

Configuring a DataSource in an Enterprise Application Using Payara Server

In this post, we’ll explore how to configure aDataSource implementation using the Payara application server environment.

By 
Mahmoud Anouti user avatar
Mahmoud Anouti
·
Jun. 12, 19 · Tutorial
Likes (2)
Comment
Save
Tweet
Share
9.1K Views

Join the DZone community and get the full member experience.

Join For Free

Connecting to a data source is a very common task in enterprise applications, and the main interface for it is the DataSource interface from Java’s JDBC API. In this post, we’ll explore how to configure aDataSource implementation using the Payara application server environment. I will be using Eclipse as IDE (the Enterprise edition), AdoptOpenJDK (build for OpenJDK 8) for running the server, and MariaDB for the database. The Payara Server also works with Oracle’s JDK and Azul Zulu. The goal is to see how to acquire connections to a database in the context of a Java EE environment via the DataSource interface, which is the preferred means to do it according to the JDBC specification.

Requirements

First, we need to download and install the Payara Server. You can download it from this link. Payara has several product options for download, including a microservices-oriented version and Docker images. You can just download the normal Server Full installation which takes roughly 140 MB. The latest version of the server (v5.192) supports running on JDK 11, although it seems to be in preview mode.

To facilitate developing in Eclipse, we need to install a plugin that can recognize Payara as the application server. This can be done by selecting Help -> Eclipse Marketplace, then searching for Payara in the search box. The plugin to install is called “Payara Tools.”

2019-06-03 21_33_06-Eclipse Marketplace

For the purpose of this simple demo app, the database of choice will be MariaDB, an open source database that is very close to MySQL. Even though MariaDB is not listed among the vendors when configuring the database in Payara console, as we will see later it should be possible to just pass in the DataSource implementation and it will work fine.

Links to these prerequisites are provided at the end of this post.

Setting up the Project

The sample application will be a simple Web app with a simple HTTP servlet that will just connect to the database and print information about the database using JDBC. To create the project, the simplest way is from Eclipse selecting New -> Dynamic Web Project. Give a name for the project, and click on the New Runtime button, which will open a dialog to define a target server that references the installed Payara server. There you would specify the local installation of the server and which JDK it will use. These steps are shown in the two images below.

2019-06-04 14_59_04-New Dynamic Web Project

2019-06-04 14_56_09-New Server Runtime EnvironmentYou can either click Finish to create the project or go through the remaining pages if you want to change the context root, as shown below, which will affect the URL used to access the app from the browser (it defaults to the name of the project). Note that we will not be using any web.xml descriptor here.

2019-06-04 15_25_25-New Dynamic Web Project_context_root

Next, we create a servlet under the source directory by selecting New -> Servlet, e.g. in a class com.example.SampleServlet. Eclipse will generate the basic methods to handle the HTTP GET and POST requests (namely, doGet() and doPost). A starting point would be something like the following:

@WebServlet(name = "SampleServlet", urlPatterns = "/dbinfo")
public class SampleServlet extends HttpServlet {
   ...
   @Override
   protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
      response.getWriter().append("Served at: ").append(request.getContextPath());
   }
}

We can run the app directly from Eclipse by right-clicking on the project and selecting Run As -> Run on Server. A dialog will open to select the target server, which will be populated with the one previously defined.

2019-06-04 15_28_45-Run On Server

Select Next and make sure that all properties are filled correctly with no error shown in the dialog. Note the populated domain path corresponding to domain1 (the default domain in Payara) for our Web app.

2019-06-04 15_30_33-Run On Server2

Finishing the run dialog will automatically start Payara and open a browser to the root URL of the app. Our initial servlet should respond with a simple text at the http://localhost:8080/myapp/dbinfo endpoint.

2019-06-04 15_33_34-first_run

This is a quick way to run from within Eclipse (you can also stop the server, clean its state, and otherwise manage it in the Servers view). But it can be more convenient to run Payara separately and manage it from its Admin Console.

Managing Payara From the Console

To stop the running instance of Payara, run on the command line:

asadmin stop-domain

The asadamin executable exists under payara_install/bin. Payara is derived from GlassFish Server Open Source Edition, so all the administration commands from it can be used on Payara. To run the server again:

asadmin start-domain

Once started, you can open the Admin Console on http://localhost:4848, where you can manage apps and resources on the server. We can already see the application that Eclipse has deployed from the Applications section.

2019-06-04 15_47_30-Payara_admin_console

Next, we’ll update the application to connect to the data source. The way to access the DataSource object in this context is using the JNDI lookup facility provided by the application server. We will first register the DataSource of the database via the Admin Console, then inject it via its JNDI name.

Setting up the Database

First, we start the database process, which can be done using the mysqld executable. MariaDB has a predefined database called test, so we can connect to it to create some tables. See Connecting to MariaDB for how to do it this. If you choose a different database vendor, the steps to connect will be different so check the documentation of that particular database.

Assuming we have populated the database test with a few tables, the next step is to register a DataSource for it in Payara. This requires the JDBC driver Jar to be added to the server in order for it to access the DataSource implementation. The JDBC driver for MariaDB can be downloaded from this link. To add the Jar to Payara, run the command:

asadmin add-library path_to_jar

In the Admin Console at http://localhost:4848, go to Resources -> JDBC -> JDBC Connection Pools in the left navigation panel. A list of already existing connection pools exist, e.g. for H2 which comes by default with Payara. Click the New button to create a new Connection Pool.

The pool can be given any human-friendly name, and we specify the name of the DataSource implementation org.mariadb.jdbc.MySQLDataSource. Upon providing the implementation, Payara seemingly uses it to derive a list of properties to configure the DataSource, e.g. the host, port, and database, which need to be filled.

2019-06-04 17_29_09-New JDBC Connection Pool (Step 1 of 2)

2019-06-04 17_29_09-New JDBC Connection Pool (Step 2 of 2)

After filling all needed properties and saving the JDBC Connection Pool, make sure that clicking the Ping button successfully connects to it.

2019-06-04 17_50_18-Ping

Now that the JDBC Connection Pool is created, we can register a JNDI binding for the DataSource, by going to Resources -> JDBC -> JDBC Resources, and selecting New. The JDBC Resource must reference the Pool just created and have a unique name.

2019-06-04 18_06_11-New JDBC Resource

Accessing the DataSource

With the DataSource registered, the servlet class can declare it as a dependency using @Resource:

@Resource(name="java/myapp/jdbc_ds")
DataSource dataSource;

@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    try(Connection connection = dataSource.getConnection()) {
        DatabaseMetaData databaseMetaData = connection.getMetaData();
        PrintWriter writer = response.getWriter();
        writer.append("DB info: ")
              .append(databaseMetaData.getDatabaseProductName())
              .append("\nCatalog name: ")
              .append(connection.getCatalog());
        try(ResultSet tables = databaseMetaData.getTables(connection.getCatalog(), null, null, new String[] { "TABLE" })) {
            while(tables.next()) {
                writer.append("\n" + tables.getString("TABLE_NAME"));
            }
        }
    } catch(SQLException ex) {
        response.getWriter().append("Error " + ex.getMessage());
        getServletContext().log("Error connecting to DB", ex);
    }
}

Note that the underlying implementation will use a pool of connections from which every request will borrow a connection from the pool and return it once done. The pool configuration can be adjusted from the JDBC Connection Pool just created.

We can now run the example just like we did using Eclipse. Another way of doing it is by packaging the app in a WAR file by right-clicking on the project and selecting Export -> WAR file. Then deploy it by running:

asadmin deploy --force path_to_war_file

Note the use of --force to force redeploying the app if it already existed. The result of http://localhost:8080/myapp/dbinfo should look like the below.

2019-06-04 18_31_47-output

Download Links

OpenJDK 8 – https://adoptopenjdk.net/index.html
Payara Server – https://www.payara.fish/software/downloads
Eclipse – https://www.eclipse.org/downloads/
Payara Tools for Eclipse – https://marketplace.eclipse.org/content/payara-tools
MariaDB – https://mariadb.org/download/
MariaDB JDBC driver – https://downloads.mariadb.com/Connectors/java/

References

https://docs.payara.fish/documentation/payara-server/
https://eclipse-ee4j.github.io/glassfish/docs/latest/quick-start-guide/toc.html
https://blog.payara.fish/an-intro-to-connection-pools-in-payara-server-5

application Datasource Payara Server Database app Eclipse Open source Connection (dance) Java Database Connectivity MariaDB

Published at DZone with permission of Mahmoud Anouti, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Rails 6: Multiple DB Support
  • Keep Your Application Secrets Secret
  • Android Cloud Apps with Azure
  • Introduction to Data Replication With MariaDB Using Docker Containers

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

ABOUT US

  • About DZone
  • Support and feedback
  • Community research
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • [email protected]

Let's be friends: