All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lastaflute.di.util.LdiSAXParserFactoryUtil Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
/*
 * Copyright 2015-2021 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
 * either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 */
package org.lastaflute.di.util;

import javax.xml.parsers.ParserConfigurationException;
import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;

import org.lastaflute.di.exception.ParserConfigurationRuntimeException;
import org.lastaflute.di.exception.SAXRuntimeException;
import org.xml.sax.SAXException;

/**
 * @author modified by jflute (originated in Seasar)
 */
public class LdiSAXParserFactoryUtil {

    protected LdiSAXParserFactoryUtil() {
    }

    public static SAXParserFactory newInstance() {
        return SAXParserFactory.newInstance();
    }

    public static SAXParser newSAXParser() {
        return newSAXParser(newInstance());
    }

    public static SAXParser newSAXParser(SAXParserFactory factory) {
        try {
            return factory.newSAXParser();
        } catch (ParserConfigurationException e) {
            throw new ParserConfigurationRuntimeException(e);
        } catch (SAXException e) {
            throw new SAXRuntimeException(e);
        }
    }

    // to avoid warning of JDK-internal access at Java11 by jflute (2019/04/21)
    // Lasta Di does not need xinclude because of Di xml redefiner
    //public static boolean setXIncludeAware(final SAXParserFactory spf, final boolean state) {
    //    try {
    //        final Method method = spf.getClass().getMethod("setXIncludeAware", new Class[] { boolean.class });
    //        method.invoke(spf, new Object[] { Boolean.valueOf(state) });
    //        return true;
    //    } catch (final Exception ignore) {
    //        return false;
    //    }
    //}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy