Releases: tminglei/form-binder-java
Releases · tminglei/form-binder-java
v0.13.4
- upgrade jackson-databind to v2.9.9
v0.13.3
- enhance mapping/constraint/processor's
toString
- extract meta names to constants (not visible to end user)
v0.13.1
- rename some built-in mapping definitions from
v-*
to *-v
, e.g. vInt
/vLong
to intv
/longv
. (!!! broken changes)
v0.13.0
- add transform to bean support
- more graceful ext/attachment case (p.s. method $ext(..) in Mapping was removed) (!!! broken changes).
- rename method
mapTo
of Mapping to map
(!!! broken changes)
- rename method
node
of BindObject to obj
(!!! broken changes)
v0.12.0
Refactoring
- re-organize package structure and hide internal methods/properties from outside usages
- intelligently detect label key and remove
i18n
option (p.s. labels starting with @
will be used as message key)
- rename option items
ignoreEmpty/touched
to skipUntouched/touchedChecker
(!!! broken changes)
v0.11.0
- add meta support
- add ext info support
v0.10.4
Add has
method to BindObject
v0.10.2
- added a helper method to
Simple
, which can convert request.getParemeterMap
Map[String, String[]] to data
Map[String, String] directly.
- some minor bug fix, code refactor and enhancement
v0.10.1
A quick enhancement release.
Removed Binding
helper class from Simple.java
, and change method name fb
to attach
.
(This should simplify usage to some degree.)