使用 Spring 4 和 AngularJS 摆脱第一个视图控制器

Get rid of first View Controller with Spring 4 and AngularJS

我使用 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/" />

当我想使用 index.html 而不是 index.jsp 时,有没有办法去掉 LayoutController?预先感谢您的帮助。 基于已接受答案的解决方案:

<mvc:view-controller path="/" view-name="/resources/index.html"/>

根本没有 LayoutControllerInternalResourceViewResolver

你可以使用 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"/>

希望,这就是您要找的。