This repository has been archived by the owner on Nov 18, 2020. It is now read-only.
fmbenhassine
released this
15 Nov 22:19
·
2 commits
to master
since this release
This release is a major version and requires Java 11 as a minimum Java version. It comes with the following enhancements:
- Issue #25: Prefix database properties with
org.jeasy.props
- Issue #24: Replace JUL with SLF4J
- Issue #23: Introduce
TypeConversionException
inTypeConverter
API - Issue #22:
TypeConverter
interface should be moved toorg.jeasy.props.api
package
Migrating from v3.1 to v4.0
- Database properties (
db.driver
,db.url
, etc) should now be prefixed withorg.jeasy.props
- If you use a custom
TypeConverter
, you need to update your imports as this API has been moved to theorg.jeasy.props.api
package (Issue #22) - If you use a custom
TypeConverter
, you can now throw aTypeConversionException
instead of a runtime exception (Issue #23) to signal any type conversion issue