From: <glassfish_at_javadesktop.org>
Date: Tue, 20 Jul 2010 17:19:45 PDT
I have this code that has a injected element that is always null. Is this a bug?
I'm using the final version of glassfish 3.0.1
Clients.java
@Path("clients")
public class Clients {
@Inject private Mail mail;
@GET
@Produces("application/xml")
public String getXml() {
return "hello world";
}