Currently, I am working on a programming project where I have a specific class.
During the process of converting code from Java to JSON, I have a requirement for the key name to be the same as the OGNL (Object Graph Navigation Language) name. For example:
package com.xx.yy;
public Class A{
private String name;
}
As a result, the desired output in JSON format would look like this:
{
"A.name":"value"
}