Reputation: 151
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?
Upvotes: 1
Views: 6450
Reputation: 1
spring-from.tld
path in org.springframework.web.servlet-version.jar
meta-inf
org.springframework.web.servlet.version.jar
dependent on org.springframework.web-version.jar
just download both jars and paste them in lib folder.
In jsp add the below line
<%@ taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
<form: then it will show all tags or press ctrl with space bar.
Upvotes: 0
Reputation: 403591
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.
Upvotes: 2