Websphere 上的 Spring/Flex
我有一个简单的 hibernate/spring/flex 项目。该项目是在apache tomcat6下开发的。谁能告诉我如何在 IBM webshphere v6.1 上部署它?谢谢
I have a simple hibernate/spring/flex project. The project was developed under apache tomcat6. Can anyone point me how to proceed to deploy it on IBM webshphere v6.1? thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一般来说,如果您的项目与 J2EE 1.4 和 JDK 5 兼容,它应该可以工作。
最重要的一步是用 EAR 来包裹您的 WAR。
我记得(我前段时间有这样一个端口),你需要更改 WAR 的类加载器顺序!在 WAS 中设置为“最后一个父级”(否则您会收到很多对不兼容的类执行的奇怪错误。)
然后您需要从一个问题转到下一个问题(抱歉)。
In general it should work if you project is J2EE 1.4 and JDK 5 compatible.
The most important step is to wrap an EAR around your WAR.
And on think I remember (I have such a port some time ago), is that you will need to change the Class loader order of the WAR!! in WAS to "parent last" (else you will get a lot of strange errors do to not compatible classes.)
And then you need to go form one problem to the next (sorry).