似乎我提出了一个已经提出过很多次的问题,但是,在我提交该问题之前,我经历了大多数答案,发现没有一个可以解决我的问题。
问题出在这里:
1.两天前,当我在浏览器中输入“ http://localhost:8080/index.html”时,index.html文件运行正常
2.昨天,从Microsoft Edge尝试调试应用程序的JavaScript文件时,注意到.js文件未反映我在Eclipse中所做的更改。我不确定如何将最新的更改从Eclipse.js文件导入Microsoft Edge,所以我从Microsoft Edge删除了index.html和.js文件。之后,无论如何尝试,我再也无法访问http://localhost:8080/index.html,它最终会出现相同的错误“ Whitelabel Error Page”。
我认为该问题不是由任何代码更改引起的,有人可以建议我从Microsoft Edge删除2个文件是否与该问题有关?
---------有关更多信息------------ 该项目结构由Maven编写,索引文件路径如下:/social-multiplication-v3/src/main/resources/static/index.html
这是pom文件: http://maven.apache.org/xsd/maven-4.0.0.xsd“> 4.0.0
<groupId>microservices.book</groupId>
<artifactId>social-multiplication-v3</artifactId>
<version>0.3.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>social-multiplication-v3</name>
<description>Social Multiplication App (Learn Microservices with Spring Boot)</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.7.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.12</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>