1.创建一个Spring Starter Project工程(new --> Spring Starter Project)

2.选择自己需要的依赖,因为想要通过REST方式来验证是否成功创建,所以勾选了web(会在pom.xml文件中看到该依赖内容);

然后点击next-->Finish即可

3.此时就可以创建完了,下面是程序入口

package com.fengxm;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication
public class FirstspringbootApplication { public static void main(String[] args) {
SpringApplication.run(FirstspringbootApplication.class, args);
}
}

4.写一个HelloController类,用于图形验证

package com.fengxm;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController; @RestController
// 等同于同时加上了@Controller和@ResponseBody
public class HelloController {
// 访问/hello或者/hi任何一个地址,都会返回一样的结果
@RequestMapping(value = { "/hello", "/hi" }, method = RequestMethod.GET)
public String say() {
return "hi you!!!";
}
}

5.在FirstspringbootApplication.java类上右键,Run As -->Spring Boot App,执行(默认端口为8080)

在浏览器中输入连接http://localhost:8080/hello或http://localhost:8080/hi,在页面显示如下

最新文章

  1. 0033 Java学习笔记-反射-初步1
  2. C语言 · 2的次幂表示
  3. MySQL基础(非常全)
  4. PO VO BO DTO POJO DAO(转)
  5. AutoMapper中的Map和DynamicMap——高手注重细节,思考和总结
  6. UVALive 4222 Dance 模拟题
  7. Delphi- ini文件的读写操作
  8. (转)ASP.NET QueryString乱码解决问题
  9. C# 单向链表数据结构 (一)
  10. dev XtraMessageBox按钮显示中文
  11. java开发中经典的三大框架SSH
  12. eclipse maven项目中使用tomcat插件部署项目
  13. Unity如何管理住Android 6.0 调皮的权限
  14. Thymeleaf入门(一)——入门与基本概述
  15. 决策树 Decision Tree
  16. 并发研究之CPU缓存一致性协议(MESI)
  17. odoo 基于SQL View视图的model类
  18. 洛谷.4015.运输问题(SPFA费用流)
  19. php curl-class post
  20. Python学习-25.Python中的分数

热门文章

  1. [Asp.Net web api]基于自定义Filter的安全认证
  2. 关于TFS2010 远程无法创建团队项目的若干问题总结
  3. easyDarwin--开源流媒体实现
  4. Android之LogUtil
  5. [转]室友靠打游戏拿30万offer,秘密竟然是……
  6. 第十一章 自己实现一致性hash算法
  7. go语言基础之复合类型
  8. unity 静态合批
  9. C#匿名方法与Delegate类型转换错误
  10. c++call back