|
@@ -9,8 +9,8 @@ import org.springframework.web.bind.annotation.*;
|
|
|
public class PoiController {
|
|
public class PoiController {
|
|
|
|
|
|
|
|
@GetMapping("/list")
|
|
@GetMapping("/list")
|
|
|
- public String list(@RequestParam(defaultValue = "1") int i,@RequestParam(defaultValue = "1") int j){
|
|
|
|
|
- String test = "i"+i+" "+"j"+j;
|
|
|
|
|
|
|
+ public String list(@RequestParam(defaultValue = "1") int pageNum,@RequestParam(defaultValue = "1") int pageSize){
|
|
|
|
|
+ String test = "pageNum:"+pageNum+" "+"pageSize"+pageSize;
|
|
|
log.info(test);
|
|
log.info(test);
|
|
|
return test;
|
|
return test;
|
|
|
}
|
|
}
|