jsp基础及内置对象

    <%--jsp:include 当page页面出现变化的时候JSP引擎能及时编译出来 --%>
    <jsp:include page="login_top.jsp"/>
    <%--jsp:forward只能内部跳转 --%>
    <jsp:forward page="admin.html"></jsp:forward>


----------------------数据链接方式----------------------


//1.取得表单提交过了的数据
String name = request.getParameter("name");
String pwd = request.getParameter("pwd");
//2.加载JDBC驱动
String drivername="com.mysql.jdbc.Driver";
Class.forName(drivername);
//3.创建连接对象
String url="jdbc:mysql://127.0.0.1:3306/news?"+"user=root&password=root";
Connection connection=DriverManager.getConnection(url);
//4.通过连接对象创建执行对象
Statement st=connection.createStatement();
String sql="select * from users where uname='"+name+"' and upwd='"+pwd+"'";
ResultSet rs=st.executeQuery(sql);
if(rs.next()){
out.print("登陆成功");
}else{
out.print("登陆失败");
}
rs.close();
st.close();
connection.close();
---------------------查找ip------------------------
String ip=request.getRemoteAddr();
ip地址<input type="text" value="<%=ip%>" readonly="readonly">


----------------------调回主页-------------------
<script type="text/javascript">
alert("登陆失败");
open("index.jsp","_self");
</script>


--------------------跳转任何页面---------------
//采用响应对象跳转页面
response.sendRedirect("login_top.jsp");


---------------------统计访问人数--------------
application是存储全局变量
用于:统计人数列举所有登录用户
web服务器停止运行application数据清空
禁止吧过于大的数据放在application中
<%
int sum=0;
if(application.getAttribute("SUM")==null){
++sum;
application.setAttribute("SUM", sum);
}else{
   String s=application.getAttribute("SUM").toString();
   sum=Integer.parseInt(s);
   ++sum;
   application.setAttribute("SUM", sum);
   }
   out.print("您是第"+sum+"个访问本网站的用户!!");
%>


---------------------session内容--------------
session是指用户与服务器的通信会话
打开新的浏览器 创建新的session
只要处于当前浏览器session一直保存(时间一般为20分钟)
---------------------jsp内置对象--------------
request内置对象
response内置对象
out内置对象
session内置对象
application内置对象


pageContext内置对象
config内置对象
exception内置对象
page内置对象


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值