我使用GAE和struts。当我输入htpp://localhost:8888
时,它会自动加载index.jsp。
我需要的是立即处理行动。
例如,当我输入htpp://localhost:8888
时,它会自动加载动作“index.a”,而不是自动加载index.jsp页面。
我尝试使用没有GAE的struts,它运行正常。但是在我将GAE添加到我的项目之后它就行不通了。有什么问题,如何纠正?
答案 0 :(得分:0)
尝试将<welcome-file-list>
添加到web.xml
文件中:
<welcome-file-list>
<welcome-file>index.a</welcome-file>
</welcome-file-list>