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'.
Latest blogosphere posts tagged “java ee”
-
JBoss : Vision and Execution
Rich Sharples' Blog —
Authority: 91
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 ...14 hours ago -
Java News Bites
System News for Sun Users - The Blog —
Authority: 135
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 ...17 hours ago -
Using CDI and Dependency Injection for Java in a JSF 2.0 Application
SDN Program News —
Authority: 430
This Tech Tip illustrates the use of three powerful technologies in the Java EE 6 platform: Contexts and Dependency Injection, Dependency Injection For Java, and JavaServer Faces 2.0.3 days ago -
The GlassFish Advantage for Small Businesses
SDN Program News —
Authority: 430
This paper summarizes the benefits of GlassFish for small businesses with an overview of the products core features and a look at the experiences of three young companies: Webzzle, TravelMuse, and Clarity Accounting. (Login or registration required.)3 days ago -
Releases / Lifecycles and other Product Management Miscellany
Rich Sharples' Blog —
Authority: 91
This week we GA’d JBoss EAP 5.0 . As you’d expect from a new release there’s a long list of new features, capabilities and APIs and at some point I’ll talk about those some more. But the intention of this post is to give you an idea of some of the other less visible things that have happened with this ...3 days ago -
Sudden Death Of Enterprise Projects?
Adam Bien —
Authority: 120
It seems like the huge, data driven, projects are either somehow completed, or were replaced by standard solutions. Especially in tougher times, even big enterprises are interesting in saving money and build software in more pragmatic ways. These are actually good news. Often (almost always) you can implement the ...6 days ago -
How To Expose And Inject A POJO ...Into An EJB 3
Adam Bien —
Authority: 120
A POJO: public class CustomResource{ public final static String JNDI_NAME = "theName"; public void doSomething(){ System.out.println(" #Done ! "); } } can be easily exposed (=bound to JNDI) with a singleton bean: @Startup @Singleton public class ...1 week ago -
Update a Running JavaEE Application
JetBrains IntelliJ IDEA Blog —
Authority: 504
Next Maia EAP build includes new action that lets you quickly update a running JavaEE application after you changed its code. To invoke it, either press Ctrl+F10 , or click this button on the Run tool window bar: IntelliJ IDEA will allow you to select what to update in application: Settings are saved in a ...1 week ago -
Vote Until Nov. 2 for JCP Executive Committee Members
SDN Program News —
Authority: 430
Its time to vote for new Executive Committee (EC) members for both Standard Edition/Enterprise Edition and Micro Edition. Learn more on the JCP blog and the JCP elections page .1 week ago -
HA Without Clustering?
Adam Bien —
Authority: 120
These clustering features are available on most application servers: HTTPSession replication Stateful Session Bean replication Second Level Cache invalidation (e.g. JPA, JDO, previously CMP 2.0) Single cluster view of federated / clustered nodes (the administration server) You should not rely on the first ...1 week ago -
Is Glassfish v3 Ready For Production?
Adam Bien —
Authority: 120
Glassfish v3 is not released yet. The daily builds, however, are surprisingly stable and worth evaluation. Glassfish v3 is the reference (open source) implementation of Java EE 6 but comes also with some "interesting" extensions like OSGI support. I tested the following areas so far: JSF 2.0 (navigation, data ...2 weeks ago -
Loading Lazy (JPA) Relations - With (J)Xpath
Adam Bien —
Authority: 120
Lazy loaded relations often cannot be transferred and serialized to the client. Even in case the serialization were successful, they cannot be accessed from the client for sure. They have to be loaded before leaving the remote-boundary. Either the server has to know in advance which references are interesting to the ...2 weeks ago -
Open-Source Starter Kit: Federating to Salesforce CRM With OpenSSO
SDN Program News —
Authority: 430
This article explains how to simultaneously control access to in-house applications and those hosted by the SaaS provider Salesforce by using OpenSSO. (Login or registration required.)3 weeks ago -
Getting Started in the Cloud with the Sun GlassFish Portfolio
SDN Program News —
Authority: 430
This paper describes how to take advantage of the Sun Glassfish Portfolio in the Amazon Elastic Compute Cloud (EC2) public cloud environment using Sun GlassFish Enterprise Server. (Login or registration required.)3 weeks ago -
How To Pass Context In Standard Way - Without ThreadLocal
Adam Bien —
Authority: 120
javax.transaction.TransactionSynchronizationRegistry holds a Map-like structure and can be used to pass state inside a transaction. It works perfectly since the old J2EE 1.4 days and is thread-independent. Because an Interceptor is executed in the same transaction as the ServiceFacade , the state can be even ...3 weeks ago -
Guide to Sun Java Communications Suite Messaging and Collaboration Platform
SDN Program News —
Authority: 430
Register to download this free guide to Suns communications platform. Read about enhanced email indexing and search; interoperability with Macs iCal, Mozillas Thunderbird/Lightning calendars, and Microsoft Outlook; and native calendar synchronization with mobile devices that support CalDAV, such as Apples iPhone.3 weeks ago -
RESTFul Calculator With JavaScript And ...EJB 3.1
Adam Bien —
Authority: 120
You only have to annotate a @Stateless EJB 3.1 with the JAX-RS annotation to expose it via REST: @Stateless @Path("calculator/") public class Calculator { private static final String ENGINE_NAME = "JavaScript"; //AppleScriptEngine private ScriptEngine scriptEngine = null; ...4 weeks ago