使用我的项目设置方式加载index.html时遇到一些困难 - 我的结构如下所示;
我的web.xml如下所示;
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" 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_3_0.xsd">
<module-name>restprj</module-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>SpringApplication</servlet-name>
<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>javax.ws.rs.Application</param-name>
<param-value>com.rest.test.demo.MyApplication</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>SpringApplication</servlet-name>
<url-pattern>/service/*</url-pattern>
</servlet-mapping>
</web-app>
我可以毫无问题地拨打我的休息终点 - 例如
http://localhost:8080/service/entry-point/test2/hi
这给了我输出 - 但是如果我导航到网址http://localhost:8080/service/我得到了404 - 在我放置index.html的地方没有任何区别 - 是否有人能够指出我做错了什么?
谢谢
答案 0 :(得分:1)
看起来您将index.html
放在/target
文件夹中,对src/main/webapp
和.js
个文件使用.html
文件夹。每次mvn clean install
时都会清理目标文件夹,并且它们将不会包含在您的包装中。
进行更改后,构建项目,将war复制到某个位置,将.war重命名为.zip,提取内容并查看它是否包含根文件夹中的index.html文件。您可以在我建议的更改之前和之后执行此操作,以了解index.html的打包方式和位置。