Emmachen / SapUi5Test

1 stars 1 forks source link

What is a "Bean"? #36

Open ghost opened 8 years ago

ghost commented 8 years ago

A bean is an object that is instantiated, assembled, and managed by a Spring container. They are created with configuration metadata that you supply to the container. Let's look at the OrderService bean once again:

<bean class="de.hybris.platform.order.OrderService">
<property name="stockService">
<bean class="de.hybris.platform.stock.StockService"/>
</property>
</bean>