资 源 简 介
# Migrated to GitHub #
**Guice-Cxf** has migrated to a new location at [GitHub](https://github.com/jakub-bochenski/guice-cxf/). Please use it for all new issue reports, etc.
---
A simple EDSL (Embedded Domain-Specific Language) for configuring the Apache CXF implementation of JSR-311.
Provides a configured JAXRSServerFactoryBean instance that you can use to start a Server in any particular way you need.
Resources and providers will be created with Guice, then they will have the normal CXF/JAX-RS injections performed on them.
Example:
```
protected void configure() {
serve().atAddress("/rest");
publish(LibraryResource.class);
readAndWriteBody(JAXBElementProvider.class);
readAndWriteBody(JSONProvider.class);
mapExceptions(ApplicationExceptionMapper.class);
}
```
guice-cxf supports injecting Jax-Rs resource with dependencies bound in Guice.
```
@Path("foo");
public class LibraryResource {
@Inject private BookService service;
@GET
public Boo