You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Slf4j
public class PageableTest {
@Test
void test() throws JsonProcessingException {
var page = new PageImpl<>(List.of(""));
String valueAsString = new ObjectMapper().writeValueAsString(page);
log.info("{}", valueAsString);
}
}
Is this intentional?
Background: this change breaks our controllers with Page types, I'm sure I'm not alone with this use case, see eg. (this well known tutorial site).
The text was updated successfully, but these errors were encountered:
This fails on main but works on 3.1:
Is this intentional?
Background: this change breaks our controllers with Page types, I'm sure I'm not alone with this use case, see eg. (this well known tutorial site).
The text was updated successfully, but these errors were encountered: