Payara for Beginners - Adding Payara Server to NetBeans

Photo of Matthew Gill by Matthew Gill

This blog uses NetBeans 11.1. If you're using an older version, you may need to perform slightly different steps to get the same result.

When testing an app to be run on Payara Server, it can be extremely useful to be able to test your app continuously from your IDE. If you're using NetBeans this is made very easy. Follow the steps in this blog to setup NetBeans to use Payara Server for running your web apps.

Payara Server Data Sheet

If you haven't made a project to test yet, carry on to the first section of this guide. If you already have an app to run, then you can skip this section.

Creating a Test Maven Application

This first section will guide you through creating a Maven project which can be deployed to Payara Server. If you already have one in mind, you can skip to the next section.

  1. First, create a project using the new project wizard. Go to the Java with Maven category, and select Web Application. Click next.
Project creation menu. Java With Maven -> Web Application
  1. Select a project name and location. The bottom 4 settings are for maven. For naming conventions use the following page: https://maven.apache.org/guides/mini/guide-naming-conventions.html
  1. The final section will give you an option to select a server. You can select Payara Server here if it's already configured. If not, click add and continue to the next section.

Adding the Payara Server Plugin to NetBeans

Since NetBeans 11.1 the Payara Server plugins are installed by default. If the plugins are already installed, you can skip to the next section, otherwise this section will demonstrate how to install the plugins.

  1. From the top menu, go to ToolsPlugins.
  2. In the 'Available Plugins' tab search for Payara, then check following plugins:
    1. Payara Server - the main plugin, and contains the server plugin features
    2. Payara Common - common shared code between server and micro plugins
    3. Payara EE Common - API and SPI code for both plugins
    4. Payara Tooling - UI related source for both plugins
  3. Click install once all the relevant plugins are selected, and follow the installation wizard.

  1. After the plugin installation, click the Finish button to restart the NetBeans IDE.

Using the Payara Server NetBeans Plugin

Now that you've got your project set up and the plugins installed, you need to setup Payara Server in NetBeans.

Setting up Payara Server in NetBeans

  1. Go to ToolsServers and click Add Server (if you created a project as per the earlier section you're already here).
  2. Select Payara Server, and name the server whatever you want. For this example I've named it 'Payara'. Click Next.
  1. From this menu you can either select an empty directory and a Payara Server version to download, or you can select an existing Payara Server install directory. Accept the license agreement and click Next to continue.
  2. Select a domain. A domain is essentially a server at runtime. Unless you've created your own, you can use domain1 as it's the default domain. Enter admin as the username and leave the password field blank.
  1. The server is now created!
  2. If you want to add the server to an already existing project, right click the project and select properties. From this menu, go to Run and select the new Payara Server as a target.

Running the Payara Server Application

After exiting this window, right click your test project and select Run (or click the green 'Run' arrow at the top of the window). The server will start up and you should eventually be greeted with a 'Hello World!' message in your browser.

To stop the server, switch to the server log at the bottom of the window under Output'server name'. Click the stop sign in this window.

Debugging the Payara Server Application

Instead of clicking Run from the right click menu or the top of the NetBeans window, you can instead click Debug from similar locations to automatically run the program and attach the debugger to Payara Server.

Conclusion

That's how to use the Payara Server NetBeans plugin! With a web application in NetBeans setup in this fashion you can deploy, undeploy and debug your application, amongst other things, and all from the NetBeans IDE.

Beginner's Guides to Payara Server

Comments