Examples of AssetsBundle


Examples of io.dropwizard.assets.AssetsBundle

    @Override
    public void initialize(Bootstrap<CONF> bootstrap) {
        // Static stuff from under /html (except for root  level things
        // like /index.html that need special handling)
        bootstrap.addBundle(new AssetsBundle("/html"));
    }
View Full Code Here

Examples of io.dropwizard.assets.AssetsBundle

      public DataSourceFactory getDataSourceFactory(CommaFeedConfiguration configuration) {
        return configuration.getDatabase();
      }
    });

    bootstrap.addBundle(new AssetsBundle("/assets/", "/", "index.html"));
  }
View Full Code Here

Examples of io.dropwizard.assets.AssetsBundle

        return "jsonblob";
    }

    @Override
    public void initialize(final Bootstrap<JsonBlobConfiguration> bootstrap) {
        bootstrap.addBundle(new AssetsBundle());

        bootstrap.addBundle(new ConfiguredHandlebarsViewBundle<JsonBlobConfiguration>() {
            @Override
            public Handlebars getInstance(JsonBlobConfiguration configuration) {
                log.info("Using Handlebars configuration of {}", configuration.getHandlebarsConfig().getClass().getCanonicalName());
View Full Code Here

Examples of io.dropwizard.assets.AssetsBundle

      }
    });
   
    bootstrap.addBundle(hibernateBundle);
   
    bootstrap.addBundle(new AssetsBundle("/assets/app.js", "/app.js", null, "app"));
    bootstrap.addBundle(new AssetsBundle("/assets/stylesheets", "/stylesheets", null, "css"));
        bootstrap.addBundle(new AssetsBundle("/assets/directives", "/directives", null, "directives"));
        bootstrap.addBundle(new AssetsBundle("/assets/controllers", "/controllers", null, "controllers"));
        bootstrap.addBundle(new AssetsBundle("/assets/services", "/services", null, "services"));
        bootstrap.addBundle(new AssetsBundle("/assets/vendor", "/vendor", null, "vendor"));
        bootstrap.addBundle(new AssetsBundle("/assets/views", "/views", null, "views"));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.