Our Java application is going through migration from a WAS 7 server to a WAS 8.5 server - and for some reason, even though our application shows as Deployed in our Admin Console, the application itself isn't coming up on our assigned URL.
I've ruled out the possibility of a code-related problem by testing the application in my local server, so I know the problem is with some server settings - but, almost all of my experience in CS is in coding, and I don't know how to figure out where those settings have gone awry.
What options do I have to debug my application's server-side issues?
答案 0 :(得分:4)
你没有明确表达你的意思"即将到来,"所以我将从广泛的建议开始。
要理智的检查:
logs
目录中的服务器日志,尤其是SystemOut.log和ffdc夹。当您访问它或启动时可能会发生错误。那些应该出现在那里。如果所有这些都失败了,您可以打破调试器(如果您的环境允许这样做)并查看您的代码是否已被访问。
答案 1 :(得分:2)
1)检查服务器日志:在WAS控制台中,您可以找到服务器的日志。
2)在本地服务器中调试。通过在本地服务器中部署ear,然后可以在登录模式下启动服务器。然后你shuld停止并重新启动你的websphere应用程序,它将在选定的断点中停止。