其他分享
首页 > 其他分享> > springboot创建web应用

springboot创建web应用

作者:互联网

①创建maven工程

②pom.xml中添加父工程

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.3.4.RELEASE</version>
    </parent>

  

③pom.xml中添加web场景启动器

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
    </dependencies>

  

 

标签:xml,web,springboot,创建,boot,springframework,pom,spring
来源: https://www.cnblogs.com/ixtao/p/16694863.html