一.创建一个项目:IDE为IDEA
二.新建一个Controller类:
toly1994.com.toly01.controller.HelloSpringBoot
@RestController
public class HelloSpringBoot {
@RequestMapping(value = "/hello", method = RequestMethod.GET)
public String say() {
return "HelloSpringBoot";
}
}
注解的方式还有一种,和上面的效果一样
@RestController
public class HelloSpringBoot {
@GetMapping("/hello")
public String say() {
return "HelloSpringBoot!";
}
}
注解说明:
@RestController:处理http请求:等同于@Controller+@ResponseBody
@RequestMapping: 请求的相关参数、url映射 value = "访问的路由" method = 请求方法
@GetMapping:以GET方式请求 相当于对@RequestMapping配置的缩写
三.url的其他形式:
类和方法都有value时
@RestController
@RequestMapping(value = "/hello")
public class HelloSpringBoot {
@GetMapping("/say")
public String say() {
return "HelloSpringBoot!!";
}
}
配置多url对1映射:
@RestController
public class HelloSpringBoot {
@GetMapping({"/hello", "/hi"})
public String say() {
return "HelloSpringBoot!!!";
}
}
四.配置文件使用:
修改配置方式1:src\main\resources\application.properties
#修改端口号
server.port=8081
#端口号后需额外添加字符
server.servlet.context-path=/toly01
toly1994.com.toly01.controller.HelloSpringBoot
@RestController
public class HelloSpringBoot {
@GetMapping("/hello")
public String say() {
return "HelloSpringBoot!";
}
}
修改配置方式2:src\main\resources\application.yml
server:
port: 8081
servlet:
context-path: /springboot
个人比较喜欢yml
五.切换配置文件
src\main\resources\application-dev.yml
server:
port: 8081
src\main\resources\application-prod.yml
server:
port: 8080
src\main\resources\application.yml:根据active:来切换配置文件
spring:
profiles:
active: prod
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/101546.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...