Package org.springframework.beans.factory.xml

Examples of org.springframework.beans.factory.xml.DocumentDefaultsDefinition


    public static class JTesterxReaderEventListener extends EmptyReaderEventListener {

        @Override
        public void defaultsRegistered(DefaultsDefinition defaultsDefinition) {
            if (defaultsDefinition instanceof DocumentDefaultsDefinition) {
                DocumentDefaultsDefinition docDefault = (DocumentDefaultsDefinition) defaultsDefinition;
                docDefault.setLazyInit("true");
            }
        }
View Full Code Here

TOP

Related Classes of org.springframework.beans.factory.xml.DocumentDefaultsDefinition

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.