一、在浏览器中打开http://start.spring.io
在Artifact中输入spring-boot-sample-helloworld,点击“Switch to the full version.”,勾选”web”,然后点击“ Generate Project alt +”按钮,把文件保存到本地某个位置
二、下载文件导入eclips
1、解压下载的文件到某个文件夹;
2、在eclips中导入工程file->import->Import Existing Maven Projects–>Select Maven projects–>finish
3、在eclips中运行工程
三、添加HelloController
1、在包com.example中点击右键,选择new->class,再在Name中输入HelloController
3、增加方法
@RequestMapping(“/”)
public String helloworld(){
return “Hello world!”;
}
@RequestMapping(“/hello/{name}”)
public String hellName(@PathVariable String Name){
return “Hello “+Name;
}
4、保存Ctrl+S
5、自动添加引用 Ctrl+SHift+O
6、整个HelloController文件如下
package com.example;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloController {
@RequestMapping(“/”)
public String helloworld(){
return “Hello world!”;
}
@RequestMapping(“/hello/{name}”)
public String hellName(@PathVariable String name){
return “Hello “+name;
}
}
7、启动测试
在浏览器中依次输入
http://localhost:8080/hello/你好
转载请注明来源网站:blog.ytso.com谢谢!
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/14805.html