mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
8b545f47bd
Prior to this change, the `UrlTag` would simply append the remote context and the path value in case of a context relative URL. The following code snippet would output "//foo": ``` <spring:url value="/foo" context="/" /> ``` This change now removes trailing slashes in remote context to avoid this. Issue: SPR-12782