springboot怎么接收get请求携带的路径参数
时间: 2024-09-29 20:01:32 浏览: 50
SpringBoot请求参数接收方式
5星 · 资源好评率100%
在Spring Boot中,你可以通过@PathVariable注解来接收GET请求携带的路径参数。这个注解通常用于Controller类的方法上,对应URL路径的一部分。下面是一个简单的例子:
```java
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class MyController {
@GetMapping("/users/{username}")
public String getUser(@PathVariable("username") String username) {
// 这里,username就是从URL "/users/johndoe" 中的 "johndoe"
return "Hello, " + username;
}
}
```
在这个例子中,`/users/{username}`定义了一个路由,其中`{username}`是一个路径变量,它会在实际请求如"http://localhost/users/johndoe"中被替换为实际的用户名。
阅读全文