Maison > Questions et réponses > le corps du texte
J'ai un champ JSONArray
dans l'objet :
@Column(name = "_history", columnDefinition = "JSON") @Convert(converter = JSONArrayConverter.class) private JSONArray history;
Voici le code pour JSONArrayConverter
:
@JsonSerialize @Converter(autoApply = true) public class JSONArrayConverter implements AttributeConverter<JSONArray, String> { public static final Logger LOGGER = LoggerFactory.getLogger(JSONObjectConverter.class); @Override public String convertToDatabaseColumn(JSONArray array) { LOGGER.debug(array.toString()); if (array == null) return new JSONArray().toString(); String data = null; try { data = array.toString(); } catch (final Exception e) { LOGGER.error("JSON writing error", e); } return data; } @Override public JSONArray convertToEntityAttribute(String data) { if (_EMPTY.equals(data) || data == null || "[]".equals(data)) return new JSONArray(); JSONArray array = null; try { array = new JSONArray(data); } catch (final Exception e) { LOGGER.error("JSON reading error", e); } return array; } }
Le problème est que lors de la demande de l'objet à la base de données MySQL (l'historique est une colonne JSON et contient des données), Spring Boot le renvoie vide :
"history": {}
P粉4968866462023-09-13 10:53:10
Enfin, j'ai résolu le problème.
<dependency> <groupId>io.hypersistence</groupId> <artifactId>hypersistence-utils-hibernate-60</artifactId> <version>3.4.3</version> </dependency>
Tout d’abord, ajoutez le référentiel ci-dessus à pom.xml
. Changez ensuite le code comme suit :
@Column(name = "_history", columnDefinition = "json") @Type(JsonType.class) private List<Map<String, Object>> history = new ArrayList<>();
Ensuite, tout fonctionne bien.