Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
内置 JSON 对象的 grails 并没有削减 CPU 使用率。
Jackson 做得更好,但我喜欢 grails 设置“as JSON”语法的方式。
有没有办法让我配置 grails 来替换默认的 JSON 实现,使其成为我自己构建的东西(例如,Jackon 包装器)?
当然,JSON 只是 class grails.converters.JSON。所以基本上,你可以导入你自己的myapp.converters.JSON
grails.converters.JSON
myapp.converters.JSON
import myapp.conv.JSON def blabla() { render [bla:bla, [blou:blou]] as JSON }
moskiteau 的回答对于我提出问题的方式是正确的。
对于我的用例,我需要查看 HttpBuilder.parsers