我正在尝试在Glassfish 5.0中部署应用程序 一切顺利,除了我的应用程序URL附加了某种ID。 例如:它应该是这样的:sharpsign-sharpsign 但它是这样的:http://localhost:8080/AppName/
谢谢!
答案 0 :(得分:1)
出现同样的问题,将context-root标签添加到我的glassfish-web.xml文件中,现在它可以正常工作:
<glassfish-web-app>
<context-root>AppName</context-root>
</glassfish-web-app>