如何在Eclipse中查看maven项目的web内容
我已经将 Maven 项目导入到 Eclipse 中。我还运行了命令 mvn jetty:run
来检查该项目是否正常工作。
以前位于 MyProject/WebContent
目录下的文件现在位于 MyProject/src/main/webapp/
下。我可以在文件系统上看到它们,但在 eclipse 中看不到它们。如何在 Eclipse 中查看和编辑这些文件。
I have imported a Maven project into Eclipse. I have also run the command mvn jetty:run
to check that the project works.
The files that used to be under the MyProject/WebContent
directory are now under MyProject/src/main/webapp/
. I can see them on the file system, but not in eclipse. How do I view and edit these files in Eclipse.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试将 eclipse 中的项目方面切换到 web 项目...现在无法检查 - 所以这只是假设。
you can try to switch project facet in eclipse to web-project... Can't check it right now -so it's just assumption.
src/main/webapp
文件夹不是 Eclipse 术语中的源文件夹
,因此它没有列在src/main/java
、中>src/main/resources
等。这是正确的,因为它也不是 maven 的源文件夹(仅适用于 war 插件),因此您必须手动扩展
src
文件夹Eclipse:但是,您可以右键单击该文件夹并选择
Build Path >用作源文件夹
。 (将其添加为 Eclipse 中的源文件夹不会更改您的 Maven 设置)The
src/main/webapp
folder is not asource folder
in eclipse terminology, so it's not listed amongsrc/main/java
,src/main/resources
etc. This is correct, because it's not a source folder for maven, either (just for the war plugin)So you have to expand the
src
folder manually in Eclipse:However, you can then right-click the folder and select
Build Path > Use as Source Folder
. (Adding it as a source folder in Eclipse won't change your maven setup)