IDEA+Maven搭建JavaWeb项目的方法步骤

前言

本章节主要内容是描述如何使用maven构建javaweb项目

Maven依赖仓库:

https://mvnrepository.com/

Tomcat7插件的命令:

https://tomcat.apache.org/maven-plugin-trunk/tomcat7-maven-plugin/plugin-info.html

1. 项目搭建

选择maven模板的 maven-app 模板创建项目 , 如下图所示

IDEA+Maven搭建JavaWeb项目的方法步骤_第1张图片

设置maven相关配置

IDEA+Maven搭建JavaWeb项目的方法步骤_第2张图片

确认自己的maven配置目录, 如果没有设置, 默认会使用.m2的maven配置

IDEA+Maven搭建JavaWeb项目的方法步骤_第3张图片

2. 配置项目

修改 JDK 的版本



    UTF-8
    1.8
    1.8

设置单元测试的版本



    
        junit
        junit
        4.12
        test
    

删除pluginManagement标签



...

添加web部署的插件

​ 在 build 标签中添加 plugins 标签

Jetty插件



   org.mortbay.jetty
   maven-jetty-plugin
   6.1.25
   
      
      10
      
      /test                 
      
          
              9090 
          
      
   
  

Tomcat插件



	org.apache.tomcat.maven
	tomcat7-maven-plugin
	2.1
	
		8081 
		/test 
		UTF-8 
		tomcat7 
	

完整POM文件参考




  4.0.0

  cn.knightzz
  lesson-04-webapp
  1.0-SNAPSHOT
  war

  lesson-04-webapp Maven Webapp
  
  http://www.example.com

  
    UTF-8
    1.8
    1.8
  

  
    
      junit
      junit
      4.11
      test
    
  

  
    lesson-04-webapp

    
      
      
        org.mortbay.jetty
        maven-jetty-plugin
        6.1.25
        
          
          10
          
          /test
          
            
              9090 
            
          
        
      

      
      
        org.apache.tomcat.maven
        tomcat7-maven-plugin
        2.1
        
          8081 
          /lesson-04-webapp 
          UTF-8 
          tomcat7 
        
      
    
  

3. 项目运行

使用Jetty运行项目

点击右上角的 "Add Configurations ",打开 “Run/Debug Configurations” 窗口, 添加相关配置

IDEA+Maven搭建JavaWeb项目的方法步骤_第4张图片

也可以指定端口运行

jetty:run -Djetty.port=9090  # 需要将插件配置中的port标签去掉

使用jetty运行项目

IDEA+Maven搭建JavaWeb项目的方法步骤_第5张图片

在浏览器中显示

IDEA+Maven搭建JavaWeb项目的方法步骤_第6张图片

启动成功

[INFO] Starting jetty 6.1.25 ...
[INFO] jetty-6.1.25
[INFO] No Transaction manager found - if your webapp requires one, please configure one.
[INFO] Started [email protected]:9090
[INFO] Started Jetty Server
[INFO] Starting scanner at interval of 10 seconds.

使用Tomact插件运行项目

配置tomact插件

IDEA+Maven搭建JavaWeb项目的方法步骤_第7张图片

运行项目

[INFO] --- tomcat7-maven-plugin:2.1:run (default-cli) @ lesson-04-webapp ---
[INFO] Running war on http://localhost:8081/lesson-04-webapp
[INFO] Creating Tomcat server configuration at K:\CodeWorkSpace\CodeApp\spring-lesson-cloud\spring-aop\lesson-04-webapp\target\tomcat
[INFO] create webapp with contextPath: /lesson-04-webapp
十月 31, 2021 3:10:03 下午 org.apache.coyote.AbstractProtocol init
信息: Initializing ProtocolHandler ["http-bio-8081"]
十月 31, 2021 3:10:03 下午 org.apache.catalina.core.StandardService startInternal
信息: Starting service Tomcat
十月 31, 2021 3:10:03 下午 org.apache.catalina.core.StandardEngine startInternal
信息: Starting Servlet Engine: Apache Tomcat/7.0.37
十月 31, 2021 3:10:04 下午 org.apache.coyote.AbstractProtocol start
信息: Starting ProtocolHandler ["http-bio-8081"]

浏览器访问

IDEA+Maven搭建JavaWeb项目的方法步骤_第8张图片

4. 注意事项

jetty 和 tomact 的插件配置都在pom文件里配置

 
      
      
        org.mortbay.jetty
        maven-jetty-plugin
        6.1.25
        
          
          10
          
          /test
          
            
              9090 
            
          
        
      

      
      
        org.apache.tomcat.maven
        tomcat7-maven-plugin
        2.1
        
          8081 
          /lesson-04-webapp 
          UTF-8 
          tomcat7 
        
      
    

到此这篇关于IDEA+Maven搭建JavaWeb项目的文章就介绍到这了,更多相关IDEA + Maven 搭建JavaWeb项目内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(IDEA+Maven搭建JavaWeb项目的方法步骤)