欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

从零开始学 Spring Boot

程序员文章站 2022-03-20 10:38:08
1、下载 spring-tool-suite 2、解压运行 3、新建工程 打开 Dashboard,点击 CREATE SPRING STARTER PROJECT 进入 New Spring Starter Project,设置项目名称(Name)、项目 maven 坐标(Group、Artifa ......

1、下载 spring-tool-suite

https://spring.io/tools3/sts/legacy

从零开始学 Spring Boot

 

2、解压运行

sts-bundle\sts-3.9.7.release\sts.exe

从零开始学 Spring Boot

 

3、新建工程

打开 dashboard,点击 create spring starter project

 

从零开始学 Spring Boot

 

进入 new spring starter project,设置项目名称(name)、项目 maven 坐标(group、artifact),点击 next

 

从零开始学 Spring Boot

 

进入 new spring starter project dependencies,选择项目依赖 jar 包

 

从零开始学 Spring Boot

 

点击 finish,进入项目

 

从零开始学 Spring Boot

 

4、hello world

新建 helloworld.java,输入如下代码:

 1 package com.example.demo;
 2 
 3 import org.springframework.web.bind.annotation.requestmapping;
 4 import org.springframework.web.bind.annotation.restcontroller;
 5 
 6 @restcontroller
 7 public class helloworld {
 8 
 9     @requestmapping("/")
10     public string hello() {
11         return "hello world!";
12     }
13     
14 }

 

项目结构如下

从零开始学 Spring Boot

 

5、运行

选中 demoapplication.java,右键 run as -> spring boot app


从零开始学 Spring Boot

 

浏览器输入:http://localhost:8080/


从零开始学 Spring Boot

 

ps: 本机 java jdk8