springboot路径为空情况
@GetMapping({"/f1","/f1/{page}/{pageSize}"})
String f1(@PathVariable(required = false) String page,@PathVariable(required = false) String pageSize){
// List<Student> students = studentMapper.selectList(null);
// System.out.println(students);
System.out.println(page);
System.out.println(pageSize);
return "213";
}
2.MVVM原理
vue的双向绑定原理及实现 - ____chen - 博客园
3.注解上可赋值final类型的变量
@ApiModelProperty(value = "日",example = TimeUtil.FORMAT_DAY)
private String day;
4.FTP需要设置连接超时时间和数据传输超时时间,不然会无限等待