spring boot 三分钟构建restful应用

step01:

登录spring官方构建网页:http://start.spring.io/ 

spring boot 三分钟构建restful应用_第1张图片

step02:将maven项目解压后导入eclipse如果没有安装maven 运行压缩后的文件夹中的mvnw.cmd即可自动安装(maven简单入门攻略:http://blog.csdn.net/baidu_27622303/article/details/53957075)

step03:在src.main/java下新建controller包并创建controller

package com.example.hello.controller;

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

@RestController
public class HelloController
{
	@RequestMapping("/hello")
	public String index()
	{
		return "hello world";
	}
}
step04:启动spring Boot  运行HelloApplication.java即可在eclipse中启动(生产环境可以采用maven install  将项目打成jar后运行java -jar  ***.jar来启动 )

step05:http://localhost:8080/hello (访问)


至此一个简单的restful服务构建完毕。

你可能感兴趣的:(java)