Releases: jzheng2017/resultset-mapper
Releases · jzheng2017/resultset-mapper
v1.6.2
v1.6.1
v1.6.0
Changelog
- Added caching for reflection data. It will now first try to fetch the data from a cache. If it is not present in the cache it will fetch it through reflection and save it in the cache for later use.
- Bumped dependency versions
v1.5.0
Changelog
- Added support for attribute converting. Allowing two incompatible data types to work during mapping.
v1.4.0
Changelog
- Added support for getting declared fields from super classes
v1.3.0
Changelog
- Change library Java version to
11for LTS
v1.2.0
Changelog
- Added
@Ignoreannotation. This annotation can be used on fields. By using@Ignoreannotation on a field it lets theResultSetMapperknow that it can skip this field when mapping.
v1.1.0
Changelog
- Added
@SuppressWarningsannotation, allowing suppression of warning messages when mapping object fails
v1.0.5
Changelog
mapnow throwsMappingFailedExceptionwhen mapping fails for some reason- Fixed bug
@Columnannotation applicable to methods
v1.0.4
- Upgrade from
JDK 8toJDK 15