Why does this JSF Tag
<h:link outcome="hello/sayhi">Spring MVC</h:link>
<h:outputLink value="hello/sayhi" >Spring MVC</h:outputLink>
becomes
<span>Spring MVC</span>
<a href="hello/sayhi">Spring MVC</a>
in the browser so that the <span>
is completely useless?
How can I get h:link working so it outputs the correct link including the context path?