如何使 GAE 自动处理成为一个动作

发布于 2024-10-01 02:20:40 字数 272 浏览 1 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

数理化全能战士 2024-10-08 02:20:40

尝试将 添加到您的 web.xml 文件中:

<welcome-file-list>
    <welcome-file>index.a</welcome-file>
</welcome-file-list>

Try adding <welcome-file-list> to your web.xml file:

<welcome-file-list>
    <welcome-file>index.a</welcome-file>
</welcome-file-list>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文