Soham
Soham

Reputation: 47

Spring tag(form : form) undefined in jsp though I am using spring taglib. Why?

<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>  
<html>
<body>
<h2>Hello World!</h2>

<form :form>
</form : form>
</body>
</html>

I have tried in maven project still I got the same message.

Upvotes: 1

Views: 116

Answers (1)

Alien
Alien

Reputation: 15878

This is happening because of spaces in between spring <form> tag.

Remove space between form tags like below.

Change

<form :form> to <form:form>

And

</form : form> to </form:form>

Upvotes: 1

Related Questions