Hello,
When we want to assign a default value to a function, we usually use it as follows.
public List<Data> getAllData(int page=0, int size=100)
However, this is not the case with @RequestParam with SpringBoot.
public List<Data> getAllData…