Skip to content

Instantly share code, notes, and snippets.

@rei999
Created January 19, 2013 20:13
Show Gist options
  • Save rei999/4574825 to your computer and use it in GitHub Desktop.
Save rei999/4574825 to your computer and use it in GitHub Desktop.
sample spring-mvc-servlet
<bean id="VideoController" class="com.yourcompanyname.controller.HelloController" />
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix">
<value>/views/</value>
</property>
<property name="suffix">
<value>.jsp</value>
</property>
</bean>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment