图像src连接到ftp服务器。我不知道在哪些方面可以加载ftp服务器中的映像。
JSP方
<c:choose>
<c:when test="${i.objThomasian.entryYear <= 1999}">
<img src="path in the ftp server" class="img-fluid" id="imageholder" onload="loadImageOldEntryYearStudent('${i.id}')"/>
</c:when>
<c:otherwise>
<img src="path in the ftp server" class="img-fluid" id="imageholder" onload="loadImageNewEntryYearStudent('${i.objThomasian.entryYear},${i.id}')"/>
</c:otherwise>
</c:choose>