Created
October 29, 2013 00:44
-
-
Save rankun203/7207365 to your computer and use it in GitHub Desktop.
SpringMVC配置/WEB-INF/pages下的视图
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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