我使用RestController
来获取AngularJS
的数据,但我仍需要常规控制器来加载index.html
:
@Controller
public final class LayoutController {
@RequestMapping(value = "/")
public String getIndexPage() {
return "/resources/index";
}
}
其他每个控制器都是RestController
个。如果索引文件具有jsp
扩展名,则我不需要LayoutController
,但是当它是html
时,则需要它。
这是我的dispatcher
配置:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"
>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="order" value="1"></property>
<property name="prefix">
<value>/</value>
</property>
<property name="suffix">
<value>.html</value>
</property>
</bean>
</beans>
这是applicationContext
的一部分:
<mvc:annotation-driven/>
<tx:annotation-driven />
<mvc:resources mapping="/resources/**" location="WEB-INF/resources/" />
当我想使用LayoutController
代替index.html
时,有没有办法摆脱index.jsp
?提前感谢您的帮助。
基于已接受答案的解决方案:
<mvc:view-controller path="/" view-name="/resources/index.html"/>
根本没有LayoutController
和InternalResourceViewResolver
。
答案 0 :(得分:1)
您可以使用view-controller
,
<mvc:view-controller path="/" view-name="index"/>
我假设您已经有一个指向jsp位置的InternalResourceViewResolver。如果不是,您还必须将其包含在应用程序上下文中。
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/resources/" />
<property name="suffix" value=".html" />
</bean>
如果你不想包含InternalResourceViewResolver,你也可以直接转发到html。
<mvc:view-controller path="/" view-name="forward:/WEB-INF/resources/index.html"/>
希望,这就是你要找的东西。