3

I was looking to find a GWT POJO-JSON mapper. In responses to another question and by Googling around I found following solutions:

My question is that does any of these (or any other) solutions has significant performance gain/lose or any other considerable advantages or disadvantages?

Community
  • 1
  • 1
Ali Shakiba
  • 20,549
  • 18
  • 61
  • 88

2 Answers2

3

AutoBeans get compiled down to Overlay Types when used in client-side code, so they have all of the advantages, and are much easier to write.

Jason Hall
  • 20,632
  • 4
  • 50
  • 57
1

GWT Overlay Types have big performance gain, because GWT compiler can optimize and inline calls to field value to native JS calls. Look at example of obfuscating of overlay types.

Bartek Jablonski
  • 2,649
  • 24
  • 32