Alexander Suraphel
Alexander Suraphel

Reputation: 10623

Spring/Grails; How exactly are property editors used?

In the articles I have seen, the authors only seem so discuss creating custom property editors and registering them. How do I actually use them? Are they only automatically used during data-binding?

Upvotes: 0

Views: 47

Answers (1)

Dónal
Dónal

Reputation: 187399

Property editors are used automatically during databinding, but databinding was radically changed in Grails 2.3, and implementing property editors is no longer the recommended way to customize databinding.

Upvotes: 1

Related Questions