gpt4 book ai didi

java - Spring应用程序的默认html页面

转载 作者:行者123 更新时间:2023-12-02 06:34:30 25 4
gpt4 key购买 nike

我有一个 Web 应用程序,其 url 为:localhost:8080/appname/views/welcome.html。因此,我希望我的应用程序在用户输入 localhost:8080/appname 时打开welcome.html,而不是输入整个网址。所以我在 spring 配置 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 错误。

需要帮助解决我做错的事情。

最佳答案

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

<welcome-file-list>
<welcome-file>/views/welcome.html</welcome-file>
</welcome-file-list>

关于java - Spring应用程序的默认html页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19795190/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com