解決HTML視圖我目前的工作代碼是這樣的如何在spring中加載html視圖?
<mvc:resources mapping="/static/**" location="/WEB-INF/static/html/" />
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="" />
<property name="suffix" value=".html" />
</bean>
,但我需要返回查看,如
我怎樣才能使它這樣?
return "index";
非常感謝我的努力。這解決了我的問題。保存我的一天.. –