I want to use spring taglibs in UI layer in my project. Can anyone let me know where from i need to download the spring taglibs?
A:
They're shipped as part of the Spring Framework distribution, you can find them packed inside the dist/org.springframework.web.servlet
JAR file.
You don't usually have to unpack them, though, since the the appserver and IDE should auto-discover them inside the JAR file.
skaffman
2010-10-25 13:48:26
Yes, Its working. Just need to add the following in the jsp page.
ikvenu2000
2010-10-27 06:16:37
Yes, Its working. Just need to add the following in the jsp page<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>and the spring related jar should be in classpath.No need to add the .tld files into WEB-INF/taglib folder as we do in older versions.
ikvenu2000
2010-10-27 06:18:18