Skip to content

Instantly share code, notes, and snippets.

@isyoon
Created March 28, 2012 23:45
Show Gist options
  • Save isyoon/2231572 to your computer and use it in GitHub Desktop.
Save isyoon/2231572 to your computer and use it in GitHub Desktop.
spring config
<!-- load prop -->
<bean id="webProp" class="org.springframework.beans.factory.config.PropertiesFactoryBean">
<property name="locations">
<list>
<value>classpath:/web-config.xml</value>
</list>
</property>
</bean>
<!--- blah ---->
<bean id="jstlViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:order="1">
<property name="prefix" value="/WEB-INF/view/" />
<property name="suffix" value=".jsp" />
<property name="attributesMap">
<map>
<entry key="webProp" value-ref="webProp"/>
</map>
</property>
</bean>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment