如何从基于 tomcat 的项目为 jetty 创建新的 eclipse 项目并使用 svn/subclipse 进行版本控制?
有没有简单的方法可以解决以下问题? 我有一个 Eclipse 工作区,其中有一个使用 subclipse 插件在 svn 中共享的动态 Web 项目。 该项目基于tomcat7。 现在我想将项目移动到jetty8,将源文件保留在同一个svn存储库中。这可能吗? 我不想终止 tomcat 上的前一个项目,但我想保留这两个项目。
我尝试将 tomcat 项目按原样导入到新工作区中,但它不起作用。 如果流程不顺利,我应该采取哪些步骤?
Is there a simple way to solve the following problem?
I have an eclipse workspace with a dynamic web project shared in svn using subclipse plug-in.
The project is based on tomcat7.
Now I would like to move the project to jetty8, leaving the source files in the same svn repository. Is that possible?
I don't want to kill the previous project on tomcat but I would like to mantain both projects.
I tryed importing the tomcat project into a new workspace as is but it's doesn't work.
Which steps should I do if there is a smothless procedure?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我用这种方式解决了:
因为该项目无法按原样在jetty上运行,请更改目标运行时属性到jetty
,
因为eclipse不包含类路径中的所有jetty jar,请从jetty lib目录添加缺少的jar
修复其他一些内容,例如 JSF2 on Jetty 随机给出“zip 文件已关闭”,但在从 Maven jetty 插件 (jetty:run) 运行时有效
,现在它可以完美工作!
希望这可以帮助别人。
I solved in this way:
as the project cannot run on jetty as is, change the targeted runtimes property to jetty
as eclipse does not include all the jetty jars in the classpath, add the missing ones from the jetty lib directory
fix some other stuff, like JSF2 on Jetty gives randomly 'zip file closed' but works when running from maven jetty plugin (jetty:run)
and now it works perfectly!
Hope this could help someone else.