在intellij中的jsp maven项目中使用css
我试图在我在 IntelliJ 中构建的 Maven 项目中添加外部 CSS 文件,但似乎不起作用。请帮忙,我可能会错过什么? 请注意,当我在内部使用样式时,它工作正常(但我想在项目中使用其他资产)。 我在下面提供了项目结构的图像。
I am trying to add an external CSS file in a maven project that I am building in IntelliJ, but seemingly it doesn't work. Please help, what could I be missing out on?
Please note that when I use the styling internally it works fine (but I want to use other assets in my project).
I have included an image of the project structure below.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CSS 文件是 Web 资源,它应该存在于
src\main\webapp
或src\main\resources\META-INF\resources
文件夹中。因此,将您的
css
文件夹移动到src\main\webapp
然后您的 CSS 就可以工作了CSS files are web resources it should be present in
src\main\webapp
orsrc\main\resources\META-INF\resources
folder.So, move your
css
folder tosrc\main\webapp
then your CSS will work