4.8 Breaking Changes Guide
When upgrading to 4.8, there are some breaking changes that need to be accounted for.
Method Signature for matches() changed
The 4.8 segmentation Target matches()
method no longer uses HttpServletRequest request
as a parameter. So, you must modify the method by removing the parameter.
View interface map values' type changed
The return type for map values (e.g. getAttributes()
) needs to be adjusted to Iterable<? extends Map <String, ?>>
.
Previous Topic
Adding 4.8 Features Guide