GlassFish comes
bundled with an industry grade implementation of Java Server Faces
codenamed Mojarra.
It is the
most complete, up-to-date and well-tested JSF implementation
and used pretty
extensively. GlassFish v2 and v3 Prelude ships with JSF
1.2.x-compliant implementation that is defined as part of Java EE 5.
GlassFish v3 trunk contains JSF 2.0-compliant implementation that is
getting defined...
Today Sun announces the availability of Java
FX 1.0.
JavaFX 1.0 is a rich client platform for creating and delivering Rich
Internet Applications across all screens (desktop, browser,
and mobile) of your life. It consists of the following key components:
JavaFX
SDK includes JavaFX script compiler and runtime
tools, and a host of...
GlassFish
v3 with Merb and Warbler explains how to use Warbler to
deploy a Merb application on GlassFish
v3. Here is a quote from the blog:
this lovely server had a
gem which you can use to fire up a Glassfish server. Easy as pie and
within no time at all we were developing our Merb app on Glassfish.
The blog requires some workaround for Warbler and Nick is
planning to fix them in the...
Lets extend the Jersey endpoint (TOTD#
56) and client (TOTD#
57) such that it can accept a POST request and then invoke it.
Add a new method to "MyResource.java" from TOTD#
56 as:
@POST
@Consumes("application/json")
@Produces("application/json")
public Greeting postIt(Greeting...