我开发了一个java ear,我通过使用eclipse中的发布按钮从我的本地eclipse部署到我的本地websphere 8.5。当我尝试从命令行部署我的耳朵时,在尝试访问网页后出现错误。
我从公共线路更新我的耳朵,如下所示: $ {was.dir} / profiles / $ {was.profile} /bin/wsadmin.sh -lang jython -username $ {was.username} -password $ {was.password} -c AdminApplication.updateApplicationUsingDefaultMerge(' $ {was.app.name}',' $ {build.dir} / $ {ear.name}')
部署成功但是当我通过网络浏览器访问我的应用程序时,我收到以下消息而不是看到我的应用程序:
错误404:com.ibm.ws.webcontainer.servlet.exception.NoTargetForURIException:没有为uri配置目标servlet:/wwww/index.html
我已经通过websphere的网络管理界面更新它而没有任何配置验证了耳朵没问题。
我做错了什么或者我需要采取哪些额外步骤才能成功更新我的耳朵?
答案 0 :(得分:4)
您使用的是错误的命令。你应该使用这样的东西:
AdminApp.update('MyAppEAR','app','[ - operation update -contents MyApp.ear -nopreCompileJSPs -installed.ear.destination C:\ WAS \ MyAppEAR -nodistributeApp -useMetaDataFromBinary -nodeployejb -createMBeansForResources -noreloadEnabled -nodeployws -validateinstall warn -noprocessEmbeddedConfig -filepermission。 .dll = 755#。 .so = 755#。 .a = 755#。 .sl = 755 -noallowDispatchRemoteInclude -noallowServiceRemoteInclude -asyncRequestDispatchType DISABLED -nouseAutoLink -noenableClientModule -clientMode isolated -novalidateSchema -MapModulesToServers [[MyApp MyApp.war,WEB-INF / web.xml WebSphere:cell = Node02Cell,node = Node02,server = server1]]]')
此外,在WebSphere Application Server中,您可以记录通过管理控制台发出的每个命令。
<强>步骤强>
答案 1 :(得分:2)
我不确定updateApplicationUsingDefaultMerge
与update
(the latter is what I use),但不要忘记你还需要AdminConfig.save()
在你之后&#39} ;完了。