I have an API which take a @RequestParam of type String. Now I want to change the type to List. There are some existing clients who use this endpoint and request param. Will the change be considered backward compatible?
Existing : @RequestParam("test") test: String
New : @RequestParam("test") test: List<String>