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

com.github.kondaurovdev.xml.SimpleXmlLoader.scala Maven / Gradle / Ivy

package com.github.kondaurovdev.xml

import javax.xml.parsers.SAXParser

import scala.xml.Elem
import scala.xml.factory.XMLLoader

object SimpleXmlLoader extends XMLLoader[Elem] {

  override def parser: SAXParser = {
    val f = javax.xml.parsers.SAXParserFactory.newInstance()
    f.setValidating(false)
    f.setNamespaceAware(false)
    f.setFeature("http://apache.org/xml/features/nonvalidating/load-external-dtd", false)
    f.newSAXParser()
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy