新版本 Idea 创建 Web 项目的步骤

本文介绍了如何在最新版本的Idea中使用Maven创建一个简单的SpringMVCWeb项目。首先,通过新建Maven项目来设置基础结构,然后在pom.xml中添加必要的依赖,如SpringWebMVC和ServletAPI。接着,配置Tomcat插件以指定端口和路径,确保打包为war文件以便于Tomcat启动。最后,提到了对于多级项目配置Tomcat启动的工作目录选择。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Idea 在更新了几个版本之后,创建项目的方式已经和之前有很大的区别,在此记录下新版本 Idea 创建简单 web 项目的步骤。

  • 新建 maven 项目
    在这里插入图片描述
  • 给项目添加框架支持
    在这里插入图片描述
    在这里插入图片描述
  • pom.xml 中添加依赖项
<?xml version="1.0" encoding="UTF-8"?>
<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>

    <parent>
        <groupId>com.sunk</groupId>
        <artifactId>SSM</artifactId>
        <version>1.0-SNAPSHOT</version>
    </parent>

    <artifactId>SpringMVC_quickstart</artifactId>
    <packaging>war</packaging>

    <properties>
        <maven.compiler.source>8</maven.compiler.source>
        <maven.compiler.target>8</maven.compiler.target>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <version>3.1.0</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>5.2.10.RELEASE</version>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.tomcat.maven</groupId>
                <artifactId>tomcat7-maven-plugin</artifactId>
                <version>2.1</version>
                <configuration>
                    <port>80</port>
                    <path>/</path>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

注意打成 war,否则 tomcat 不会启动
在这里插入图片描述

  • 增加 tomcat 启动配置
    在这里插入图片描述
    在这里插入图片描述
    如果你是多级项目,没有指定的项目可以选择具体的文件夹作为工作目录
    在这里插入图片描述
  • 启动项目
    在这里插入图片描述
  • 可以了
    在这里插入图片描述
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值