0
駱駝,什麼是做在駱駝「bean」和「ref bean」之間有什麼不同?
<route>
<from uri="direct:start"/>
<to uri="bean:helloBean" />
</route>
和
<route>
<from uri="direct:start"/>
<bean ref="helloBean" method="hello"/>
</route>
是結合相同的不同?我應該什麼時候使用它們?