IDEA中,如何将maven项目变为SpringBoot项目?

第一步:新建Maven工程

这很简单不做过多赘述。

第二步:修改pom.xml文件

分别加入springboot父依赖,web依赖,test测试依赖,maven打包依赖。



    4.0.0

    
    
        org.springframework.boot
        spring-boot-starter-parent
        2.5.4
    

    com.oracle
    flowableSpringboot
    1.0-SNAPSHOT

    
        8
        8
        UTF-8
    
    
        
        
            org.springframework.boot
            spring-boot-starter-web
        
        
        
            org.springframework.boot
            spring-boot-starter-test
            test
        
    
    
    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    

第三步:添加application.yml

resources下,创建application.yml文件。

server:
  port: 8888

第四步:创建启动类

你可以起名叫App.java,我这里是项目名+Application.java,文件放在java中你的包下。

package com.oracle;

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

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

第五步:创建一个controller进行访问测试

package com.oracle.controller;

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

@RestController
@RequestMapping("/springboot")
public class HelloController {
    @GetMapping(path = "/hello")
    public String hello(){
        return "Hello,world";
    }
}

第六步:查看项目结构

IDEA中,如何将maven项目变为SpringBoot项目?_第1张图片

第七步:启动测试

打开启动类,右键运行main方法。

IDEA中,如何将maven项目变为SpringBoot项目?_第2张图片

出现这些就算运行成功!!!

访问http://localhost:8888/springboot/hello

IDEA中,如何将maven项目变为SpringBoot项目?_第3张图片

成功访问!!!

你可能感兴趣的:(Java,spring,boot,intellij-idea,maven)