-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathExampleModule.java
63 lines (51 loc) · 1.69 KB
/
ExampleModule.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package com.example.app;
import javax.inject.Singleton;
import org.gwizard.hibernate.DatabaseConfig;
import org.gwizard.logging.LoggingConfig;
import org.gwizard.swagger.SwaggerConfig;
import org.gwizard.web.WebConfig;
import com.example.app.resource.FunResource;
import com.example.app.resource.ThingsResource;
import com.example.app.services.ExampleService;
import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.google.inject.AbstractModule;
import com.google.inject.Provides;
import io.dropwizard.jackson.Jackson;
/**
* <p>Among the duties of your application module(s), you must explicitly bind every JAXRS resource class.
* Consider using Reflections to do this automatically.</p>
*
* <p>We must provide bindings for the LoggingConfig, WebConfig, and DatabaseConfig to use the
* logging, rest, and hibernate modules.</p>
*/
public class ExampleModule extends AbstractModule {
@Override
protected void configure() {
bind(FunResource.class);
bind(ThingsResource.class);
bind(ExampleService.class).asEagerSingleton();
}
/** This objectmapper will get used for RESTEasy's JSON responses */
@Provides
@Singleton
public ObjectMapper objectMapper() {
return Jackson.newObjectMapper().disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES);
}
@Provides
public LoggingConfig loggingConfig(ExampleConfig cfg) {
return cfg.getLogging();
}
@Provides
public WebConfig webConfig(ExampleConfig cfg) {
return cfg.getWeb();
}
@Provides
public DatabaseConfig databaseConfig(ExampleConfig cfg) {
return cfg.getDatabase();
}
@Provides
public SwaggerConfig swaggerConfig(ExampleConfig cfg) {
return cfg.getSwagger();
}
}