JSP网站首页访问自动跳转到一个action经过调用数据库后再返回首页
JSP网站首页访问自动跳转到一个action经过调用数据库后再返回首页:
一般我们访问一个网站首页是都是直接输入.../index.jsp,而我们平时都是经过一个action调用数据库后在跳转到目标页,而对于 index.jsp我们通常又是习惯性的输入index.jsp这是我们做法是在index.jsp 的<head></head>之间加入
<% if(request.getAttribute("T_flag")==null { response.sendRedirect("index.action"); } %>
这样就回跳转到一个Action类中,如果我们用excute()方法处理逻辑(访问数据库等)
这是我们需要在excute()方法里加入
HttpServletRequest request = ServletActionContext.getRequest(); request.setAttribute("T_flag", "123");
其中123为T_flag的值,我们做法是为了保证T_flag!=null了第二次在访问首页是它直接就可以到index.jsp而不需要再经过Action类处理再跳回index.jsp了。
当然也可以通过<body onload="">调用body表签的onload(),通过一个JavaScript跳转到一个action或servlet处理后,再跳回原页面。
相关推荐
dreamer00 2020-02-04
末点 2020-02-03
唐爱平的blog 2012-05-19
New丶Elements 2019-07-01
dilipy 2010-01-22
xruidlw 2016-05-29
生活研发 2016-02-23
enjoyhot 2016-02-11
tongjianru 2011-01-28
ycsx0 2011-01-28
superdullwolf 2016-01-04
wlzalbert 2014-11-04
守护阿里巴巴 2009-04-01
lizhiyong 2014-12-10
ach 2013-12-24
88463368 2018-03-16
PHP100 2019-03-27
PHP100 2019-03-27
零秒 2018-01-09