摆脱使用Spring 4和AngularJS的第一个View Controller

时间:2016-07-20 11:20:30

标签: java angularjs spring spring-mvc spring-4

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

根本没有LayoutControllerInternalResourceViewResolver

1 个答案:

答案 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"/>

希望,这就是你要找的东西。