Skip to content

Instantly share code, notes, and snippets.

@rankun203
Created October 29, 2013 00:44
Show Gist options
  • Save rankun203/7207365 to your computer and use it in GitHub Desktop.
Save rankun203/7207365 to your computer and use it in GitHub Desktop.
SpringMVC配置/WEB-INF/pages下的视图
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver" >
<property name="prefix">
<value>/WEB-INF/pages/</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