Affects: 6.x


In the Spring 6 documentation there is no section on TagLib JSP spring.tld. In the Spring 4 documentation there still was: https://docs.spring.io/spring-framework/docs/4.1.x/spring-framework-reference/html/spring.tld.html

This taglib still works and can be used in JSP, so in my opinion it should be documented. Especially the "message" tag, which I use quite often in my application.

<%@taglib prefix="s" uri="http://www.springframework.org/tags" %>
<s:message code="mes.code"/>

Unless it is no longer developed and will be removed? I couldn't find information about that in the documentation either.

Comment From: sbrannen

That's correct: the reference manual no longer includes detailed documentation for spring.tld.

However, the Spring’s JSP Tag Library section of the reference manual provides the following guidelines to acquire further information.

The spring.tld tag library descriptor (TLD) is included in the spring-webmvc.jar. For a comprehensive reference on individual tags, browse the API reference or see the tag library description.

For example, Javadoc for the message tag can be found here.

In light of that, I am closing this issue.