Overview
We noticed the value of the acceptedRoles changed.
With spring boot version 3.3.1 and before the size of the acceptedRoles list is 0, but after upgrading to 3.3.2 and above the value returned is 1.
TestController.java
@Value("#{T(java.util.Arrays).asList('${person.acceptedRoles}')}")
private List<String> acceptedRoles;
application.properties
demo.zip