Kategorien
Cloud Cloud Foundry Java Pivotal Cloud Foundry Programming Languages

Starting with JEE on Pivotal Cloud Foundry

The following article describes a small proof of concept on how to deploy a sample JEE application. The purpose of that application is the show a transition path from traditional JEE applications requiring a huge application server installation to a more self-contained, still JEE compliant application with a smaller footprint.

Kategorien
Dev Note Java Programming Languages

DEV-NOTES|Java: Surprising import findings

You might not know that the order of static imports and ordinary imports is crucial. I stumbled upon a code snippet using a static import from a static inner class, during some codes research for a work project. Trying out that code ends up with a compiler error, saying that a standard class from the JDK was not found.