将EJB注入RESTeasy Web服务

时间:2015-04-21 18:11:11

标签: java resteasy wildfly

我目前在将@Stateless - EJB注入我的RESTeasy实施的Web服务时出现问题:

资源:

import javax.ejb.EJB;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;

@Path("/rest/events")
public class EventResource
{
@EJB
EventService eventService;

@GET
@Produces(MediaType.APPLICATION_JSON)
public Response getAllEvents()
{
    System.out.println(eventService);
    return Response.ok().build();
}

@GET
@Produces(MediaType.APPLICATION_JSON)
@Path("{id}")
public Response getEventById(@PathParam("id") String id)
{
    System.out.println(id);
    int intId = Integer.parseInt(id);
    Event e = eventService.getById(intId);
    System.out.println(e);
    return Response.ok(e).build();
}

服务:

@Stateless
public class EventService
{
...
}

应用:

public class SalomeApplication extends Application
{
    private Set<Object> singletons = new HashSet();
    private Set<Class<?>> empty = new HashSet();

    public SalomeApplication()
    {
        this.singletons.add(new EventResource());
    }

    public Set<Class<?>> getClasses()
    {
        return this.empty;
    }

    public Set<Object> getSingletons()
    {
        return this.singletons;
    }
}

我正在使用org.jboss.resteasy:resteasy-jaxrs:3.0.11.FinalWildfly和应用服务器。我也尝试使用InjectRequestScoped代替 - 但也无效。

1 个答案:

答案 0 :(得分:3)

EventResource的实例是由您创建的,当您没有设置EventService引用时,它必须是null。 您还将此实例注册为Singleton,因此您将始终获得此实例。

如果将EventResource.class添加到类集中,RESTeasy将负责创建实例和管理依赖项。如果您更喜欢使用单身人士,则应使用自动扫描功能。在Wildfly上,默认情况下已启用此功能,因此您只需删除SalomeApplication的内容。