├── .gitignore ├── README.md ├── pom.xml └── src ├── main └── java │ └── com │ └── github │ └── nhuray │ └── dropwizard │ └── spring │ ├── SpringBundle.java │ ├── SpringContextManaged.java │ └── config │ ├── ConfigurationPlaceholderConfigurer.java │ └── JsonPropertiesPersister.java └── test ├── java ├── com │ └── github │ │ └── nhuray │ │ └── dropwizard │ │ └── spring │ │ ├── SpringBundleTest.java │ │ └── config │ │ ├── ConfigurationPlaceholderConfigurerTest.java │ │ ├── ConfigurationTestBean.java │ │ └── JsonPropertiesPersisterTest.java └── hello │ ├── HelloApp.java │ ├── config │ ├── HelloAppConfiguration.java │ └── HelloConfiguration.java │ ├── health │ └── HelloHealthCheck.java │ ├── resources │ └── HelloResource.java │ ├── server_lifecycle_listeners │ └── HelloServerLifecycleListener.java │ ├── service │ └── HelloService.java │ └── tasks │ └── HelloTask.java └── resources ├── banner.txt ├── config └── test.json └── hello └── hello.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhuray/dropwizard-spring/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhuray/dropwizard-spring/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhuray/dropwizard-spring/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/github/nhuray/dropwizard/spring/SpringBundle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhuray/dropwizard-spring/HEAD/src/main/java/com/github/nhuray/dropwizard/spring/SpringBundle.java -------------------------------------------------------------------------------- /src/main/java/com/github/nhuray/dropwizard/spring/SpringContextManaged.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhuray/dropwizard-spring/HEAD/src/main/java/com/github/nhuray/dropwizard/spring/SpringContextManaged.java -------------------------------------------------------------------------------- /src/main/java/com/github/nhuray/dropwizard/spring/config/ConfigurationPlaceholderConfigurer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhuray/dropwizard-spring/HEAD/src/main/java/com/github/nhuray/dropwizard/spring/config/ConfigurationPlaceholderConfigurer.java -------------------------------------------------------------------------------- /src/main/java/com/github/nhuray/dropwizard/spring/config/JsonPropertiesPersister.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhuray/dropwizard-spring/HEAD/src/main/java/com/github/nhuray/dropwizard/spring/config/JsonPropertiesPersister.java -------------------------------------------------------------------------------- /src/test/java/com/github/nhuray/dropwizard/spring/SpringBundleTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhuray/dropwizard-spring/HEAD/src/test/java/com/github/nhuray/dropwizard/spring/SpringBundleTest.java -------------------------------------------------------------------------------- /src/test/java/com/github/nhuray/dropwizard/spring/config/ConfigurationPlaceholderConfigurerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhuray/dropwizard-spring/HEAD/src/test/java/com/github/nhuray/dropwizard/spring/config/ConfigurationPlaceholderConfigurerTest.java -------------------------------------------------------------------------------- /src/test/java/com/github/nhuray/dropwizard/spring/config/ConfigurationTestBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhuray/dropwizard-spring/HEAD/src/test/java/com/github/nhuray/dropwizard/spring/config/ConfigurationTestBean.java -------------------------------------------------------------------------------- /src/test/java/com/github/nhuray/dropwizard/spring/config/JsonPropertiesPersisterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhuray/dropwizard-spring/HEAD/src/test/java/com/github/nhuray/dropwizard/spring/config/JsonPropertiesPersisterTest.java -------------------------------------------------------------------------------- /src/test/java/hello/HelloApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhuray/dropwizard-spring/HEAD/src/test/java/hello/HelloApp.java -------------------------------------------------------------------------------- /src/test/java/hello/config/HelloAppConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhuray/dropwizard-spring/HEAD/src/test/java/hello/config/HelloAppConfiguration.java -------------------------------------------------------------------------------- /src/test/java/hello/config/HelloConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhuray/dropwizard-spring/HEAD/src/test/java/hello/config/HelloConfiguration.java -------------------------------------------------------------------------------- /src/test/java/hello/health/HelloHealthCheck.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhuray/dropwizard-spring/HEAD/src/test/java/hello/health/HelloHealthCheck.java -------------------------------------------------------------------------------- /src/test/java/hello/resources/HelloResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhuray/dropwizard-spring/HEAD/src/test/java/hello/resources/HelloResource.java -------------------------------------------------------------------------------- /src/test/java/hello/server_lifecycle_listeners/HelloServerLifecycleListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhuray/dropwizard-spring/HEAD/src/test/java/hello/server_lifecycle_listeners/HelloServerLifecycleListener.java -------------------------------------------------------------------------------- /src/test/java/hello/service/HelloService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhuray/dropwizard-spring/HEAD/src/test/java/hello/service/HelloService.java -------------------------------------------------------------------------------- /src/test/java/hello/tasks/HelloTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhuray/dropwizard-spring/HEAD/src/test/java/hello/tasks/HelloTask.java -------------------------------------------------------------------------------- /src/test/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhuray/dropwizard-spring/HEAD/src/test/resources/banner.txt -------------------------------------------------------------------------------- /src/test/resources/config/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhuray/dropwizard-spring/HEAD/src/test/resources/config/test.json -------------------------------------------------------------------------------- /src/test/resources/hello/hello.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhuray/dropwizard-spring/HEAD/src/test/resources/hello/hello.yml --------------------------------------------------------------------------------