Here is my bean that is trying to inject a singleton bean InformationService :

@Path("/information/{name}")
@Stateless (name="InformationResource")
public class InformationResource {

    @EJB
    private InformationService appService;

    @GET
    @Produces(MediaType.APPLICATION_XML)
    public Information getInfo(@PathParam("name") String name){
        return appService.getMap().get(name);
    }

    @PUT
    @POST
    @Consumes(MediaType.APPLICATION_XML)
    public Information putInfo(@PathParam("name") String name, Information info){
        return appService.getMap().put(name,info);
    }

    @DELETE
    public void deleteInfo(@PathParam("name") String name){
        appService.getMap().remove(name);
    }
}

This is the InformationService class

@Singleton
public class InformationService {

    private Map<String,Information> map;

    @PostConstruct
    public void init(){
        map = new HashMap<String,Information>();

        map.put("daud", new Information("B.Tech","Lucknow"));
        map.put("anuragh", new Information("M.Sc","Delhi"));
    }

    public Map<String,Information> getMap(){
        return map;
    }

}

Its part of a very simple JAX-RS implementation and I am deploying as war in JBoss 6.1 Final. The problem is that InformationService throwing a NullPointerException when I make the proper get request. If I initialize appService explicitly, everything works fine. Why is @EJB annotation not working ?

link|improve this question

feedback

1 Answer

Are you using Jersey as REST implementation? If so, EJB injection is not supported out of the box.

This link provides more information on this and also a solution.

link|improve this answer
I am using JBoss' implementation of JAX-RS (not RestEasy) – Daud Feb 10 at 5:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.