使用Maven构建Spring Boot 第一课之Hello world 程序

Spring Boot 学习第一课

官网
https://spring.io/

学习手册
https://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/

入门指南
https://spring.io/guides/gs/spring-boot/

准备开始

  • JDK1.8 +
  • Gradle 2.3+ or Maven 3.0+
  • IDE
  • Spring Tool Suite (STS)
  • Intellij IDEA

获取模板源码

可选以下三种方式 Optional

  1. git clone https://github.com/spring-guides/gs-spring-boot.git
  2. https://github.com/spring-guides/gs-spring-boot/archive/master.zip
  3. https://start.spring.io/

使用Intellij IDEA 开发指南

  1. 运行Intellij IDEA,点击 ’ Create New Project ’

使用Maven构建Spring Boot 第一课之Hello world 程序_第1张图片

2.如图所示:

使用Maven构建Spring Boot 第一课之Hello world 程序_第2张图片

3.如图所示:

使用Maven构建Spring Boot 第一课之Hello world 程序_第3张图片

4.如图所示:
使用Maven构建Spring Boot 第一课之Hello world 程序_第4张图片

5.如图所示:

使用Maven构建Spring Boot 第一课之Hello world 程序_第5张图片

6.点击Finish之后可以看到如下所示:

使用Maven构建Spring Boot 第一课之Hello world 程序_第6张图片

7.点击运行后可以看到这样的界面:

http://127.0.0.1:8080

使用Maven构建Spring Boot 第一课之Hello world 程序_第7张图片

8.创建一个叫做HelloController的java 类

使用Maven构建Spring Boot 第一课之Hello world 程序_第8张图片

package com.xingyun.springbootwithmavensample;

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

@RestController
public class HelloController {
  @RequestMapping(value =/hi",method = RequestMethod.GET)            
  public String index(){
       return "Hello World , Spring Boot";
  }
 }

重新运行,打开链接:http://127.0.0.1:8080/hi

使用Maven构建Spring Boot 第一课之Hello world 程序_第9张图片

源码下载地址:https://gitee.com/xingyuncode/SpringBootWithMavenSample

你可能感兴趣的:(#,Spring,Boot)