The style on the jsp page doesn't show up?

the style on the jsp page cannot be displayed, and the access always reports an error and cannot find the path. The file directory and related code are as follows:

clipboard.png

<link rel="favicon" href="${pageContext.request.contextPath}/assets/images/favicon.png">
<link rel="stylesheet" href="${pageContext.request.contextPath}/assets/css/bootstrap.min.css">
Jsp
Mar.10,2021

you can take a look at the browser's console information, see if there is an error like 404, or see if the Network section is loading resources correctly.


must be equipped with static resources under web-inf, otherwise it cannot be accessed.

Menu