문제

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

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top