一、作用域对象:
1. 什么是作用域
作用域是在运行时代码中的某些特定部分中变量,函数和对象的可访问性。换句话说,作用域决定了代码区块中变量和其他资源的可见性。
作用域就是一个独立的地盘,让变量不会外泄、暴露出去。也就是说作用域最大的用处就是隔离变量,不同作用域下同名变量不会有冲突。
作用域是分层的,内层作用域可以访问外层作用域的变量,反之则不行。
ServletContext:
Web容器在启动时,会为每一个Web程序都创建一个对应的ServletContext对象。它是一个全局的储存信息的空间,服务器开始,其就存在,服务器关闭,其才释放。
作用域对象:pageContext:request:session:application:
pageContext::只能在当前页面定义数据,当前页面使用。
request:后端程序和页面有请求关系,则数据可以共享。
session:是当前会话有效(同一个人使用同一个浏览器在任何页面都可以数据共享)
application:是整个服务器有效,所有用户的请求都可以数据共享。
pageContext:
pageContext对象:它的生命周期即page域,指储存在pageContext对象的数据只在当前页面有效,当页面跳转时,则在pageContext域的数据进行销毁。
request:
request对象主要用于处理客户端请求,同时request对象也是作用域对象,它的作用域范围是同一个请求。
session:
session对象用来储存有关用户会话的所有信息,它的作用域范围是同一个会话。
session对象常用的方法:
void setAttribute(String key,object value):application:以键/值的方式,将一个对象的值存放到session中
session.setAttribute(“name”,”admin”);
Object getAttribute(String key):根据名称去获取session中存放对象的值
String name=(String ) session.getAttribute(“name”);
application:
application类似于系统的“全局变量”,用于实现用户之间的数据共享,它的作用域范围是在服务器一开始执行服务,到服务器关闭为止。
注:请求转发:会保留原来的地址不变。
application 对象实现了javax.servlet.ServletContext 接口
application对象的常用方法:
void setAttribute(String key,Object value): 以键/值的方式,将一个对象的值存放到application中void getAttribute(String key)通过键的方式,把对应的值取出来 。
作用域对象测试:
package com.su.servlet; import javax.servlet.ServletContext; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import java.io.IOException; public class Test01 extends HttpServlet { @Override protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { doPost(request, response); } @Override protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { //1.pageContext //2.request request.setAttribute("name","request"); //3.session HttpSession session=request.getSession(); session.setAttribute("name","session"); //4.application ServletContext application = request.getServletContext(); application.setAttribute("name","application"); } }
<%-- Created by IntelliJ IDEA. User: lenovo Date: 2023/2/23 Time: 11:05 To change this template use File | Settings | File Templates. --%> <%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>作用域对象测试</title> </head> <body> <%-- EL表达式获取作用域对象得顺序是:pageContext(当前页面)、request(请求问)、session(当前会话)、application(应用程序) --%> <h2> pageContext只能当前页面定义数据,当前页面使用 request后端程序和页面有情关系,则数据可以共享 session是当前会话有效(同一个人使用同一个浏览器在任何页面都可以数据共享) application是整个服务器有效,所有用户得请求可以数据共享 </h2> ${name} </body>
二、 基于MVC模型使用分层模式完成添加
编辑主页内容
创建用户自主添加商品信息页面
请求转发执行查询所有商品信息,跳转到主页做信息展示
主页源码
<%@ page import="java.util.List" %> <%@ page import="com.su.Bean.Goods" %><%-- Created by IntelliJ IDEA. User: 86159 Date: 2023/2/17 Time: 19:48 To change this template use File | Settings | File Templates. --%> <%@ page contentType="text/html;charset=UTF-8" language="java" %> <!--在页面导入jstl的核心类库 --> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <html> <head> <title>主页!</title> </head> <body> <h2>欢迎来到主页!</h2> <a href="addGoods.jsp">添加商品</a> <table> <thead> <tr> <th>商品编号</th> <th>商品名称</th> <th>商品价格</th> <th>商品说明</th> </tr> </thead> <tbody> <c:forEach items="${goodsList}" var="goods"> <tr> <td>${goods.gid}</td> <td>${goods.gname}</td> <td>${goods.price}</td> <td>${goods.mark}</td> <td> <a href="#">修改</a> <a href="del?gid=${goods.gid}">删除</a> </td> </tr> </c:forEach> </tbody> </table> </body> </html>
用户自主添加商品信息空页面源码
<%-- Created by IntelliJ IDEA. User: 86159 Date: 2023/2/23 Time: 19:37 To change this template use File | Settings | File Templates. --%> <%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>商品信息添加</title> </head> <body> <h2>商品信息录入</h2> <form action="addGoods" method="post"> 商品名称:<input type="text" name="gname" value="" placeholder="商品名称"><br/> 商品价格:<input type="number" step="0.01"name="price" value="" placeholder="商品价格"><br/> 商品说明:<input type="text" name="mark" value="" placeholder="商品说明"><br/> <input type="submit" value="提交"> </form> </body> </html>
添加页面
package com.su.servlet; import com.su.Bean.Goods; import com.su.dao.GoodDao; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; @WebServlet("/addGoods") public class AddGoods extends HttpServlet { @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { doPost(req,resp); } @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { req.setCharacterEncoding("utf-8"); resp.setCharacterEncoding("utf-8");//设置响应的编码格式 Goods goods=new Goods(); goods.setGname(req.getParameter("gname")); goods.setPrice(Double.parseDouble(req.getParameter("price"))); goods.setMark(req.getParameter("mark")); GoodDao goodsDao=new GoodDao(); int row=goodsDao.add(goods); if(row>0){ req.getRequestDispatcher("selectAllGoods").forward(req,resp); }else{ req.setAttribute("error_msg","添加商品信息失败"); req.getRequestDispatcher("error.jsp").forward(req,resp); } } }
连接数据库的操作代码(添加)
public int add(Goods goods) { try { Class.forName(driver); con= DriverManager.getConnection(url,user,password); String sql="insert into t_goods (gname,price,mark) values(?,?,?)"; ps= con.prepareStatement(sql); ps.setObject(1,goods.getGname()); ps.setObject(2,goods.getPrice()); ps.setObject(3,goods.getMark()); row=ps.executeUpdate(); } catch (Exception e) { e.printStackTrace(); } finally { try { if (rs!=null){ rs.close(); } if (ps!=null){ ps.close(); } if (con!=null){ con.close(); } } catch (Exception e) { e.printStackTrace(); } } return row; }
二、 基于MVC模型使用分层模式完成删除
执行删除操作
主页源码
<%@ page import="java.util.List" %> <%@ page import="com.su.Bean.Goods" %><%-- Created by IntelliJ IDEA. User: 86159 Date: 2023/2/17 Time: 19:48 To change this template use File | Settings | File Templates. --%> <%@ page contentType="text/html;charset=UTF-8" language="java" %> <!--在页面导入jstl的核心类库 --> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <html> <head> <title>主页!</title> </head> <body> <h2>欢迎来到主页!</h2> <a href="addGoods.jsp">添加商品</a> <table> <thead> <tr> <th>商品编号</th> <th>商品名称</th> <th>商品价格</th> <th>商品说明</th> </tr> </thead> <tbody> <c:forEach items="${goodsList}" var="goods"> <tr> <td>${goods.gid}</td> <td>${goods.gname}</td> <td>${goods.price}</td> <td>${goods.mark}</td> <td> <a href="#">修改</a> <a href="del?gid=${goods.gid}">删除</a> </td> </tr> </c:forEach> </tbody> </table> </body> </html>
删除页面
package com.su.servlet; import com.su.dao.GoodDao; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; @WebServlet("/del") public class DelGoods extends HttpServlet { @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { doPost(req,resp); } @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { int gid=Integer.parseInt(req.getParameter("gid")); //根据id执行数据库的删除 GoodDao goodDao=new GoodDao(); int row=goodDao.deleteById(gid); if (row>0){ req.getRequestDispatcher("selectAllGoods").forward(req,resp); }else{ req.setAttribute("error_msg","删除出现了问题"); req.getRequestDispatcher("error.jsp").forward(req,resp); } } }
连接数据库的操作代码(删除)
public int deleteById(int gid) { try { Class.forName(driver); con= DriverManager.getConnection(url,user,password); String sql="delete from t_goods where gid=?"; ps=con.prepareStatement(sql); ps.setObject(1,gid); row=ps.executeUpdate(); } catch (Exception e) { e.printStackTrace(); } finally { try { if (ps!=null){ ps.close(); } if (con!=null){ con.close(); } } catch (Exception e) { e.printStackTrace(); } } return row; } }
删除成功后页面的展示效果
三、 基于MVC模型使用分层模式完成修改
执行修改操作
主页代码
<%@ page import="java.util.List" %> <%@ page import="com.su.Bean.Goods" %><%-- Created by IntelliJ IDEA. User: 86159 Date: 2023/2/17 Time: 19:48 To change this template use File | Settings | File Templates. --%> <%@ page contentType="text/html;charset=UTF-8" language="java" %> <!--在页面导入jstl的核心类库 --> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <html> <head> <title>主页!</title> </head> <body> <h2>欢迎来到主页!</h2> <a href="addGoods.jsp">添加</a> <table> <thead> <tr> <th>商品编号</th> <th>商品名称</th> <th>商品价格</th> <th>商品说明</th> <th>操作</th> </tr> </thead> <tbody> <c:forEach items="${goodsList}" var="goods"> <tr> <td>${goods.gid}</td> <td>${goods.gname}</td> <td>${goods.price}</td> <td>${goods.mark}</td> <td> <a href="findById?gid=${goods.gid}">修改</a> <a href="del?gid=${goods.gid}">删除</a> </td> </tr> </c:forEach> </tbody> </table> </body> </html>
查询页面
package com.su.servlet; import com.su.Bean.Goods; import com.su.dao.GoodDao; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; @WebServlet("/findById") public class FindById extends HttpServlet{ @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { doPost(req,resp); } @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { int gid=Integer.parseInt(req.getParameter("gid")); //根据gid查询商品信息 GoodDao goodDao=new GoodDao(); Goods goods=goodDao.selectById(gid); if (goods!=null){ // 查询商品信息成功,存入request域中,然后请求转发到页面展示数据 req.setAttribute("goods",goods); req.getRequestDispatcher("showGoods.jsp").forward(req,resp); }else{ req.setAttribute("error_msg","修改出现了问题"); req.getRequestDispatcher("error.jsp").forward(req,resp); } } }
连接数据库的操作代码(修改)
public int update(Goods goods) { try { Class.forName(driver); con= DriverManager.getConnection(url,user,password); String sql="update t_goods set gname=?,price=?,mark=? where gid=?"; ps=con.prepareStatement(sql); ps.setObject(1,goods.getGname()); ps.setObject(2,goods.getPrice()); ps.setObject(3,goods.getMark()); ps.setObject(4,goods.getGid()); row=ps.executeUpdate(); } catch (Exception e) { e.printStackTrace(); } finally { try { if (ps!=null){ ps.close(); } if (con!=null){ con.close(); } } catch (Exception e) { e.printStackTrace(); } } return row; }
删除成功后页面的展示效果
concat: 合并多个数组;合并多个字符串
concat 方法用于连接两个或多个数组。该方法不会改变现有的数组,而仅仅会返回被连接数组的一个副本。返回一个新的数组。
语法:concat(str1, str2,…)
mysql> select concat(’11’,’22’,’33’);
+————————+
| concat(’11’,’22’,’33’) |
+————————+
输出:| 112233 |
四、 模糊查询
主页定义搜索的表单页面
在seach页面执行模糊查询
主页代码
<%@ page import="java.util.List" %> <%@ page import="com.su.Bean.Goods" %><%-- Created by IntelliJ IDEA. User: 86159 Date: 2023/2/17 Time: 19:48 To change this template use File | Settings | File Templates. --%> <%@ page contentType="text/html;charset=UTF-8" language="java" %> <!--在页面导入jstl的核心类库 --> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <html> <head> <title>主页!</title> </head> <body> <h2>欢迎来自${user.address}的${user.username}访问主页!</h2> <form action="seach" method="post"> <input type="text" name="keyword" value=""> <input type="submit" value="搜索"> </form> <a href="addGoods.jsp">添加</a> <table> <thead> <tr> <th>商品编号</th> <th>商品名称</th> <th>商品价格</th> <th>商品说明</th> <th>操作</th> </tr> </thead> <tbody> <c:forEach items="${goodsList}" var="goods"> <tr> <td>${goods.gid}</td> <td>${goods.gname}</td> <td>${goods.price}</td> <td>${goods.mark}</td> <td> <a href="findById?gid=${goods.gid}">修改</a> <a href="del?gid=${goods.gid}">删除</a> </td> </tr> </c:forEach> </tbody> </table> </body> </html>
seach页面代码(模糊查询)
package com.su.servlet; import com.su.Bean.Goods; import com.su.dao.GoodDao; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import java.io.IOException; import java.util.List; @WebServlet("/seach") public class Seach extends HttpServlet { @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { doPost(req,resp); } @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { req.setCharacterEncoding("utf-8");//设置请求的编码格式为中文 resp.setCharacterEncoding("utf-8");//设置响应的编码格式 String keyword=req.getParameter("keyword"); //执行JDBC的模糊查询 select * from t_goods where gname like? GoodDao goodDao=new GoodDao(); List<Goods> goodsList=goodDao.seach(keyword); System.out.println(goodsList); //把模糊查询查询到的商品信息集合存储到session中 HttpSession session=req.getSession(); session.setAttribute("goodsList",goodsList); //跳转到主页进行信息展示 resp.sendRedirect("zhuye.jsp"); } }
定义seach方法
public int update(Goods goods) { try { Class.forName(driver); con= DriverManager.getConnection(url,user,password); String sql="update t_goods set gname=?,price=?,mark=? where gid=?"; ps=con.prepareStatement(sql); ps.setObject(1,goods.getGname()); ps.setObject(2,goods.getPrice()); ps.setObject(3,goods.getMark()); ps.setObject(4,goods.getGid()); row=ps.executeUpdate(); } catch (Exception e) { e.printStackTrace(); } finally { try { if (ps!=null){ ps.close(); } if (con!=null){ con.close(); } } catch (Exception e) { e.printStackTrace(); } } return row; } public List<Goods> seach(String keyword) { List<Goods>goodsList=new ArrayList<>(); try{ //加载驱动 Class.forName(driver); //获取连接 con= DriverManager.getConnection(url,user,password); //编写sql语句 String sql="select * from t_goods where gname like concat('%',?,'%')"; ps=con.prepareStatement(sql); ps.setObject(1,keyword); rs=ps.executeQuery(); while (rs.next()){ Goods goods=new Goods(); goods.setGid(rs.getInt("gid")); goods.setGname(rs.getString("gname")); goods.setPrice(rs.getDouble("price")); goods.setMark(rs.getString("mark")); goodsList.add(goods); } }catch (Exception e){ e.printStackTrace(); }finally { try { if (rs!=null){ rs.close(); } if (ps!=null){ ps.close(); } if (con!=null){ con.close(); } }catch (Exception e){ } } return goodsList; } }
模糊查询页面的展示效果
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/130146.html