gpt4 book ai didi

java - 通过 html 轻松休息不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 14:21:26 25 4
gpt4 key购买 nike

我有一个轻松休息的网址。当我在浏览器中输入 url 时,调用 java 类会返回输出。当我调用index.html 文件时,它没有加载。我正在使用 tomcat7

这是我的 web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com /xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns
/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>projectname</display-name>
<resource-ref>
<description>MySQL Datasource example</description>
<res-ref-name>jdbc/projectnamedb</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
<context-param>
<param-name>log4jConfigLocation</param-name>
<param-value>${catalina.home}\conf\log4j.properties</param-value>
</context-param>
<context-param>
<param-name>inputPropertiesLocation</param-name>
<param-value>${catalina.home}\conf\projectDetails.properties</param-value>
</context-param>
<context-param>
<param-name>resteasy.scan</param-name>
<param-value>true</param-value>
</context-param>
<listener>
<listener-class>org.jboss.resteasy.plugins.server.servlet.ResteasyBootstrap
</listener-class>
</listener>
<servlet>
<servlet-name>Resteasy</servlet-name>
<servlet-class>org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher
</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Resteasy</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>/index.html</welcome-file>
</welcome-file-list>
</web-app>

最佳答案

这里有两件事需要了解

1)您不能简单地输入http://index.html,您必须提供索引页面的路径,例如http://projectname/path/to/index.html

2) 另一种简单的方法是添加 index.html 作为欢迎页面。因此,每当服务器启动时,它都会首先打开 index.html 页面。喜欢

<welcome-file-list>  
<welcome-file>path/to/index.html</welcome-file>
</welcome-file-list>

关于java - 通过 html 轻松休息不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27147329/

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