Package com.alibaba.citrus.service.velocity.impl

Examples of com.alibaba.citrus.service.velocity.impl.Slf4jLogChute


        config.setProperty("path", "/templates");
        config.setProperty("resource.loader", "");

        rsvc.setConfiguration(config);
        rsvc.setProperty(RUNTIME_LOG_LOGSYSTEM, new Slf4jLogChute(log));
        rsvc.setApplicationAttribute(SpringResourceLoaderAdapter.SPRING_RESOURCE_LOADER_KEY, factory);

        rsvc.init();

        velocityLoader = new SpringResourceLoaderAdapter();
View Full Code Here


        TestEnvStatic.init();
    }

    @Before
    public void init() {
        logChute = new Slf4jLogChute(log);
    }
View Full Code Here

    }

    @Test
    public void create() {
        try {
            new Slf4jLogChute(null);
            fail();
        } catch (IllegalArgumentException e) {
            assertThat(e, exception("log"));
        }
    }
View Full Code Here

        config.setProperty("resource.loader", "");
        config.setProperty(PreloadedResourceLoader.PRELOADED_RESOURCES_KEY, preloadingResources());

        rsvc.setConfiguration(config);
        rsvc.setProperty(RUNTIME_LOG_LOGSYSTEM, new Slf4jLogChute(log));

        rsvc.init();

        velocityLoader = new PreloadedResourceLoader();
        velocityLoader.commonInit(rsvc, config);
View Full Code Here

TOP

Related Classes of com.alibaba.citrus.service.velocity.impl.Slf4jLogChute

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.