我正在构建一个Web游戏,也使用Java servlet - 使用TomCat在本地运行它。
主页面网址为:localhost:8080/index.html/
每当我尝试移动到其他servlet \ page时,路径为:localhost:8080/index.html/inGame.html
好像index.html
是一个文件夹。
我该如何解决? 非常感谢你!
答案 0 :(得分:0)
我认为你的代码应该是这样的
RequestDispatcher a = request.getRequestDispatcher(“other servlet url / mapping”);
a.forward(request,response);