БТ
Size: a a a
БТ
AU
AU
KB
C
C
public ... controllerMethod(Model model, HttpServletRequest request) {
String vid = request.getParameter("vid");
Boolean isSearchSupplierProducts = StorePropertyFactory.getSearchSuppliedProducts().get(vid);
model.put("isSearchSupplierProducts", isSearchSupplierProducts); (или putAttribute)
в jsp<c:choose>Читай про jstl.
<c:when test="${isSearchSupplierProducts}">
<span>supplied</span>
</c:when>
<c:otherwise>
<span>not supplied</span>
</c:otherwise>
</c:choose>
KB
public ... controllerMethod(Model model, HttpServletRequest request) {
String vid = request.getParameter("vid");
Boolean isSearchSupplierProducts = StorePropertyFactory.getSearchSuppliedProducts().get(vid);
model.put("isSearchSupplierProducts", isSearchSupplierProducts); (или putAttribute)
в jsp<c:choose>Читай про jstl.
<c:when test="${isSearchSupplierProducts}">
<span>supplied</span>
</c:when>
<c:otherwise>
<span>not supplied</span>
</c:otherwise>
</c:choose>