使index.jsp直接转入action

来源:互联网 发布:php财务系统源码 编辑:程序博客网 时间:2024/06/13 05:22

  首页中加入该语句
  response.sendRedirect("index.action");

 

当前项目为struts2项目
<% 
   response.sendRedirect("index.action");//可实现转向到struts.xml中配置的 index Action中
 // request.getRequestDispatcher("index.action").forward(request,response); 不可用
%>