본문 바로가기

명사 美 비격식 (무리 중에서) 아주 뛰어난[눈에 띄는] 사람[것]

이론

XML 네임스페이스

XML 네임스페이스

데이터를 구분하기 위한 방법
동일한 이름을 갖는 요소/속성을 서로 다은 이름으로 구분할 수 있다.

<!-- 문서 1 -->
<book>
  <title>XML in a Nutshell</title>
  <author>O'Reilly</author>
</book>

<!-- 문서 2 -->
<book>
  <title>XML in a Nutshell</title>
  <author>Pearson</author>
</book>
<ns1:book xmlns:ns1="http://example.com/ns1">
  <ns1:title>XML in a Nutshell</ns1:title>
  <ns1:author>O'Reilly</ns1:author>
</ns1:book>

<ns2:book xmlns:ns2="http://example.com/ns2">
  <ns2:title>XML in a Nutshell</ns2:title>
  <ns2:author>Pearson</ns2:author>
</ns2:book>

'이론' 카테고리의 다른 글

멀티 프로세스와 멀티 스레드  (0) 2023.06.08
RESTful 방식이란?  (0) 2023.05.10
provisioning이란?  (0) 2023.05.10
AspectJ란?  (0) 2023.05.10
shadowing 와 scope 스코프  (0) 2023.05.10