Configure CDI integration with other services

WARNING - TOPIC NOT WRITTEN - TOPIC ID: 3017

This topic has not yet been written. The content below is from the topic description.
40.4. Configuration with different distributions Provided you have an existing RESTEasy application, all that needs to be done is to add the resteasy-cdi jar into your project's WEB-INF/lib directory. When using maven, this can be achieve by defining the following dependency. org.jboss.resteasy resteasy-cdi ${project.version} Furthermore, when running a pre-Servlet 3 container, the following context parameter needs to be specified in web.xml. (This is done automatically via web-fragment in a Servlet 3 environment) resteasy.injector.factory org.jboss.resteasy.cdi.CdiInjectorFactory When deploying an application to a Servlet container that does not support CDI out of the box (Tomcat, Jetty, Google App Engine), a CDI implementation needs to be added first. Weld-servlet module can be used for this purpose.