Skip to content

Instantly share code, notes, and snippets.

@kevingo
Created March 22, 2012 09:05
Show Gist options
  • Save kevingo/2157253 to your computer and use it in GitHub Desktop.
Save kevingo/2157253 to your computer and use it in GitHub Desktop.
Spring Bean Metadata
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<bean id="helloWorld" class="HelloWorld" destroy-method="destroy" init-method="init">
<property name="message" value="Hello World!"/>
</bean>
</beans>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment