MyEclipse每次保存JSP页面时都会构建工作区
每当我保存 jsp 页面时,MyEclipse IDE 就会开始构建工作区。当我更改任何类文件时它应该构建。或者如果有未编译的类。但是为什么当我更改 JSP 文件时它开始构建整个工作区。我被困住了。请就这个问题给我建议。
我正在使用 MyEclipse 5.5 而不是 Eclipse 3.2
谢谢。
Whenever I save a jsp page, MyEclipse IDE start building the workspace. It should build when I change in any class file. Or if there are classes that not compiled. But why it start building whole workspace when I change in a JSP file. I am stuck on it. Please advise me on this problem.
I am using MyEclipse 5.5 over Eclipse 3.2
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这个问题是由于java构建路径的问题引起的,修复你的构建路径并摆脱这个问题。
this problem is due to problem in java build path, fix your build path and get out of this.
对于每个 JSP,JSP 编译器都会生成一个相应的 Java 类。因此,当您保存 JSP 时,Eclipse/MyEclipse 认为它需要构建工作区以 1) 运行 JSP 编译器,以及 2) 将生成的 Java 类编译为字节码。
我想您可以修改此行为(例如通过 Eclipse/MyEclipse 首选项),但我不使用 MyEclipse,而且我也不以这种方式进行 J2EE 开发。
For every JSP, the JSP compiler generates a corresponding Java class. So when you save a JSP, Eclipse/MyEclipse is figuring that it needs to do a workspace build to 1) run the JSP compiler, and 2) compile the resulting Java class to bytecodes.
I imagine you can modify this behavior (e.g. via Eclipse/MyEclipse preferences), but I don't use MyEclipse, and I don't do J2EE development this way anyway.
这个问题是因为java构建路径的问题,修复你的构建路径并解决这个问题。
This issue is because of problem in java build path, fix your build path and get out of this issue.
JSP是一个类文件。你可以在里面编写任何java代码。
JSP is a class file. You can write any java code inside it.