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

网友投稿 291 2022-09-18


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

目录前言1. 项目搭建2. 配置项目添加web部署的插件3. 项目运行使用Tomact插件运行项目4. 注意事项

前言

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

Maven依赖仓库:

https://mvnrepository.com/

Tomcat7插件的命令:

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

1. 项目搭建

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

设置maven相关配置

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

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文件参考

xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

4.0.0

cn.knightzz

lesson-04-webapp

1.0-SNAPSHOT

war

lesson-04-webapp Maven Webapp

http://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

xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

4.0.0

cn.knightzz

lesson-04-webapp

1.0-SNAPSHOT

war

lesson-04-webapp Maven Webapp

http://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” 窗口, 添加相关配置

也可以指定端口运行

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

使用jetty运行项目

在浏览器中显示

启动成功

[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 SelectChannelConnector@0.0.0.0:9090

[INFO] Started Jetty Server

[INFO] Starting scanner at interval of 10 seconds.

使用Tomact插件运行项目

配置tomact插件

运行项目

[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"]

浏览器访问

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


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:HCIE-Security Day25:DSPN+NHRP+Mgre:实验(四)配置shortcut方式DSPN(OSPF路由协议)(hcie-security好考吗)
下一篇:HCIE-Security Day35:IPSec-NAT-T(hcie-security v2.0模拟考试答案)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~