在哪里保持img或css目录符合maven项目结构?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果它是一个 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...