Java EE

Tag details

Welcome to the 'Java EE' tag page at Technorati. This page features content from the farthest reaches of the Blogosphere that authors have "tagged" with 'Java EE'.

Look up Offsite Link "Java", Offsite Link "EE" at The Free Dictionary

Latest blogosphere posts tagged “Java EE”

  • Glassfish v3 - The Killer Java EE 6 Appserver Is Out - Top Ten Favorites


    Adam BienAuthority Authority: 120
    Glassfish v3 - the killer appserver for the killer platform (Java EE 6) is out . What I like:  Easy installation: you can use the installer or just download the ZIP and extract it. Even easier than Glassfish v2 - you had to execute an ANT target to install the domain. Built-in monitoring capabilities : you can ...
    1 day ago
  • Java EE 6 / EJB 3.1 / JSF 2.0 WAR Modularization With Maven - Concrete Sample


    Adam BienAuthority Authority: 120
    The backing bean HelloView : @ManagedBean @RequestScoped public class HelloView {      @EJB HelloService helloService;     public String getHelloMessage(){         return helloService.hello();     } }  is packaged directly in the classes folder inside the Java EE 6 WAR. The ...
    2 days ago
  • Is Java EE 6 War The New EAR? The Pragmatic Modularization And Packaging


    Adam BienAuthority Authority: 120
    It is not only possible to put EJBs and JSR-299 Beans together directly into a WAR - EJBs can be also packaged separately into a JAR. After copying the “ejb-jar” into the [WAR]/ WEB-INF/lib folder, the included beans become automatically available to the web app. No additional configuration or tweaking is ...
    3 days ago
  • Asynchronous Support in Servlet 3.0


    SDN Program NewsAuthority Authority: 129
    This Tech Tip introduces the asynchronous support that has been added to the Servlet API in Java Servlet 3.0 technology. It also includes a sample application that demonstrates those features.
    3 days ago
  • JSF 1.X Backing Bean - EJB 3 Dependency Injection, (Glassfish) "Problem" and Solution


    Adam BienAuthority Authority: 120
    In case the dependency between a JSR 1.2 backing bean and an EJB 3 doesnt work: //a backing bean public class OrderView{     @EJB private OrderGateway orderGateway;     public int getNrOfOrders(){ return orderGateway.get... //NullPointerException here } }  You should check the ...
    4 days ago
  • Simplest Possible EJB 3.1 + JSR-299/JSR-330 Combination


    Adam BienAuthority Authority: 120
     JSR-299 / JSR-330 beans can be easily combined with EJB 3.1 without any friction. The @Stateless bean:   @Path("message") @Stateless public class ServiceFacade {      @Inject @Message(Say.GOOD_BYE)  MessageService message;      @Inject  DateService dateService;     @GET public String ...
    1 week ago
  • Java Application Platform SDK Update 8 Now Available


    SDN Program NewsAuthority Authority: 129
    This latest free-for-use, production-ready SDK has been updated with Sun GlassFish Enterprise Server v2.1.1. The SDK bundles with Java SE (JDK) 6 have been enhanced with JDK 6 Update 17. Read the overview and download the SDKs now. Multilingual support is available.
    1 week ago
  • Explore NetBeans IDE 6.8 Release Candidate


    SDN Program NewsAuthority Authority: 129
    The first IDE to offer support for the entire Java EE 6 spec! Highlights include improved support for PHP, Project Kenai, Maven, C/C++ and more. Download now.
    1 week ago
  • POST-REDIRECT-GET and JSF 2.0


    SDN Program NewsAuthority Authority: 129
    This Tech Tip shows you how to implement the POST-REDIRECT-GET (PRG) pattern in JavaServer Faces 2.0 technology.
    2 weeks ago
  • Troubleshooting OpenSSO with Firefox Add-Ons: Part 5, Identity Provider Initiated Fedlet Single Sign-On


    SDN Program NewsAuthority Authority: 129
    Use the Firefox web browser to explore an OpenSSO identity provider initiated fedlet deployment. Read the article .
    2 weeks ago
  • Are Naming Conventions For JUnit 4+ Still Needed?


    Adam BienAuthority Authority: 120
    JUnit 3 used naming conventions for the identification of test methods. JUnit 4 uses annotations for that purpose, so that the prefix "test" is actually superfluous. It is not only superfluous, but also redundant. Instead writing something like: @Test public void test AverageTotalStartedThreadCount() {} you ...
    3 weeks ago
  • Raffle for Sun Web Server Book


    SDN Program NewsAuthority Authority: 129
    Write a review of Sun Java System Web Server to enter the raffle for a free copy of Sun Web Server: The Essentials Guide . Learn more .
    3 weeks ago
  • New Features in Sun GlassFish Communication Server 2.0


    System News for Sun Users - The BlogAuthority Authority: 137
    Available Now, Download for a Free Evaluation Sun GlassFish Communications Server is a Java EE technology-based converged application server combining enterprise service-oriented architecture (SOA) and Web services capabilities with Session Initiation Protocol (SIP) servlets. Version 2.0 is the latest version, ...
    3 weeks ago
  • ...and the Adoption Of EJB 3 / Java EE is:


    Adam BienAuthority Authority: 120
    far better than expected. The landscape: Java EE 5 is already supported by 14 (all major) application servers . Java EE 6 is already supported by Glassfish 3 and partially by JBoss 6.0 and Geronimo. The adoption is harder to estimate - but it seems like Java EE 5 (6 is too early) and EJB 3 are gaining ...
    3 weeks ago
  • Java EE 6 Kills The WAR-Bloat - The KiloByte Deployment


    Adam BienAuthority Authority: 120
    The beauty of Java EE is the lack of libraries and JARs which have to be deployed with your project. Everything you needs resides already on the server. This makes your WARs / EJB-JARS / EARs extremely lean. They only consists of your compiled classes - the actual business logic. There is no need to deploy anything, ...
    4 weeks ago
  • How To Pass Context Between Layers With ThreadLocal And EJB 3.(1)


    Adam BienAuthority Authority: 120
    TransactionSynchronizationRegistry is the way to go - you dont have to worry about the existence of multiple thread pools. However it only works inside a transaction. If you need to pass the context from the web layer (before a transaction is initiated), to the EJB container, where the transaction actually starts, ...
    4 weeks ago
  • Using Sun GlassFish Portfolio in the Cloud


    System News for Sun Users - The BlogAuthority Authority: 137
    Making the Most of the Portofolio in Amazon EC2 A Sun white paper sets out to explain how to maximize the Sun GlassFish Portfolio in the Amazon Elastic Compute Cloud (EC2) public cloud environment, with a focus on running applications using the Sun GlassFish Enterprise Server in the EC2. The Sun GlassFish Portfolio is ...
    4 weeks ago
  • Fire And Forget. Without JMS. With EJB 3.1 and 8KB WAR File


    Adam BienAuthority Authority: 120
    JMS was often used just for asynchronous execution of synchronous methods. Now you can achieve the same with a single annotation: @Asynchronous. The following EJB 3.1 stores a JPA entity in an asynchronous way: @Path("message") @Stateless public class MessagingService {     @PersistenceContext ...
    4 weeks ago
  • JBoss : Vision and Execution


    Rich Sharples' BlogAuthority Authority: 99
    Another nice score card from Gartner puts JBoss Enterprise App. Platform in the leader’s quadrant of the Gartner Magic Quadrant for Enterprise Application Servers. That’s the fourth year in a row, in case you were wondering. Unscientific as it is – comparing with last year I’d say the leaders are widening ...
    4 weeks ago
  • Java News Bites


    System News for Sun Users - The BlogAuthority Authority: 137
    Short Items of Interest for the Java Community Java Card 3 in Classic and Connected EditionsGlassFish Enterprise Server v2.1.1Latest Release: Java 6 Update 17J2SE 5.0 Reaches End of Service LifeList of Security Updates for Java SEInstalling Java 6 Update 17 in Windows XPEarly Access Build: Java SE 6 Update 18 ...
    4 weeks ago

Comments about Java EE

Personal attacks are NOT allowed
Please read our comment policy