mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 20:19:06 +00:00
The two main changes are: - A setter is no longer required when binding from a comma-separated list as long as the target list is mutable. The binder clears the list and then re-populates it. - A setter is now required for arrays, previously the values coming from configuration properties where merged into an existing array. Now, the array is replaced. Closes gh-43138