We noticed the value of the acceptedRoles changed

TestController.java

@Value("#{T(java.util.Arrays).asList('${person.acceptedRoles}')}")
private List<String> acceptedRoles;

application.properties

person.acceptedRoles=

With spring boot version 3.3.1 and before the value returned is 0 but after upgrading to 3.3.2 and above the value returned is 1

@lalithaawgu

Comment From: wilkinsona

SpEL is a Spring Framework feature. Please report this in their issue tracker, providing a minimal sample that reproduces the problem. As things stand it's not clear, to me at least, what's returning the value 0 when previously it was 1.