Spring Boot入门HelloWorld程序
使用Eclipse EE 中的 Spring Tool插件,完成 第一个Spring Boot应用程序的创建。
一、安装Spirng Tool插件
在 Eclipse EE Oxygen版本,安装“Spring Tool Suit”插件。
如果Eclipse 中已经安装了这个插件,本步骤,可以跳过,直接看第二步骤。
(1)点击菜单栏“Help”——"Eclipse Marketplace……"
(2)搜索或者找到"Spring Tool"插件安装,点击"install"
(3)点击"Confirm",到下一步。
(4) 点击 接受协议 “I accept ……”
(5)点击 "Finish",等待安装完成。
二、创建Spring Boot 的Helloword工程
(1)点击 “File/New/Other”
(2)选择点击“Spring Boot/Spring Starter Project”
(3)勾选“web”
(4)点击 "Next"
创建完成后,工程结构如下:
三、运行项目
(1)在项目右键,点击“Run as”
可以看到,项目启动了:
tomcat 服务器也启动了,打开浏览器,在地址栏中,输入: http://localhost:8080
四、添加处理请求的 controller
(1)新建一个 HelloController类
给该类加上 @RestController 注解,添加一个方法,加上@RequestMapping("/")注解,用于接收处理所有请求。
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 HelloController { 8 9 @RequestMapping("/") 10 public String hello() { 11 return "Welcome to start SpringBoot!"; 12 } 13 14 }
(2)右键运行 Spring Boot App
(3)在浏览器访问: http://localhost:8080
综上,成功的,在Eclipse EE 中安装好 Spring Tool插件,使用Spring Tool插件创建 "Spring Starter Project"。
我们可以发现,使用这个插件,创建 Spring Boot 应用,更加的简单容易。
Donate捐赠
如果我的文章帮助了你,可以赞赏我6.66元,请我吃个肉夹馍 :)
(微信) (支付宝)
微信/支付宝 扫一扫