Package org.douyu.core

Examples of org.douyu.core.Config


      + "org.douyu.plugins.velocity.VelocityViewManagerProvider=vm;"
      + "org.douyu.plugins.freemarker.FreeMarkerViewManagerProvider=ftl;";

  @Override
  public void init(FilterConfig filterConfig) throws ServletException {
    config = new Config();
    servletContext = filterConfig.getServletContext();
    config.appName = servletContext.getContextPath();
    config.javacEncoding = filterConfig.getInitParameter("javacEncoding");
    config.srcDir = filterConfig.getInitParameter("srcDir");
    config.classesDir = filterConfig.getInitParameter("classesDir");
View Full Code Here

TOP

Related Classes of org.douyu.core.Config

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.