尝试部署servlet项目时遇到404错误。我从Netbeans获取war文件并将其复制到tomcat文件夹中的webapps文件夹中。
代码:
的web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">
<servlet>
<servlet-name>UploadServlet</servlet-name>
<servlet-class>com.example.Upload</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>UploadServlet</servlet-name>
<url-pattern>/UploadFile/UploadServlet</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
</web-app>
index.html:
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>File Uploading Form</title>
</head>
<body>
<h3>File Upload:</h3>
Select a file to upload: <br />
<form action="UploadServlet" method="post"
enctype="multipart/form-data">
<input type="file" name="file" />
<br />
<input type="submit" value="Upload File" />
</form>
</body>
</html>
如果我在web.xml中注释servlet映射和servlet部分,我可以看到index.html。撤消后,我只看到404错误页面。 请让我知道可能是什么错误?另外,实际上我想在web.xml中编写动作部分和url-pattern
提前致谢。
答案 0 :(得分:1)
请尝试执行以下操作:
<form action="/UploadFile/UploadServlet" method="post"
enctype="multipart/form-data">
...
</form>
请给我一些反馈。
希望有所帮助。
答案 1 :(得分:0)
如果您使用Servlet API 3.0,请尝试在您的servlet类上添加注释。
@MultipartConfig