Package org.mvnsearch.wx.rewrite

Examples of org.mvnsearch.wx.rewrite.Conf


    public void init(ServletConfig config) throws ServletException {
        this.token = config.getInitParameter("token");
        this.passCode = config.getInitParameter("passCode");
        String confFile = config.getInitParameter("confFile");
        try {
            Conf conf = new Conf(config.getServletContext(), confFile);
            this.urlRewriter = new UrlRewriter(conf);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
View Full Code Here


     * test to construct conf
     *
     * @throws Exception exception
     */
    public void testConstructConf() throws Exception {
        Conf conf = new Conf(null, "classpath:weixin-router.xml");
        for (Rule rule : conf.getRules()) {
            System.out.println(rule);
        }
    }
View Full Code Here

TOP

Related Classes of org.mvnsearch.wx.rewrite.Conf

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.