我在jsp中使用它作为面包屑
<div class="breadcrumb">
<c:url var="home" value="http://localhost:8080/" />
<c:forEach var="bc" items="${breadcrumb.tree}" varStatus="status">
<c:choose>
<c:when test="${status.index==0}">
<a href="/">${home}</a>
</c:when>
<c:when test="${status.index == fn:length(breadcrumb.tree)-1 && status.index!=0}">
»${bc.name}
</c:when>
<c:otherwise>
<a href="${bc.value}">»${bc.name}</a>
</c:otherwise>
</c:choose>
</c:forEach>
</div>
我得到了这个——http://localhost:8080/ »products
但我想要家»产品
谁能告诉我会怎样。