I hace this piece of code in my JSP:
<a href="<c:out value="${item.urlForOnline}" />" target="_blank"><c:out value="${item.urlForOnline}" /></a>
The value of ${item.urlForOnline} is www.google.com
But when I click to the link the browser is redirected to http://127.0.0.1:7001/myApp/search/www.google.com
I set the value ot the item object in the spring controller:
model.addAttribute("item", item);