Package org.impalaframework.spring.config

Examples of org.impalaframework.spring.config.ExternalDynamicPropertySource.afterPropertiesSet()


    public void testExternalProperties() throws Exception, InterruptedException {
        ExternalDynamicPropertySource source = new ExternalDynamicPropertySource();
        source.setFileName("reload/reloadable.properties");
        source.setReloadInitialDelay(1);
        source.setReloadInterval(3);
        source.afterPropertiesSet();
       
        while (true) {
            System.out.println(source.getValue("property1"));
            Thread.sleep(1000);
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.