java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > maven方式创建springboot

使用maven方式创建springboot项目的方式

作者:那你为何对我三笑留情

使用Spring Initializr创建spring boot项目,因为外网问题导致很难成功,所以只能使用maven方式,这里介绍下使用maven方式创建springboot项目的方法,感兴趣的朋友一起看看吧

使用Spring Initializr创建spring boot项目,因为外网问题导致很难成功,所以只能使用maven方式,这里介绍下该方式。

壹、创建maven项目

1.创建项目

创建项目

2.选择maven类型,jdk版本,空模板

选择类型

3.填写项目名称,本地存储路径,group信息,版本等信息

4.项目结构

项目结构

贰、整改为springboot项目

1.修改pom.xml:继承spring-boot-starter-parent;自行修改版本

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

2.修改pom.xml:添加打打包方式

<packaging>jar</packaging>

3.修改pom.xml:添加spring-boot-starter-web依赖包

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

4.修改pom.xml:添加jar包启动入口类

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <mainClass>com.te.TestWebApplication</mainClass>
                </configuration>
            </plugin>
        </plugins>
    </build>

5.完整的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>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.3.12.RELEASE</version>
        <relativePath/>
    </parent>

    <groupId>com.te</groupId>
    <artifactId>test</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>jar</packaging>

    <properties>
        <maven.compiler.source>8</maven.compiler.source>
        <maven.compiler.target>8</maven.compiler.target>
    </properties>

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

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <mainClass>com.te.TestWebApplication</mainClass>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

6.创建Springboot启动类,并添加注解和main方法

package com.te;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class TestWebApplication {
    public static void main(String[] args) {
        SpringApplication.run(TestWebApplication.class, args);
    }
}

根据功能需要:添加其他jar包依赖;创建application.yml、application.properties等文件添加配置项等等

叁、测试 创建测试类

package com.te.web;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class TestController {

    @GetMapping("/test")
    public String test() {
        return "hello world";
    }
}

启动springboot项目,第一次启动类的方式,后面可以使用快捷方式启动

页面访问测试,地址:http://localhost:8080/test

到此这篇关于使用maven方式创建springboot项目的文章就介绍到这了,更多相关maven方式创建springboot内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文