SpringBoot学习之HelloWorld

SpringBoot学习之HelloWorld

老习惯,学习一门新的技术或语言都要从helloworld开始。

手写笔记

实际操作

==通过idea进行快速创建,学校的校园网不能连上外网,失败。==

==使用自己的热点成功了==

SpringBoot-HelloWorld

文件介绍

这三个标红的圈从上到下

  • Application:项目的起始位置,不用进行修改
  • application.properties:配置文件,已经做了很多的默认配置
  • test:下的application,是测试程序

编写程序的时候是在Application文件的同级文件夹下编写我们的

  • controller
  • service
  • mapper
  • pojo

等等

HelloWorld的实现

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.dwx.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
public class HelloWorld {
@RequestMapping("/hello")
@ResponseBody
public String HelloWold(){
return "hello";
}
}

Donate
  • Copyright: Copyright is owned by the author. For commercial reprints, please contact the author for authorization. For non-commercial reprints, please indicate the source.

扫一扫,分享到微信

微信分享二维码
  • Copyrights © 2015-2023 dwx
  • Visitors: | Views:

请我喝杯咖啡吧~

支付宝
微信