The is a consolidated list of all the Java EE 6 blog entries published on this blog so far:
- TOTD #139: Asynchronous Request Processing using Servlets 3.0 and Java EE 6
- TOTD #137: Asynchronous EJB, a light-weight JMS solution – Feature-rich Java EE 6
- TOTD #136: Default Error Page using Servlets 3.0 – Improved productivity using Java EE 6
- TOTD #135: JSF2 Composite Components using NetBeans IDE – lightweight Java EE 6
- TOTD #133: JPA2 (JPQL & Criteria), JavaDB, and embedded GlassFish – perfect recipe for testing
- TOTD #132: Servlets 3.0 in Embedded GlassFish Reloaded – lightweight Java EE 6
- TOTD #128: EJBContainer.createEJBContainer: Embedded EJB using GlassFish v3
- TOTD #123: f:ajax, Bean Validation for JSF, CDI for JSF and JPA 2.0 Criteria API – all in one Java EE 6 sample application
- TOTD #120: Deployment Descriptor-free Java EE 6 application using JSF 2.0 + EJB 3.1 + Servlets 3.0
- TOTD #112: Exposing Oracle database tables as RESTful entities using JAX-RS, GlassFish, and NetBeans
- TOTD #109: How to convert a JSF managed bean to JSR 299 bean (Web Beans) ?
- TOTD #108: Java EE 6 web application (JSF 2.0 + JPA 2.0 + EJB 3.1) using Oracle, NetBeans, and GlassFish
- TOTD #102: Java EE 6 (Servlet 3.0 and EJB 3.1) wizards in Eclipse
- TOTD #101: Applying Servlet 3.0/Java EE 6 “web-fragment.xml” to Lift – Deploy on GlassFish v3
- TOTD #99: Creating a Java EE 6 application using MySQL, JPA 2.0 and Servlet 3.0 with GlassFish Tools Bundle for Eclipse
- TOTD #98: Create a Metro JAX-WS Web service using GlassFish Tools Bundle for Eclipse
- TOTD #95: EJB 3.1 + Java Server Faces 2.0 + JPA 2.0 web application – Getting Started with Java EE 6 using NetBeans 6.8 M1 & GlassFish v3
- TOTD #94: A simple Java Server Faces 2.0 + JPA 2.0 application – Getting Started with Java EE 6 using NetBeans 6.8 M1 & GlassFish v3
- TOTD #93: Getting Started with Java EE 6 using NetBeans 6.8 M1 & GlassFish v3 – A simple Servlet 3.0 + JPA 2.0 app
- TOTD #91: Applying Java EE 6 "web-fragment.xml" to Apache Wicket – Deploy on GlassFish v3
- TOTD #82: Getting Started with Servlet 3.0 and EJB 3.1 in Java EE 6 using NetBeans 6.7
Feel free to use any of them in your presentations or webinars or anywhere else.
What other Java EE 6 demos would you like to see ?
Technorati: javaee6 glassfish v3 demos netbeans eclipse
Related posts:- TOTD #94: A simple Java Server Faces 2.0 + JPA 2.0 application – Getting Started with Java EE 6 using NetBeans 6.8 M1 & GlassFish v3
- TOTD #95: EJB 3.1 + Java Server Faces 2.0 + JPA 2.0 web application – Getting Started with Java EE 6 using NetBeans 6.8 M1 & GlassFish v3
- Java EE 6 & GlassFish workshop delivered at San Francisco JUG – Slides & Demos available
- TOTD #102: Java EE 6 (Servlet 3.0 and EJB 3.1) wizards in Eclipse
- TOTD #83: Eclipse Tools Bundle for GlassFish 1.0 – Now Available!
In the first place, thank you for the wealth of demos. It is good to see the new features in action.
> What other Java EE 6 demos would you like to see ?
I would like to see JCA 1.6 connector demos and more JMS stuff.
Thanks, Jörg
Comment by Jörg Thönnes — July 7, 2010 @ 11:59 pm
Jorg,
There is some related material on JCA 1.6 available at:
http://blogs.sun.com/JagadishPrasath/entry/resource_adapter_annotations
Comment by Arun Gupta — July 15, 2010 @ 5:35 pm
Looks like we are many to wait for MDB support in GlassFish Embedded. I started a project about it http://kenai.com/projects/forkjoinejb/pages/Home
I would like to have demo on the subject.
Regards
Bruno
Comment by Bruno — August 24, 2010 @ 9:34 am
First off, thank you so much for this blog, I’ve just found it and it seems to host a wealth of knowledge.
I’ve just started using Java and to this end I’ve started out with Netbeans 6.9.1 and Glassfish 3. I tried building a simple web service with an Entity bean from a table in an MS SQL Express DB and a Session bean with just one method (getAll/findAll). I built that in the -ejb project and then proceeded to create a web service in the -war project.
Is this the normal way of building layered applications in Java EE?
I can’t get it to run as the -war can’t find a reference to the persistence info that is in the -ejb, I thought that info would be packaged in the -ejb.jar file referenced in the -war project but it seems it doesn’t. I realize that this explanation got rather diffuse, but I hope you understand anyway.
/Johan
Comment by Johan — November 3, 2010 @ 11:50 am
Johan,
Have you tried bundling your JPA entity beans, EJB, and Web service together in a WAR file ?
Comment by Arun Gupta — November 3, 2010 @ 5:08 pm