web.xml和pom.xml文档

时间:2017-08-31 23:51:25

标签: java xml eclipse maven

我需要有关web.xml和pom.xml文件的文档。我想学习网页开发,所以我开始一些关于它的教程。我使用IDE eclipse,我选择maven项目来开发教程。我没有错误,但我无法在网络上部署项目。可能是我的问题是我总体上不了解这个文件的概念。关于这一点的一些文件我肯定能帮助我。我在萨特克搜索过,但我没有找到文件。我想知道Web开发人员如何知道他们需要这些文件的代码

1 个答案:

答案 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?