在Spring中映射jsp?

时间:2010-12-16 07:30:05

标签: java spring jsp spring-mvc

如何在Spring中的web文件夹(不在web-inf文件夹中)映射jsp文件?

1 个答案:

答案 0 :(得分:0)

你在找这样的东西吗?

<bean id="jspViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
        <property name="prefix" value="/folder-holding-my-jsps/"/>
        <property name="suffix" value=".jsp"/>
    </bean>