JsonUtil.java 340 Bytes
package com.srh.api.utils;

import com.fasterxml.jackson.databind.ObjectMapper;
import lombok.SneakyThrows;

public class JsonUtil {
    private JsonUtil() {
    }

    @SneakyThrows
    public static String toJson(Object object) {
        ObjectMapper mapper = new ObjectMapper();
        return mapper.writeValueAsString(object);
    }
}