My challenge right now is linking CSS with the JSP page. I have attempted it like this:
<link href="<c:url value="/resources/css/plugins.css" />" rel="stylesheet">
<link href="<c:url value="/resources/css/style.css" />" rel="stylesheet">
In my spring-servlet.xml file, I added:
<mvc:resources location="/WEB-INF/resources/" mapping="/resources/**"/>
Although I followed these steps, when I include these codes, I encounter a 404 not found error. However, if I remove them, the error disappears.
The goal is to properly connect the CSS file in the JSP.
Normally, I link CSS files like this
Could someone please assist me with this issue?