如何在Eclipse中查看maven项目的web内容

发布于 2024-10-21 09:31:29 字数 238 浏览 3 评论 0原文

我已经将 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 技术交流群。

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

发布评论

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

评论(2

不离久伴 2024-10-28 09:31:30

您可以尝试将 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.

又怨 2024-10-28 09:31:29

src/main/webapp 文件夹不是 Eclipse 术语中的源文件夹,因此它没有列在 src/main/java中>src/main/resources 等。这是正确的,因为它也不是 maven 的源文件夹(仅适用于 war 插件),

因此您必须手动扩展 src 文件夹Eclipse:

src/main/webapp

但是,您可以右键单击该文件夹并选择 Build Path >用作源文件夹。 (将其添加为 Eclipse 中的源文件夹不会更改您的 Maven 设置)

The src/main/webapp folder is not a source folder in eclipse terminology, so it's not listed among src/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:

src/main/webapp

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)

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