- Notifications
You must be signed in to change notification settings - Fork 38.9k
Closed
Labels
in: webIssues in web modules (web, webmvc, webflux, websocket)Issues in web modules (web, webmvc, webflux, websocket)type: enhancementA general enhancementA general enhancement
Milestone
Description
Issued #33023 (with commit e622555) updated Spring's form tags to use the response encoding in most places; however, a few other Spring form tags (such as <form:select> and <form:options>) still ignore the response character encoding.
Examples:
<%-- Select items as List --%> <form:select path="p" items='${["café", "café crème"]}' /> <%-- Select items as Map --%> <form:select path="p" items='<%= java.util.Map.of("café", "café au lait") %>' /> <%-- Options items as Map --%> <form:select path="p"> <form:options items='<%= java.util.Map.of("café", "café au lait") %>' /> </form:select>Metadata
Metadata
Assignees
Labels
in: webIssues in web modules (web, webmvc, webflux, websocket)Issues in web modules (web, webmvc, webflux, websocket)type: enhancementA general enhancementA general enhancement