[b][color=green]1、配置web.xml。欢迎页面为随便的一页面,不要配置为index.jsp[/color][/b]
[b][color=green]2.在a.jsp页面中转发或重定向到一个action,在action中进行取值:[/color][/b]
[b][color=green]3、从action重定向index.jsp就可以了。[/color][/b]
<welcome-file-list>
<welcome-file>a.jsp</welcome-file>
</welcome-file-list>
[b][color=green]2.在a.jsp页面中转发或重定向到一个action,在action中进行取值:[/color][/b]
<body>
<% response.sendRedirect("action"); %>
</body>
[b][color=green]3、从action重定向index.jsp就可以了。[/color][/b]