ikvenu2000
ikvenu2000

Reputation: 151

download spring taglibs

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

Answers (2)

raviteja kanchi
raviteja kanchi

Reputation: 1

  1. spring-from.tldpath in org.springframework.web.servlet-version.jar meta-inf

  2. org.springframework.web.servlet.version.jar dependent on org.springframework.web-version.jar
    just download both jars and paste them in lib folder.

  3. 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

skaffman
skaffman

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

Related Questions