Package com.google.sitebricks.slf4j

Examples of com.google.sitebricks.slf4j.Slf4jModule


     *
     * @see com.google.sitebricks.SitebricksModule#configureSitebricks()
     */
    @Override
    protected void configureSitebricks() {
      install(new Slf4jModule());
        at("/").show(Home.class).in(RequestScoped.class);
        at("/login").show(Login.class).in(RequestScoped.class);
        at("/adm").show(Dashboard.class).in(RequestScoped.class);
        at("/adm/entries").show(Entries.class).in(RequestScoped.class);
        at("/adm/entry/add").show(AddEntry.class).in(RequestScoped.class);
View Full Code Here

TOP

Related Classes of com.google.sitebricks.slf4j.Slf4jModule

Copyright © 2018 www.massapicom. 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.