'Addition image JSP problem. How to solve it?

I have a JSP page where I need to add an image, but for some reason it is not displayed

The path to the image looks like this:

D:\Server\apache-tomcat-9.0.56\webapps\wtpwebapps\epamtc-final-project-online-shop\productCategoryImg\Vstavlennoe_izobrazhenie_-_11_2.png

<c:if test="${ empty exception_msg}">
    <c:forEach var="category" items="${categories}">
        <div class="grid-item">
            <a href="">
                <img src="file:///${category.imgPath}" width="200" height="200" alt="">
            </a>
            <h4> 
                ${category.name} 
            </h4> 
        </div>
    </c:forEach>
</c:if>


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source