飞道的博客

使用IDEA创建Maven工程 - 创建javaweb工程

419人阅读  评论(0)

6. 使用IDEA创建Maven工程 - 创建javaweb工程

使用Maven骨架 - 创建javaweb工程

1.目标

  • 能够使用IDEA创建javaweb的Maven工程

2.路径

  1. 创建javaweb工程

  2. 发布javaweb工程

  3. 浏览器访问效果

3.讲解

3.1 创建javaweb工程

3.1.1 创建javaweb工程与创建javase工程类似,但在选择Maven骨架时,选择maven-archetype-webapp即可:
image-20201213145127878

填写Module的项目信息,如下:

image-20201213145308747

配置 Maven 设置:

image-20201213145357863

配置Module的存储路径:

image-20201213145653588
3.1.2 创建好的javaweb工程如下:
image-20201213145746870

可以从目录结构来看,生成的目录结构缺少,需要手动配置一下工程目录。

3.1.3 手动创建工程目录

创建 java 源码路径:

image-20201213150051596

创建 resources 配置文件夹:

image-20201213150227545

创建 test 单元测试文件夹:

image-20201213150357332
3.1.4 创建好的工程目录结构
image-20201213150547615

3.2 配置 Maven 配置文件 pom.xml

image-20201213150845429

   
  1. <?xml version= "1.0" encoding= "UTF-8"?>
  2. <project xmlns= "http://maven.apache.org/POM/4.0.0" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  3.   xsi:schemaLocation= "http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.   <modelVersion> 4.0 .0</modelVersion>
  5.   <!-- 项目的坐标 -->
  6.   <groupId>com.lijw</groupId>
  7.   <artifactId>javaweb_demo_01</artifactId>
  8.   <version> 1.0-SNAPSHOT</version>
  9.   <!-- 设置打包方式 -->
  10.   <packaging>war</packaging>
  11.   <!-- 项目名称以及服务url -->
  12.   <name>javaweb_demo_01 Maven Webapp</name>
  13.   <!-- FIXME change it to the project 's website -->
  14.   <url>http://www.example.com</url>
  15.   <!-- 项目属性,设置jdk 以及 编码 -->
  16.   <properties>
  17.     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18.     <maven.compiler.source>1.8</maven.compiler.source>
  19.     <maven.compiler.target>1.8</maven.compiler.target>
  20.   </properties>
  21.   <!-- 项目依赖 -->
  22.   <dependencies>
  23.     <dependency>
  24.       <groupId>junit</groupId>
  25.       <artifactId>junit</artifactId>
  26.       <version>4.11</version>
  27.       <scope>test</scope>
  28.     </dependency>
  29.   </dependencies>
  30.   <build>
  31.     <finalName>javaweb_demo_01</finalName>
  32.     <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  33.       <plugins>
  34.         <plugin>
  35.           <artifactId>maven-clean-plugin</artifactId>
  36.           <version>3.1.0</version>
  37.         </plugin>
  38.         <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->
  39.         <plugin>
  40.           <artifactId>maven-resources-plugin</artifactId>
  41.           <version>3.0.2</version>
  42.         </plugin>
  43.         <plugin>
  44.           <artifactId>maven-compiler-plugin</artifactId>
  45.           <version>3.8.0</version>
  46.         </plugin>
  47.         <plugin>
  48.           <artifactId>maven-surefire-plugin</artifactId>
  49.           <version>2.22.1</version>
  50.         </plugin>
  51.         <plugin>
  52.           <artifactId>maven-war-plugin</artifactId>
  53.           <version>3.2.2</version>
  54.         </plugin>
  55.         <plugin>
  56.           <artifactId>maven-install-plugin</artifactId>
  57.           <version>2.5.2</version>
  58.         </plugin>
  59.         <plugin>
  60.           <artifactId>maven-deploy-plugin</artifactId>
  61.           <version>2.8.2</version>
  62.         </plugin>
  63.       </plugins>
  64.     </pluginManagement>
  65.   </build>
  66. </project>

3.2 发布javaweb工程

配置 tomcat 部署 javaweb 工程,如下:

3.2.1 创建集成 tomcat 服务
image-20201213151209191
image-20201213151252099
image-20201213151400738
image-20201213151454155
image-20201213151522869

3.3 测试访问页面

使用骨架创建的 javaweb 工程,自动创建了 index.jsp 页面,我们可以测试访问:

image-20201213151722364
image-20201213151738704

4.小结

  1. 选择骨架选择webapp

image-20191224105135578
  1. pom.xml

image-20191224105159688
  1. web工程结构

image-20191224105359670

不使用骨架 - 创建javaweb工程

1.目标

上面是使用骨架来创建工程的,如果不使用骨架,怎样创建工程呢?

2.路径

  1. 不使用骨架创建javaweb项目

3.讲解

3.1.不使用骨架创建javaweb项目

3.1.1 第一步,选择Maven创建项目
image-20201213152328517
3.1.2 第二步,设置项目信息
image-20201213152453490
3.1.3 第三步,创建好的工程目录结构。缺少 webapp
image-20201213152604957
3.1.4 第四步, 在pom文件里面添加标签packaging
image-20201213152718813

   
  1. <!--  设置打包方式  -->
  2. <packaging>war</packaging>
3.1.5 第五步,设置框架支持,创建 Web 应用
image-20201213154003927
image-20201213154135209
image-20201213154155981
image-20201213154246266
3.1.6 第六步,查看配置好的项目结构
image-20201213154456585
3.1.7 第七步,将web拖拽至main下,改为 webapp目录,并 配置集成 tomcat 服务
image-20201213160920039
image-20201213154548360
image-20201213154619983
image-20201213154656116
3.1.8 第八步,编写 index.jsp , 开启 tomcat 服务,测试访问
image-20201213161030729

浏览器访问如下:

image-20201213154929582

3.2 在pom.xml设置Servlet依赖,创建 Servlet 测试

3.2.1 在 pom.xml 设置 Servlet 依赖

首先搜索一下 Servlet 的 Maven 坐标,如下:

访问 https://mvnrepository.com/ 搜索 servlet 即可。

image-20201213155713092

将依赖拷贝到 pom.xml 中,如下:

image-20201213155759065
3.2.2 创建 Servlet 测试
image-20201213155906346
image-20201213161312836

   
  1. @WebServlet( "/demo2")
  2. public class HelloServlet extends HttpServlet {
  3.     protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
  4.         response.getWriter().write( "hello java web demo 2");
  5.     }
  6.     protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
  7.         doPost(request, response);
  8.     }
  9. }
3.2.3 启动服务,测试访问如下:
image-20201213161332951

转载:https://blog.csdn.net/u012887259/article/details/111413112
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场