【发布时间】:2015-11-28 15:22:55
【问题描述】:
如何设置 Spring MVC 以捕获所有请求并仅返回我的欢迎页面 (index.html)?
我的总体意图是使用 Spring MVC 拦截任何带有“/api/”的内容,以便我可以调用后端,但任何其他 url 都应该返回“index.html”,以便 ui-router 可以尝试显示正确的观点。
但是,在我当前的设置下,我可以使用 ui-router 在网站上导航,但是当我尝试导航到应该由 ui-router 解析的 url 时,我收到此错误:
Problem accessing /app/hi/hello. Reason:
Circular view path [index.html]: would dispatch back to the current handler URL
[/app/hi/index.html] again. Check your ViewResolver setup! (Hint: This may be the result
of an unspecified view, due to default view name generation.)
我的设置:
BaseController.java
@Controller
public class BaseController {
@RequestMapping("/app/**")
public String get() {
return "index.html";
}
}
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<servlet>
<servlet-name>mvc-dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/mvc-dispatcher-servlet.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
<servlet-mapping>
<servlet-name>mvc-dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
mvc-dispatch-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<context:component-scan base-package="com.football_preds"/>
<mvc:annotation-driven/>
<mvc:resources mapping="/app/**" location="/" />
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix">
<value>/views/</value>
</property>
<property name="suffix">
<value>.jsp</value>
</property>
</bean>
</beans>
index.html
<head>
<link href="style.css" rel="stylesheet"/>
<meta charset="utf-8">
<script src="dist/football-preds.js"></script>
<title>Football Predictions</title>
</head>
<body ng-controller="MainController">
<section ui-view></section>
<button ui-sref="login">Login page</button>
</body>
【问题讨论】:
标签: java angularjs google-app-engine spring-mvc angular-ui-router