fix: 修复 JDK17+ 环境下测试用例 PagingAndSortingQueryParamsTests#testGson 不通过的问题

该用例在 JDK17+ 环境下使用 gson 进行序列化时,报 `com.google.gson.JsonIOException: Failed making field 'java.time.LocalDateTime#date' accessible; either increase its visibility or write a custom TypeAdapter for its declaring type`。

See: https://github.com/google/gson/blob/main/Troubleshooting.md#reflection-inaccessible
This commit is contained in:
zhouxy108 2025-04-19 02:01:32 +08:00
parent c6df5cd925
commit 34076294a7

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2024 the original author or authors. * Copyright 2024-2025 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -184,24 +184,34 @@ public class PagingAndSortingQueryParamsTests {
assertThrows(IllegalArgumentException.class, () -> queryParams.buildPagingParams()); // NOSONAR assertThrows(IllegalArgumentException.class, () -> queryParams.buildPagingParams()); // NOSONAR
} }
static final DateTimeFormatter dateFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd");
@Test @Test
void testGson() throws Exception { void testGson() {
Gson gson = new GsonBuilder() Gson gson = new GsonBuilder()
.registerTypeAdapter(LocalDate.class, new TypeAdapter<LocalDate>() { .registerTypeAdapter(LocalDate.class, new TypeAdapter<LocalDate>() {
@Override @Override
public void write(JsonWriter out, LocalDate value) throws IOException { public void write(JsonWriter out, LocalDate value) throws IOException {
out.value(dateFormatter.format(value)); out.value(DateTimeFormatter.ISO_DATE.format(value));
} }
@Override @Override
public LocalDate read(JsonReader in) throws IOException { public LocalDate read(JsonReader in) throws IOException {
return LocalDate.parse(in.nextString(), dateFormatter); return LocalDate.parse(in.nextString(), DateTimeFormatter.ISO_DATE);
} }
}) })
.registerTypeAdapter(LocalDateTime.class, new TypeAdapter<LocalDateTime>() {
@Override
public void write(JsonWriter out, LocalDateTime value) throws IOException {
out.value(DateTimeFormatter.ISO_LOCAL_DATE_TIME.format(value));
}
@Override
public LocalDateTime read(JsonReader in) throws IOException {
return LocalDateTime.parse(in.nextString(), DateTimeFormatter.ISO_LOCAL_DATE_TIME);
}
})
.create(); .create();
try (SqlSession session = sqlSessionFactory.openSession()) { try (SqlSession session = sqlSessionFactory.openSession()) {
AccountQueryParams params = gson.fromJson(JSON_STR, AccountQueryParams.class); AccountQueryParams params = gson.fromJson(JSON_STR, AccountQueryParams.class);
@ -212,6 +222,7 @@ public class PagingAndSortingQueryParamsTests {
List<AccountVO> list = accountQueries.queryAccountList(params, pagingParams); List<AccountVO> list = accountQueries.queryAccountList(params, pagingParams);
long count = accountQueries.countAccount(params); long count = accountQueries.countAccount(params);
PageResult<AccountVO> accountPageResult = PageResult.of(list, count); PageResult<AccountVO> accountPageResult = PageResult.of(list, count);
log.info(gson.toJson(accountPageResult)); log.info(gson.toJson(accountPageResult));
assertEquals(Lists.newArrayList( assertEquals(Lists.newArrayList(
@ -226,7 +237,7 @@ public class PagingAndSortingQueryParamsTests {
} }
AccountQueryParams queryParams = gson.fromJson(WRONG_JSON_STR, AccountQueryParams.class); AccountQueryParams queryParams = gson.fromJson(WRONG_JSON_STR, AccountQueryParams.class);
assertThrows(IllegalArgumentException.class, () -> queryParams.buildPagingParams()); // NOSONAR assertThrows(IllegalArgumentException.class, queryParams::buildPagingParams);
} }
} }