According to the TLD or attribute directive in the tag file, the attribute verb does not accept any expressions

I have the following index page:

<form action ="home.jsp"> Insert any v1 form : <input type ="text" name="v1"/> <input type ="submit" value="click"/> </form> 

as well as home.jsp:

 <%@taglib uri="WEB-INF/mytag.tld" prefix="mak"%> <mak:you verb="${param.v1}"></mak:you> 

I get this error

According to the TLD or attribute directive in the tag file, the attribute verb does not accept any expressions

can anyone help?

+4
source share
1 answer

Go to the verb attribute definition in mytag.tld and enable expression support:

  <attribute> <name>verb</name> <required>true</required> <rtexprvalue>true</rtexprvalue> </attribute> 
+17
source

Source: https://habr.com/ru/post/1501106/


All Articles