创建Spring Boot微服务项目

创建一个测试用的微服务项目HelloWorld

创建项目

Alt text
Alt text
Alt text
Alt text

编写服务代码

@RestController
public class HelloWorld {

	@RequestMapping("/hello")
	public String Hello(@RequestParam String name){
		return "你好!" + name + ",这是一个微服务。";
	}
}

编辑配置文件application.properties:

spring.application.name=spring-cloud-provider-01
server.port=9000

Alt text

测试运行

Alt text

源码

Github仓库:https://github.com/sunweisheng/spring-cloud-example

posted on 2019-09-30 01:08  维晟  阅读(1494)  评论(0编辑  收藏  举报

导航