Nicolas Zozol
Nicolas Zozol

Reputation: 7038

Split standalone.xml Configuration file

Is there a way to import another file into standalone.xml file, like for exemple import in Spring configuration files ?

Upvotes: 2

Views: 1112

Answers (1)

Ian Roberts
Ian Roberts

Reputation: 122364

If nothing else you can make use of external entities:

<!DOCTYPE domain [
  <!ENTITY section1 SYSTEM "section1.xml">
]>

and then use &section1; to include it at the appropriate place.

Upvotes: 3

Related Questions