1

私はお尻を持ってwireup-A.xmlいます

<bean id="xml-saver" class="com.org.blah.XMLSaver"/>

そして別wireup-B.xml

<import resource="classpath:com/A/wireup-A.xml" />

    <bean id="save-xml" class="com.org.post.SaveXML">
        <constructor-arg ref="xml-saver"/>
    </bean>

質問

ref="xml-saver"にある Bean をどのように参照できimport resourceますか?
今こう言っているcan not resolve bean xml-saver

4

1 に答える 1

0

正しいパスを参照すると、すべてが良かった

<import resource="classpath:com/A/blah/wireup-A.xml" />
于 2012-07-16T21:57:04.450 に答える