A fairly common combination of Oracle Public Cloud services that I use together – for example for the implementation of microservices – is DBaaS, Application...
A fairly common combination of Oracle Public Cloud services that I use together – for example for the implementation of microservices – is DBaaS, Application Container Cloud, Application [Container] Cache and Event Hub. In this article, I show the sequence of steps I went through in the Oracle Public Cloud console a few days back to prepare a demo environment for my presentations at Devoxx Morocco in Casablanca. Alternatively, I could have used the command line psm tool and a...
A fairly common combination of Oracle Public Cloud services that I use together – for example for the implementation of microservices – is DBaaS, Application Container Cloud, Application...
project FN
API Microservices
Serverless computing is one of the hottest trends in computing right now due to it’s simplicity and cost efficiency. But the most well-known serverless...
Serverless computing is one of the hottest trends in computing right now due to it’s simplicity and cost efficiency. But the most well-known serverless platforms are either proprietary or difficult to incorporate into existing platforms. Fortunately the open source Fn Project (fnproject.io) was recently launched and it enables you to run your own serverless infrastructure wherever you want—on your laptop or on the cloud with no vendor lock-in. Built on Docker, Fn includes...
Serverless computing is one of the hottest trends in computing right now due to it’s simplicity and cost efficiency. But the most well-known serverless platforms are either proprietary or difficult to...
project fn
Affected Products and Patch Information Security vulnerabilities addressed by this Critical Patch Update affect the products listed below. The product area is...
Affected Products and Patch Information Security vulnerabilities addressed by this Critical Patch Update affect the products listed below. The product area is shown in the Patch Availability Document column. Please click on the links in the Patch Availability Document column below to access the documentation for patch availability information and installation instructions. For details please visit the website here. Affected Products and Versions FMW Platform, versions...
Affected Products and Patch Information Security vulnerabilities addressed by this Critical Patch Update affect the products listed below. The product area is shown in the Patch Availability...
fn project
The bad news: There are servers used in serverless computing. Real servers, with whirring fans and lots of blinking lights, installed in racks inside data...
The bad news: There are servers used in serverless computing. Real servers, with whirring fans and lots of blinking lights, installed in racks inside data centers inside the enterprise or up in the cloud. The good news: You don’t need to think about those servers in order to use their functionality to write and deploy enterprise software. Your IT administrators don’t need to provision or maintain those servers, or think about their processing power, memory, storage, or...
The bad news: There are servers used in serverless computing. Real servers, with whirring fans and lots of blinking lights, installed in racks inside data centers inside the enterprise or up in...
GlassFish 5.0 represents the reference implementation of Java EE 8. We can dockerize Java EE 8 applications by using a GlassFish base image, such as the...
GlassFish 5.0 represents the reference implementation of Java EE 8. We can dockerize Java EE 8 applications by using a GlassFish base image, such as the official oracle/glassfish. The Dockerfile of a zero-dependency Java EE 8 application looks like follows: FROM oracle/glassfish:5.0 COPY target/application.war $GLASSFISH_HOME/glassfish/domains/domain1/autodeploy/ A Docker container of that image starts the application server and auto-deploys our application. application.war...
GlassFish 5.0 represents the reference implementation of Java EE 8. We can dockerize Java EE 8 applications by using a GlassFish base image, such as the official oracle/glassfish. The Dockerfile of...