使用maven在命令行下创建web工程

本文详细介绍了使用 Java 和 Maven 创建 Web 工程的过程,包括使用 Jetty 插件配置服务器,安装工程,启动 Jetty 服务器,并通过 Eclipse 导入工程。进一步展示了如何添加 Servlet API 依赖,创建简单的 Servlet 类,并将其添加到 web.xml 中,最后通过编译和发布完成部署,实现 Servlet 的访问。
摘要由CSDN通过智能技术生成

一、创建web工程

Java代码 复制代码  收藏代码
  1. mvn archetype:generate -DgroupId=orc.cjj.site -DartifactId=orc.cjj.site.sample -DpackageName=org.cjj.site -Dversion=1.0-SNAPSHOT  
mvn archetype:generate -DgroupId=orc.cjj.site -DartifactId=orc.cjj.site.sample -DpackageName=org.cjj.site -Dversion=1.0-SNAPSHOT

选择第8个类型

 

二、添加jetty插件

打开pom.xml添加

Java代码 复制代码  收藏代码
  1. <plugins>   
  2.         <!-- Configuring the Jetty Plugin -->   
  3.       <plugin>   
  4.         <groupId>org.mortbay.jetty</groupId>   
  5.         <artifactId>maven-jetty-plugin</artifactId>   
  6.       </plugin>   
  7. </plugins>  
<plugins>
    	<!-- Configuring the Jetty Plugin -->
      <plugin>
        <groupId>org.mortbay.jetty</groupId>
        <artifactId>maven-jetty-plugin</artifactId>
      </plugin>
</plugins>

 

三、install一下 ,install内容丰富,可以参看另外篇入门文章

Java代码 复制代码  收藏代码
  1. cd org.cjj.site.sample   
  2. mvn install  
cd org.cjj.site.sample
mvn install

 

四、启动jetty

Java代码 复制代码  收藏代码
  1. mvn jetty:run  
mvn jetty:run

 

五、 浏览器输入http://localhost:8080/yoursite,是不是发现成功了?

 

上面的web工程只有一个jsp,来点稍微高级点的

 

六、生成eclipse工程

Java代码 复制代码  收藏代码
  1. mvn eclipse:eclipse  
mvn eclipse:eclipse

 然后用eclipse导入现有工程

 

七、添加servlet api依赖

   打开pom.xml

Java代码 复制代码  收藏代码
  1. <!-- serlvet api -->     
  2.    <dependency>   
  3.     <groupId>javax.servlet</groupId>   
  4.     <artifactId>servlet-api</artifactId>   
  5.     <version>2.4</version>   
  6.     <scope>provided</scope>   
  7.   </dependency>  
<!-- serlvet api -->  
   <dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>servlet-api</artifactId>
    <version>2.4</version>
    <scope>provided</scope>
  </dependency>

 再执行一次,给eclipse的添加Referenced Libraries

Java代码 复制代码  收藏代码
  1. mvn eclipse:eclipse  
mvn eclipse:eclipse

 

八、创建一个简单的servlet

Java代码 复制代码  收藏代码
  1. package org.cjj.site.web;   
  2.   
  3. import java.io.IOException;   
  4. import java.io.PrintWriter;   
  5.   
  6. import javax.servlet.ServletException;   
  7. import javax.servlet.http.HttpServlet;   
  8. import javax.servlet.http.HttpServletRequest;   
  9. import javax.servlet.http.HttpServletResponse;   
  10.   
  11. public class SimpleServlet extends HttpServlet   
  12. {   
  13.     @Override  
  14.     protected void doGet(final HttpServletRequest req, final HttpServletResponse resp) throws ServletException,   
  15.             IOException   
  16.     {   
  17.         final PrintWriter out = resp.getWriter();   
  18.         out.println("SimpleServlet Executed");   
  19.         out.flush();   
  20.         out.close();   
  21.     }   
  22. }  
package org.cjj.site.web;

import java.io.IOException;
import java.io.PrintWriter;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class SimpleServlet extends HttpServlet
{
    @Override
    protected void doGet(final HttpServletRequest req, final HttpServletResponse resp) throws ServletException,
            IOException
    {
        final PrintWriter out = resp.getWriter();
        out.println("SimpleServlet Executed");
        out.flush();
        out.close();
    }
}

 

九、给web.xml添加servlet

Java代码 复制代码  收藏代码
  1. <servlet>   
  2.     <servlet-name>simple</servlet-name>   
  3.     <servlet-class>org.cjj.site.web.SimpleServlet</servlet-class>   
  4.   </servlet>   
  5.   <servlet-mapping>   
  6.     <servlet-name>simple</servlet-name>   
  7.     <url-pattern>/simple</url-pattern>   
  8.   </servlet-mapping>  
<servlet>
    <servlet-name>simple</servlet-name>
    <servlet-class>org.cjj.site.web.SimpleServlet</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>simple</servlet-name>
    <url-pattern>/simple</url-pattern>
  </servlet-mapping>

 

10、编译发布

Java代码 复制代码  收藏代码
  1. mvn clean install   
  2. mvn jetty:run  
mvn clean install
mvn jetty:run

 到此,servlet也可以访问了http://localhost:8080/yoursite/simple

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值