基于Spring Boot框架的分页查询和文件上传
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
import java.util.List;
import java.util.Map;
@RestController
@RequestMapping("/api/v1/users")
public class UserController {
private final UserService userService;
public UserController(UserService userService) {
this.userService = userService;
}
@GetMapping("/list")
public List<User> getUserList(@RequestParam Map<String, String> params) {
int page = Integer.parseInt(params.get("page"));
int size = Integer.parseInt(params.get("size"));
return userService.getUserList(page, size);
}
@PostMapping("/upload")
public String uploadFile(@RequestParam("file") MultipartFile file) {
return userService.uploadFile(file);
}
}
在这个代码实例中,我们定义了一个UserController,它提供了两个HTTP请求处理方法:一个用于处理分页查询请求,另一个用于处理文件上传请求。这两个方法都通过构造器注入了UserService,以实现业务逻辑的分离和复用。这种基于Spring Boot框架的REST API设计模式是现代Web开发中推荐的实践。
评论已关闭