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
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.
Securing a REST Service
Published on 05 Sep 2018
by Arjan Tijms
Topics:
REST,
Security
|
1 Comment
If you're building a REST service, then that REST service will expose some kind of data or will allow some kind of interactions with a server. For instance, consider a Facebook REST service that allows you to retrieve your chat history. Naturally you don't want just anyone looking at that history, hence the need for security.
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.
What's new in Payara Server & Payara Micro 5.182
Published on 12 Jun 2018
by Arjan Tijms
Topics:
Payara Platform 5
|
6 Comments
An Introduction to Connection Pools in Payara Server 5
Published on 02 May 2018
by Arjan Tijms
Topics:
Connection Pools,
Payara Platform 5,
Payara Server
|
7 Comments
Payara Tools Unlocks Eclipse For Payara 5
Published on 05 Apr 2018
by Arjan Tijms
Topics:
How-to,
Eclipse,
Payara Server 5,
Payara Platform 5
|
9 Comments
For a long time Payara, a derivative of GlassFish, could be used in Eclipse using the Oracle GlassFish Tools. With the release of Payara 5, a few problems prevented the plug-in from recognizing Payara 5, meaning Payara 5 couldn’t really be used in Eclipse. A new set of tools again makes it possible to use Payara 5 with Eclipse, along with other improvements.
Payara Server 5 Alpha 2 release is here!
Published on 20 Oct 2017
by Arjan Tijms
Topics:
What's New,
Payara Server 5
|
1 Comment
We're excited to announce that the second Alpha release of Payara Server 5 is now available for download! We highly encourage you to give it a go, test it out and let us know what further improvements are needed.
Payara Server 5 Alpha 1 release is here!
Published on 12 Sep 2017
by Arjan Tijms
Topics:
What's New,
Payara Server 5
|
0 Comments
We're excited to announce that the first Alpha release of Payara Server 5 is now available for download! We highly encourage you to give it a go, test it out and let us know what further improvements are needed.
Deploying Data Source Configuration
Published on 14 Jun 2017
by Arjan Tijms
Topics:
Java EE,
Maven,
Payara Micro,
Microservices,
CLI,
DevOps,
Developer
|
4 Comments
Since Java EE 6 it's possible to define data sources in a portable way.
This does mean though that the data source is embedded in the application archive. For some use cases, this is exactly what's needed, but for others it may not be ideal.