Is there a way to remove the class field in a JSON converter?
Example:
import testproject.*
import grails.converters.*
emp = new Employee()
emp.lastName = "Bar"
emp as JSON
as a string is
{"class":"testproject.Employee","id":null,"lastName":"Bar"}
I'd prefer
{"id":null,"lastName":"Bar"}
Is there a way to add one more line of code at the end to remove the class field?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…