Package com.alibaba.citrus.service.resource.impl

Examples of com.alibaba.citrus.service.resource.impl.ResourceLoadingServiceImpl


    @Test
    public void notInited() {
        // ��service��ʼ�������У�ij��loader/filterͨ��spring resource loader��ӵݹ���ø�serviceʱ������
        try {
            new ResourceLoadingServiceImpl().getResource("test");
            fail();
        } catch (IllegalStateException e) {
            assertThat(e, exception("Bean instance of " + ResourceLoadingService.class.getName()
                    + " has not been initialized yet"));
        }
View Full Code Here


    @Test
    public void notInited() {
        // 在service初始化过程中,某个loader/filter通过spring resource loader间接递归调用该service时,报错。
        try {
            new ResourceLoadingServiceImpl().getResource("test");
            fail();
        } catch (IllegalStateException e) {
            assertThat(e, exception("Bean instance of " + ResourceLoadingService.class.getName()
                                    + " has not been initialized yet"));
        }
View Full Code Here

    @Test
    public void notInited() {
        // 在service初始化过程中,某个loader/filter通过spring resource loader间接递归调用该service时,报错。
        try {
            new ResourceLoadingServiceImpl().getResource("test");
            fail();
        } catch (IllegalStateException e) {
            assertThat(e, exception("Bean instance of " + ResourceLoadingService.class.getName()
                                    + " has not been initialized yet"));
        }
View Full Code Here

TOP

Related Classes of com.alibaba.citrus.service.resource.impl.ResourceLoadingServiceImpl

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.