Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm wondering why ejb injection into JAX-RS resource (RestEasy on JBoss7) is not working. EJBs are not part of war but its own EJB jar but I supposed this should not be the problem. I'm forced to do the ctx.lookups "workaround", which are not pretty. Am I missing something or it is really not supported to inject EJB like that? Example below does not work with JBoss, but works with Glassfish (sadly I gotta run my application on JBoss)

Path("x")
@RequestScoped
public class UserResource {

    @Inject // CDI not working too
    private Service service1;
    @EJB
    private Service service2;

    private Service service3;


    @GET
    @Path("y")
    public Response authenticate(@Context HttpHeaders headers) {
         System.out.println("null == " + service1);
         System.out.println("null == " + service2);

         service3 = annoyingLookup(Service.class);
         System.out.println("null != " + service3);
    }

    private <T> T annoyingLookup(Class<T> clazz) {
       ...
       ctx.lookup("java:app/module/" + classzz.getSimpleName());
    }
share|improve this question
Are those EJB's (Service) no-interface views, local interfaces or remote interfaces? – Piotr Nowicki Nov 27 '11 at 20:47
no-interface views (@LocalBean), but it does not work with @Local neither – d1x Dec 11 '11 at 23:43
Are the war and ejb-jar a part of one EAR? – Piotr Nowicki Dec 11 '11 at 23:55
yep they are. I didn't have this issue with GF3.1 AS. But with Jboss7, it is not working. Same as scheduled service (annotated with @Schedule). I'm using full profile (not just web one) – d1x Dec 16 '11 at 2:45
I'm having the same issue. Any new information on this? – CrazyPenguin Jan 4 '12 at 20:42

2 Answers

up vote 1 down vote accepted

The following is working for me.

RESTEasy root context:

package com.foo.rest;

import javax.ws.rs.ApplicationPath;
import javax.ws.rs.core.Application;

@ApplicationPath("/rest")
public class RestServiceLocator extends Application {

}

STLS bean:

package com.foo.rest;

import javax.ejb.EJB;
import javax.ejb.Local;
import javax.ejb.LocalBean;
import javax.ejb.Stateless;
import javax.ws.rs.Path;
import javax.ws.rs.core.Response;
import javax.ws.rs.GET;
import javax.ws.rs.Produces;

@Path("/foo")
@Stateless
@LocalBean //Note: @Local(FooResource.class) does not let RESTEasy to load EJB!
public class FooResourceBean implements FooResource {

    @EJB 
    private FooResourceBean h; // Works!

    /**
     * http://localhost:8080/webapp/rest/foo/baa
     *  
     */
    @GET
    @Path("/baa")
    @Produces("application/json")
    @Override
    public Response baa() {

        String json = "{ \"baa\" : [ " +
                      "             { \"icon\":\"source1.png\" , \"description\":\"Source 1\" }, " +
                      "             { \"icon\":\"source2.png\" , \"description\":\"Source 2\" }, " +
                      "             { \"icon\":\"source3.png\" , \"description\":\"Source 3\" } " +
                      "          ]}\";";

        return Response.ok(json).build();
    }

}
share|improve this answer
Thanks for answer penguin. Well your answer looks same as my example. Except that you are using Stateless and LocalBean annotations. Im not sure if this is right way to solve this. I don't want my resource to be EJB – d1x Jan 7 '12 at 19:34
It's not, I absolutely agree with you. There are issues in RESTEasy on JBoss 7 (all was working just fine on JBoss 6) and I've just tried to provide a possible solution. I would rather use CDI myself but it is not working. – CrazyPenguin Jan 9 '12 at 16:36
Thanks again:-) Hope JBoss guys will make CDI work asap. – d1x Jan 10 '12 at 0:10
Is this problem has been resolved? Being injected with @EJB only? – Jin Kwon Jun 8 '12 at 9:26
Just a question for clarification - This works for you on JBoss71x within a plain ear/ejb-module structure? Could you maybe provide a simple working example? The whole Jax-RS (@Application, @Path) stuff seems to be ignored by my JBoss 7.1.1 – avithan Apr 13 at 10:31

Just add

@Stateless

TO the JAX-RS resources

@Path("/")
@Stateless
public class MainMain
{    

    @EJB(mappedName = "java:global/optima-wsi/OptimaConfigurator!com.sistemaits.optima.configurator.IOptimaConfigurator")
    IOptimaConfigurator configurator;

    ---
}
share|improve this answer
please see comments on previous post from CrazyPenguin about adding Stateless annotation to the JAX-RS resource:) – d1x Mar 29 '12 at 9:30
That mappedName is horrible looking. Why did you felt the compulsion to use it? – Mike Braun Oct 21 '12 at 15:46
@Mike It dependes on where the code came from (an example on all the possibilities to do ejb injection), it's just an example, not a best practice :) – Tommaso Oct 22 '12 at 7:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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