IntelliJ IDEA快速搭建Spring Boot项目

Spring Boot的优点
         Spring Boot可以快速构建,使用Spring Boot项目引导可以在几分钟内搭建项目
         Spring Boot自带tomcat、netty容器供你选择,无需打war包上传服务器
         Spring Boot自动管理依赖

第一步、新建项目,选择Spring Initializr

IntelliJ IDEA快速搭建Spring Boot项目_第1张图片

第二步:配置项目名和包名

IntelliJ IDEA快速搭建Spring Boot项目_第2张图片

第三步:选择spring版本,选择web开发

IntelliJ IDEA快速搭建Spring Boot项目_第3张图片

第四步:项目搭建好了,新建个Controller,访问输出Hello SpringBoot

IntelliJ IDEA快速搭建Spring Boot项目_第4张图片

package com.spring.test;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
 * @Auther: 恒
 * @Date: 2018/5/31 15:12
 * @Description:
 */


@RestController
@RequestMapping("/test")
public class TestController {

    @RequestMapping("")
    public String test(){
        return  "Hello  SpringBoot";
    }

}
IntelliJ IDEA快速搭建Spring Boot项目_第5张图片


        


你可能感兴趣的:(java:web,springboot,springboot优缺点,springboot快速搭建)