在哪里保持img或css目录符合maven项目结构?

发布于 2024-11-03 17:14:33 字数 439 浏览 1 评论 0原文

Maven 建议将“资源”放置在

src/main/资源

目录。

对于网络应用程序源,它建议

src/main/webapp

我觉得有点混乱。我的网络应用程序需要图像和 CSS 文件。

我应该把它们放在

src/main/resources/img
src/main/resources/css

src/main/webapp/img
src/main/webapp/css

哪一个合适(根据 Maven 约定)?

谢谢 !

Maven suggests 'resources' to be placed in

src/main/resources

directory.

For webapps sources, it suggests

src/main/webapp

I find it a little confusing. My web-app would need images and css files.

Should I place them in

src/main/resources/img
src/main/resources/css

or in

src/main/webapp/img
src/main/webapp/css

Which would be appropriate (as per maven conventions) ?

Thanks !

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鹤舞 2024-11-10 17:14:33

如果它是一个 webapp,你需要将它放在 webapp 目录下。 maven 文档讨论的资源是应用程序级别的资源,如属性文件、日志配置等......

If its a webapp you need to place it under webapp directory. The resources maven documentation talks about is application level resources like property files, logging configuration etc...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文