public class ClassName implements Serializable {
private static final long serialVersionUID = 1L;
private Map<String, Object> variableName;
In the above code, the sonarQube is giving CRITICAL level issue because of variableName. I know Object is not serializable but do anyone have any solution to avoid or resolve this issue.