0

我有一个带有 url 的 Web 应用程序:localhost:8080/appname/views/welcome.html。因此,我希望我的应用程序在用户键入 localhost:8080/appname 时打开welcome.html,而不是输入整个网址。所以我在我的spring config xml中做了以下更改。

<mvc:annotation-driven />
<mvc:resources mapping="/static/**" location="/" />
<mvc:view-controller path="/" view-name="welcome" />
<mvc:default-servlet-handler />
<bean id="viewResolver"
    class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="prefix" value="/views/" />
    <property name="suffix" value=".html" />
</bean>

但是使用此配置,我无法在浏览器中启动我的应用程序,而是出现 404 错误。

需要帮助我做错了什么。

4

2 回答 2

1

您还可以创建一个 Spring 操作并使用 @RequestMapping 中的 value 属性来指定要调用或调用该操作的 url。当调用该操作时,您返回页面的名称,在本例中为welcome.html。因此,您可以使用这种方法通过告诉操作映射到“/”来加载welcome.html 页面。

@Controller
public class CustomController {

@RequestMapping (value = {"/","home"}, method = RequestMethod.GET)
public String home ()
{
    return "welcome";
}
}

所以 localhost:8080/app-name/ 和
localhost:8080/app-name/home

于 2013-11-05T17:48:57.387 回答
1

您可以通过将以下内容添加到 web.xml 来做到这一点。

<welcome-file-list>
    <welcome-file>/views/welcome.html</welcome-file>
</welcome-file-list>
于 2013-11-05T17:36:13.577 回答