Posts tagged Payara Server (5)
New Feature in Payara Server 5.184: Allow Use of Different Security Providers via JCE API
Published on 07 Dec 2018
by Arjan Tijms
Topics:
What's New,
Security,
Payara Server,
New Releases
|
0 Comments
See Our Latest Webinar Based on the 184 Release
Published on 01 Dec 2018
by Jadon Ortlepp
Topics:
Payara Micro,
REST,
Healthcheck,
Payara Server,
New Releases
|
0 Comments
Security Features of Payara Server You Don't Know About - Authorization Modules
Published on 30 Oct 2018
by Arjan Tijms
Topics:
Java EE,
Security,
Payara Server
|
0 Comments
Payara Platform on Microsoft Azure: Container Instances
Published on 02 Oct 2018
by Steve Millidge
Topics:
Docker,
Payara Server,
Microsoft Azure
|
0 Comments
Azure Container Instances allow you to rapidly deploy containers to the Microsoft Azure cloud without having to manage virtual machines and the corresponding infrastructure. Container Instances can be used to rapidly deploy Java EE and MicroProfile applications using Payara Micro as the underlying platform for your Cloud Native applications.
Using Payara Platform to Rapidly Deploy Applications on Microsoft Azure
Published on 01 Oct 2018
by Steve Millidge
Topics:
Docker,
Payara Server,
Microsoft Azure
|
0 Comments
The Payara Platform is perfect for deploying Jakarta EE and MicroProfile applications on Microsoft Azure. One rapid option for deploying on Azure is to use Azure Application Services, especially Web App for Containers. The WebApp for Containers service allows you to rapidly deploy production Payara Micro applications onto Azure in seconds, allowing both rapid horizontal and vertical scaling on demand.
Did You Know? You can Install Payara Server as a Service to Automatically Start on Boot
Published on 27 Sep 2018
by Andrew Pielage
Topics:
Payara Server
|
3 Comments
Did You Know...?
You can Install Payara Server as a Service to Automatically Start on Boot
How to Store and Retrieve Data from a Database
Published on 25 Sep 2018
by Gaurav Gupta
Topics:
Payara Server
|
2 Comments
In the previous guide, we’ve seen how we can configure the Payara Platform to connect to a database and use the datasource from an application. This guide walks you through the process of building an application to store and retrieve data from the database.
OpenID Connect in the Payara Platform 5.183
Published on 20 Sep 2018
by Gaurav Gupta
Topics:
REST,
Security,
Payara Server
|
21 Comments
Consuming a REST Service
Published on 07 Sep 2018
by Arjan Tijms
Topics:
REST,
Payara Server
|
0 Comments
A REST Service in Java EE can be created using JAX-RS. The contents of such service can be consumed using ordinary HTTP requests to a URL. URLs are typically kept simple and have a logical pattern, so it's easy to type them manually in e.g. a browser. This is different from SOAP, which essentially uses HTTP as well, but is designed to be rather complex and therefor making it not so easy to quickly test something in a browser.
Create a User Interface with JSF
Published on 03 Sep 2018
by Arjan Tijms
Topics:
Payara Server
|
2 Comments
JSF is a component oriented MVC (Model View Controller) framework that's a part of Java EE. It comes with a small set of basic components (widgets), a templating engine, and facilities for converting and validating input. JSF strongly builds on other APIs in Java EE. Request handling is build on top of the Servlet API, binding UI components to Java code is mostly done via Java EE's Expression Language, with the Java code being (named) CDI beans. Validation is often delegated to Bean Validation.