Question on XML parsing.
Posted
by fastcodejava
on Stack Overflow
See other posts from Stack Overflow
or by fastcodejava
Published on 2010-04-12T23:47:51Z
Indexed on
2010/04/12
23:53 UTC
Read the original article
Hit count: 411
When I am parsing an xml string as below I get strange attributes like "autowire" with value "default". Is there anyway I can get the attribute that are explicitly defined?
<bean id="aaaa" class="com.test.Service">
<property name="cccc" ref="cccc"/>
</bean>
© Stack Overflow or respective owner