All Downloads are FREE. Search and download functionalities are using the official Maven repository.

urce.firefly-example.5.0.0-dev5.source-code.hello-ioc.xml Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.fireflysource.com/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.fireflysource.com/beans http://www.fireflysource.com/beans.xsd">

    <component-scan base-package="com.firefly.example.ioc"/>

    <bean id="helloService" class="com.firefly.example.ioc.HelloServiceImpl">
        <property name="message" value="Hello IOC"/>
    </bean>

    <bean id="barService" class="com.firefly.example.ioc.BarServiceImpl" init-method="init" destroy-method="destroy">
        <property name="fooService" ref="fooService"/>
        <property name="foods">
            <list>
                <value>fish</value>
                <value>Cola</value>
                <value>whisky</value>
            </list>
        </property>
        <property name="foodPrices">
            <map>
                <entry key="fish" value="15.00"/>
                <entry key="Cola" value="2.5"/>
                <entry key="whisky" value="20.99"/>
            </map>
        </property>
        <property name="barName" value="BarRR"/>
    </bean>

</beans>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy