如何使 GAE 自动处理成为一个动作
我使用 GAE 和 struts。当我输入htpp://localhost:8888
时,它会自动加载index.jsp。
我需要的是它立即处理一个动作。
例如,当我输入htpp://localhost:8888
时,它将自动加载操作“index.a”,而不是自动加载index.jsp页面。
我尝试在没有 GAE 的情况下使用 struts,它工作正常。但是当我将GAE添加到我的项目中后,它就不起作用了。有什么问题以及如何纠正它?
I use GAE and struts. When I input htpp://localhost:8888
, it will autoload index.jsp.
What I need is for it to process an action immediately.
For example, when I input htpp://localhost:8888
, it will autoload action "index.a" instead of autoloading the index.jsp page.
I tried using struts without GAE and it worked correctly. But after I added GAE to my project it would't work. What is the problem and how do I correct it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将
添加到您的web.xml
文件中:Try adding
<welcome-file-list>
to yourweb.xml
file: