JavaEE 7 with GlassFish on Eclipse Juno
Join the DZone community and get the full member experience.
Join For Freeava EE 7 is hot. The first four JSRs passed the final approval ballot
recently and GlassFish 4 reached promoted build 83 in the meantime. If
you are following my blog you know, that I do most of my work with
NetBeans. But I indeed recognize, that there are other IDE users out
there which also have a valid right of also testdriving the latest and
greatest in enterprise Java.
The GlassFish Eclipse Plugins
The starting place for Eclipse are the GlassFish Eclipse plugins. They
moved into the Oracle Enterprise Pack for Eclipse (OEPE) project a while
back and are still there to be installed and configured separately. The
easiest way to get them is to use the pre-packaged OEPE
bundle. Simply download the suitable version and get started. If you
already have you favorite Java EE Eclipse version you can also use the java.net update site for Eclipse Juno.
The OEPE package contains oficial releases (more stable, tested) of GF
plugins and new releases come one or two times per year. The update
sites on java.net contain developer builds that are released as needed,
typically a lot more often then OEPE. You can download from whatever
meets your needs.
Install the Plugin
Starting a new Java EE 7 Project
Once that it done you can start with configuring your GlassFish 4.0 domain. The simplest way is to create a New Project > Other > Web > New Dynamic Web Project and select the "New Runtime" button next to target runtime. The New Server Runtime Environment dialogue pops up and you can select "GlassFish 4.0" from the GlassFish folder. Make sure to select a Java SE 7 JDK and the appropriate GlassFish Server Directory to use (or even install). In this example I am using the latest promoted build 83 freshly downloaded from the GlassFish website. Click Finish. Now add a simple servlet which does nothing spectacular but use some Java API for Processing JSON to write a simple JSON string.
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("application/json"); PrintWriter out = response.getWriter(); JsonObjectBuilder builder = Json.createObjectBuilder(); builder.add( "person", Json.createObjectBuilder().add("firstName", "Markus") .add("lastName", "Eisele")); JsonObject result = builder.build(); StringWriter sw = new StringWriter(); try (JsonWriter writer = Json.createWriter(sw)) { writer.writeObject(result); } out.print(sw.toString()); }
Right click the project and select "Run as .." > "Run on Server" > GlassFish 4.0. Now point your browser to localhost and see the result working. The server view gives you the well know overview about your instance. And there you go. Have fun doing your Java EE 7 developments with Eclipse :)
Published at DZone with permission of Markus Eisele, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments