我需要有关web.xml和pom.xml文件的文档。我想学习网页开发,所以我开始一些关于它的教程。我使用IDE eclipse,我选择maven项目来开发教程。我没有错误,但我无法在网络上部署项目。可能是我的问题是我总体上不了解这个文件的概念。关于这一点的一些文件我肯定能帮助我。我在萨特克搜索过,但我没有找到文件。我想知道Web开发人员如何知道他们需要这些文件的代码
答案 0 :(得分:0)
web.xml
是Web应用程序配置文件,用于定义应用程序中使用的servlet容器。您通常可以添加启动代码,url-pattern,因为这将在应用程序启动时调用。以下示例从Jersey RestFull服务中提取。
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
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">
<servlet>
<servlet-name>Jersey Web Application</servlet-name>
<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>jersey.config.server.provider.packages</param-name>
<param-value>com.xxxx.shopper</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
<async-supported>true</async-supported>
</servlet>
<servlet-mapping>
<servlet-name>Jersey Web Application</servlet-name>
<url-pattern>/webapi/*</url-pattern>
</servlet-mapping>
<listener>
<listener-class>com.xxxx.shopper.service.Startup</listener-class>
</listener>
</web-app>
pom.xml
是maven配置文件定义构建过程并加载任何依赖项。
好读:
1. https://www.mkyong.com/maven/how-to-create-a-web-application-project-with-maven/
2. Difference between web projects with pom.xml and web.xml
3. Why do we use web.xml?