bean tag template for injection in springs-context-services.xml
1 2 <bean id="fooService" class="com.example.bar.fooServiceImpl"> 3 <property name="fooDao" ref="fooDao"/> 4 <!-- There may be more property tags --> 5 </bean>
DZone Snippets > gasull2 > javabeans
12978 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
1 2 <bean id="fooService" class="com.example.bar.fooServiceImpl"> 3 <property name="fooDao" ref="fooDao"/> 4 <!-- There may be more property tags --> 5 </bean>