Dropwizard is a Java framework for developing ops-friendly, high-performance, RESTful web applications.
Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
io.dropwizard.core.Application
Minimal Dropwizard application setup.
import io.dropwizard.core.Application;
import io.dropwizard.core.setup.Bootstrap;
import io.dropwizard.core.setup.Environment;
public class MyApp extends Application<MyConfiguration> {
public static void main(String[] args) throws Exception {
new MyApp().run(args);
}
@Override
public void initialize(Bootstrap<MyConfiguration> bootstrap) {}
@Override
public void run(MyConfiguration config, Environment env) {}
}
Upgrade
Version history
Breaking-change detection hasn't run for this library yet.
Audit
Security & dependencies
CVE tracking and dependency tree are planned for a later release.