Skip to content

Instantly share code, notes, and snippets.

@karol-lotkowski
Last active October 13, 2015 22:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karol-lotkowski/b2cea708cd07db838a64 to your computer and use it in GitHub Desktop.
Save karol-lotkowski/b2cea708cd07db838a64 to your computer and use it in GitHub Desktop.
Dropwizard application example without any resource.
package com.karollotkowski.cleancode;
import io.dropwizard.Application;
import io.dropwizard.setup.Environment;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class CleanCodeApplication extends Application<AppConfiguration> {
public static final Logger LOGGER = LoggerFactory.getLogger(CleanCodeApplication.class);
public static void main(final String[] args) throws Exception {
new CleanCodeApplication().run(args);
}
@Override
public void run(final AppConfiguration configuration, final Environment environment)
throws Exception {
LOGGER.info("Application name: {}", configuration.getAppName());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment