Idea中Maven的运用,创建一个web项目,servlet演示

来源:互联网 发布:怎样限制手机安装软件 编辑:程序博客网 时间:2024/06/01 07:12

第一步:在pom.xml文件中添加servlet依赖

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">  <modelVersion>4.0.0</modelVersion>  <groupId>com.oracle.servlet</groupId>  <artifactId>servlet_demo1</artifactId>  <version>1.0-SNAPSHOT</version>  <packaging>jar</packaging>  <name>servlet_demo1</name>  <url>http://maven.apache.org</url>  <properties>    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>  </properties>  <dependencies>    <!--添加Juntit配置-->    <dependency>      <groupId>junit</groupId>      <artifactId>junit</artifactId>      <version>3.8.1</version>      <scope>test</scope>    </dependency>    <!--添加Servlet-->    <dependency>      <groupId>Javax.servlet</groupId>      <artifactId>servlet-api</artifactId>      <version>3.0-alpha-1</version>    </dependency>  </dependencies></project>

原创粉丝点击