新手先看视频,创建spring initial,dependies一定要有web
1.一定要在启动Application run()的同级目录下建立文件,正常会建立四个文件
dao controller service pojo
2.Controller层
作用:调用业务,接收前端参数
@RestController-------------与字符串返回有关
@RequestMappering-----------与页面输出调用有关
第一个Helloworld的项目表
新建controller文件夹,和里面的类Controller
Controller中的代码贴上
package com.example.demo.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class Controller {
@RequestMapping("/hello")
public String hello(){
return "Hello";
}
}
3.结果展示
启动application中public static void main()跑动,然后去如下网址查看(8080是默认端口,/hello是我requertmappering自己设置的)