We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a75b07d commit 2b44052Copy full SHA for 2b44052
README.md
@@ -98,12 +98,12 @@ Aligned links:
98
99
Multiple tables on the same page:
100
101
-On @Controller
+On your @Controller
102
```java
103
@RequestMapping("/users")
104
public String list(ModelMap model, @Qualifier("foo") Pageable first, @Qualifier("bar") Pageable second){
105
model.addAttribute("page", userService.find(first));
106
- model.addAttribute("page", userService.find(second));
+ model.addAttribute("barPage", userService.find(second));
107
108
return "users/list";
109
}
0 commit comments