用springboot创建helloworld项目

目录

一、什么是springboot

二、使用idea构建springboot

(1)下载idea

(2)在idea配置maven

(3)利用springboot构建1个helloworld的web项目​编辑​编辑 ​编辑

 (4)启动springboot构建的web项目


一、什么是springboot

一个java项目构建工具。它集成了几乎所有框架,便于快速构建spring项目。并且构建的web项目默认内置1个tomcat,可以直接启动运行

二、使用idea构建springboot

(1)下载idea

  • 如果idea是专业版(idea ultimate),那么无需任何的插件,可以直接创建Spring Boot项目.

idea ultimate2023.01下载地址:

链接:https://pan.baidu.com/s/18j1Lzt_Ik1_XPR0I5zuCyA?pwd=xtq1 
提取码:xtq1 

  • 如果idea是社区版,需要安装Spring Boot Helper插件.(此插件在2022版本开始收费)

(2)在idea配置maven

参照:http://t.csdn.cn/pM4go

用springboot创建helloworld项目_第1张图片

(3)利用springboot构建1个helloworld的web项目
用springboot创建helloworld项目_第2张图片用springboot创建helloworld项目_第3张图片 用springboot创建helloworld项目_第4张图片

生成的pom.xml中springboot核心配置内容如下

用springboot创建helloworld项目_第5张图片

新建1个java类:

package com.ecorp.helloworld;

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

@RestController
public class HelloWorldController {
@RequestMapping("/")         //如果是@RequestMapping("/hahaha") ,那么浏览器里就输入:localhost:8080/hahaha
public String sayHello(){
return "hello world!";    //返回页面内容
}
}

 (4)启动springboot构建的web项目

用springboot创建helloworld项目_第6张图片

 用springboot创建helloworld项目_第7张图片

你可能感兴趣的:(Java,spring,boot,java,springboot)