0
votes
2answers
47 views

RestEasy / CDI on TomEE 1.5.2

I'm trying to get a ResteasyApplication running. My major problem is to implementi CDI which should be not too hard^^ ...so here is my prob. Im using @Named on my Service class and @Inject at my ...
2
votes
1answer
75 views

Using Weld CDI instead of OpenWebBeans in TomEE

I'd like to run a WebApp on Apache TomEE using Mojarra and Weld. I put "javax.faces-2.1.21.jar" and "weld-servlet.jar" in my /WEB-INF/lib directory. I also added an empty "beans.xml" to my WEB-INF ...
0
votes
1answer
103 views

How to access CDI managed bean from JAX-RS MessageBodyWriter?

I'm struggling with accessing CDI managed beans from a JAX-RS message body handler in TomEE. My handler class (implements MessageBodyWriter<Object>, MessageBodyReader<Object>) is ...
0
votes
1answer
57 views

TomEE: CDI Extension - provider not found error

I have running TomEE+ 1.5.1 and trying to create an CDI extension. I created a class implementing javax.enterprise.inject.spi.Extension and put that class name into the file ...
0
votes
2answers
208 views

Example for CDI-SessionScoped LogIn with TomEE

i'm currently fighting with TomEE, JSF and CDI (i think). Is there any example out there which has "@javax.enterprise.context.SessionScoped" annotation using TomEE 1.5.1 (or current snapshot)? I ...
2
votes
2answers
820 views

Where to use EJB 3.1 and CDI?

I am making a Java EE based product in which I'm using GlassFish 3 and EJB 3.1. My application has session beans, a scheduler and uses web services. I recently came to know about Apache TomEE, which ...
2
votes
1answer
328 views

TomEE 4 JPA issue

I am trying out simple JPA example on TomEE 4.0.0 and I am not able to get PersistenceContextType.EXTENDED working If I make my session bean Stateless and leave PersistenceContextType then it works ...