[DEBUG] 14:39:31.476 org.nutz.mvc.impl.UrlMappingImpl.get(UrlMappingImpl.java:101) - Found mapping for [GET] path=/ : MainLauncher.index(MainLauncher.java:16)
[DEBUG] 14:39:31.477 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:165) - Get 'mainLa
uncher'<class io.nutz.demo.MainLauncher>
10 回复
HTTP Status 404 – Not Found
Type Status Report
Message /index.html
Description The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.
Apache Tomcat/8.5.29
对了,我导入项目的时候,pom.xml文件是报错的,删除了以下内容才可以,会不会跟这个有关
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<mainClass>io.nutz.demo.MainLauncher</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
添加回复
请先登陆