如何更改默认的 Eclipse WTP“Web 资源”动态文件夹

发布于 2024-09-12 19:03:38 字数 86 浏览 3 评论 0原文

我需要更改默认的 Eclipse WTP“Web Resources”动态文件夹。目前它指向WebContent,而我需要指向src\main\webapp。

I need to change the default Eclipse WTP "Web Resources" dynamic folder. Currently it points to WebContent, and I need to point to src\main\webapp.

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

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

发布评论

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

评论(6

稍尽春風 2024-09-19 19:03:38

我找到了解决方案:
在项目文件夹中的 .settings 文件夹下,有一个名为“org.eclipse.wst.common.component”的文件,在其中更改行

就这样!

I found the solution:
Under .settings folder in your project's folder, there is a file named "org.eclipse.wst.common.component", inside it change the line <wb-resource deploy-path="/" source-path="/WebContent"/> with <wb-resource deploy-path="/" source-path="/src/main/webapp"/>.

That's all!

神爱温柔 2024-09-19 19:03:38

优先考虑 eclipse GUI!

如果您没有看到此

无法找到部署程序集 Eclipse Juno

在此处输入图像描述

Give Preference to eclipse GUI!

if don't appear to you see this

Unable to find Deployment assembly Eclipse Juno

enter image description here

我很OK 2024-09-19 19:03:38

我更喜欢以下解决方案,因为配置随后保存在 .project 文件中,并且所有文件在 Eclipse Project Explorer 中都保持可见。

创建一个名为 WebContent 的链接文件夹,指向 /src/main/webapp

右键单击项目 >新的>文件夹。文件夹名称:WebContent。高级>链接到备用位置(链接文件夹):PROJECT_LOC/src/main/webapp

I prefer the following solution, as the configuration is then saved in the .project file and also all files are kept visible in the Eclipse Project Explorer.

Create a Linked Folder called WebContent pointing to /src/main/webapp:

Right click project > New > Folder. Folder name: WebContent. Advanced > Link to alternate location (Linked Folder): PROJECT_LOC/src/main/webapp.

放低过去 2024-09-19 19:03:38
  1. 禁用“动态 Web 模块”项目性质,单击“应用”按钮
  2. 启用上一个选项复选框,注意底部的“可用羽化配置...”。
  3. 单击“可用的羽毛配置...”链接并更改目录
  4. 单击“应用”按钮
  1. Disable "Dynamic Web Module" project nature, click "Apply" button
  2. Enable previous option checkbox, notice "Feather configuration available..." at the bottom.
  3. Click "Feather configuration available..." link and change directory
  4. Click "Apply" button
冷…雨湿花 2024-09-19 19:03:38

或者您甚至可以对 WebContent 目录进行简单的重命名。 Eclipse 将更新上述设置文件

Or you may even do a simple rename of WebContent directory. Eclipse will update the above mention settings files

寄居人 2024-09-19 19:03:38

就我而言,问题是找不到位于资源/模板中的jsp

进行更改

<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/>

解决方案是通过以下方式

<wb-resource deploy-path="/" source-path="/src/main/resources"/>

即修改文件

.settings\org.eclipse.wst.common.component

In my case the problem was that the jsp located in resources/templates were not found

The solution has been to change

<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/>

by the following

<wb-resource deploy-path="/" source-path="/src/main/resources"/>

That is, modifying the file

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