How do I add a CSS file to a SpringBoot .jsp file?

23 hours ago 2
ARTICLE AD BOX

enter image description here screenshot of file structure

So I'm trying to add some basic CSS to a Spring Boot project, my style.css is under the right directory, but it's still not showing up on my webpage.

I previously tried to link it like this:

<link rel="stylesheet" href="${pageContext.request.contextPath}/static/ccs/style.css">

But it's not working either. What could I have done wrong here?

Read Entire Article