Search in sources :

Example 1 with ProjectRepository

use of io.crnk.example.dropwizard.simple.domain.repository.ProjectRepository in project crnk-framework by crnk-project.

the class DropwizardService method run.

@Override
public void run(DropwizardConfiguration dropwizardConfiguration, Environment environment) throws Exception {
    // here we make use of a module as example instead of using service discovery (CDI, Spring, etc.)
    // tag::docs[]
    SimpleModule module = new SimpleModule("example");
    module.addRepository(new ProjectRepository());
    CrnkFeature crnkFeature = new CrnkFeature();
    crnkFeature.addModule(module);
    environment.jersey().register(crnkFeature);
// end::docs[]
}
Also used : ProjectRepository(io.crnk.example.dropwizard.simple.domain.repository.ProjectRepository) CrnkFeature(io.crnk.rs.CrnkFeature) SimpleModule(io.crnk.core.module.SimpleModule)

Aggregations

SimpleModule (io.crnk.core.module.SimpleModule)1 ProjectRepository (io.crnk.example.dropwizard.simple.domain.repository.ProjectRepository)1 CrnkFeature (io.crnk.rs.CrnkFeature)1