木舟0基础学习Java的第二十六天(JavaWeb)

设置响应头

resp.setHeader("key","nihao");//推荐使用英文 中文会乱码

案例:模拟登录

 jdbc.properties

driverClass=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/test?verifyServerCertificate=false&useSSL=false
name=root
password=123456

JDBCUtil

public class JDBCUtil {static String driverClass=null;static String url=null;static String name=null;static String password=null;static{Properties properties=new Properties();InputStream is=null;try {is=JDBCUtil.class.getClassLoader().getResourceAsStream("jdbc.properties");properties.load(is);driverClass=properties.getProperty("driverClass");url=properties.getProperty("url");name=properties.getProperty("name");password=properties.getProperty("password");} catch (IOException e) {throw new RuntimeException(e);}}public static Connection getConn(){Connection conn=null;try {Class.forName(driverClass);conn= DriverManager.getConnection(url,name,password);} catch (Exception e) {throw new RuntimeException(e);}return conn;}private static void closeConn(Connection conn){if(conn!=null){try {conn.close();} catch (SQLException e) {throw new RuntimeException(e);}finally{conn=null;}}}private static void closePs(PreparedStatement ps){if(ps!=null){try {ps.close();} catch (SQLException e) {throw new RuntimeException(e);}finally{ps=null;}}}private static void closeRs(ResultSet rs){if(rs!=null){try {rs.close();} catch (SQLException e) {throw new RuntimeException(e);}finally{rs=null;}}}public static void release(Connection conn,PreparedStatement ps,ResultSet rs){closeRs(rs);closePs(ps);closeConn(conn);}public static void release(Connection conn,PreparedStatement ps){closePs(ps);closeConn(conn);}
}

T_user

需要实现序列化 Serializable接口

public class T_user implements Serializable{private int id;private String name;private String pwd;public int getId() {return id;}public void setId(int id) {this.id = id;}public String getName() {return name;}public void setName(String name) {this.name = name;}public String getPwd() {return pwd;}public void setPwd(String pwd) {this.pwd = pwd;}@Overridepublic String toString() {return "T_user{" +"id=" + id +", name='" + name + '\'' +", pwd='" + pwd + '\'' +'}';}
}

UserDao

public interface UserDao {public T_user login(String uname, String pwd);
}

UserDaoImpl

public class UserDaoImpl implements UserDao {//处理数据连接数据库Connection conn=null;PreparedStatement ps=null;ResultSet rs=null;T_user user=null;@Overridepublic T_user login(String uname, String pwd) {try {conn= JDBCUtil.getConn();String sql="select * from t_user where uname=? and pwd=?";ps=conn.prepareStatement(sql);ps.setString(1,uname);ps.setString(2,pwd);rs=ps.executeQuery();while(rs.next()){String uname1 = rs.getString("uname");String pwd1 = rs.getString("pwd");user=new T_user();user.setName(uname1);user.setPwd(pwd1);}} catch (SQLException e) {throw new RuntimeException(e);}finally{JDBCUtil.release(conn,ps,rs);}return user;}
}

LoginService

@WebServlet("/LoginService")
public class LoginService extends HttpServlet {private UserDao UserDao;public LoginService() {UserDao=new UserDaoImpl();}@Overrideprotected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {req.setCharacterEncoding("utf-8");resp.setContentType("text/html;charset=utf-8");String uname = req.getParameter("uname");String pwd = req.getParameter("pwd");System.out.println("uname:" + uname + "\tpwd:" + pwd);T_user user=UserDao.login(uname,pwd);if(user!=null){resp.getWriter().write("<font color='red' size=30>登录成功,欢迎"+user.getName()+"回来!</font>");}else{resp.getWriter().write("<font color='red' size=30>登录失败,账号或密码错误!</font>");}}
}

login.html

<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Title</title>
</head>
<body>
<form action="LoginService" method="post">用户名:<input type="text" name="uname">密码:<input type="password" name="pwd">爱好:<input type="checkbox" name="hobby" value="抽烟">抽烟<input type="checkbox" name="hobby" value="喝酒">喝酒<input type="checkbox" name="hobby" value="烫头">烫头<input type="checkbox" name="hobby" value="蹦迪">蹦迪<input type="submit" value="提交">
</form>
</body>
</html>

请求转发重定向

请求转发

特点:路径不会发生改变

缺点:每次刷新页面 就相当于重新提交

请求转发 在登录场景 和 转账场景不能使用
req.getRequestDispatcher("success.html").forward(req,resp);

重定向

缺点:不能携带数据

 resp.sendRedirect("success.html");

servlet跳转servlet

//将数据以键值对的方式存入req.setAttribute("user", user);//key,valuereq.getRequestDispatcher("HanderServlet").forward(req, resp);
@WebServlet("/HanderServlet")
public class HanderServlet extends HttpServlet {@Overrideprotected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {T_user user = (T_user)req.getAttribute("user");//利用getAttribute获取值resp.getWriter().write("<h1>系统提示</h1>");resp.getWriter().write("<hr/>");resp.getWriter().write("<font color='red'>欢迎,"+user.getUname()+"登录成功!</font>");}
}

Cookie

cookie技术是浏览器端的数据存储技术 解决了同一个工程下不同请求需要使用相同数据的问题 我们把请求需要共享的请求数据 存储在浏览器端 避免用户进行重复书写请求数据 

特点:适合少量数据 键值对 不安全

注意:一个cookie对象存储一条数据 多条数据 可以创建多个cookie对象进行存储

作用:Cookie技术解决不同请求发送之间的数据共享问题

Cookie的使用

@WebServlet("/LoginSerlet")
public class LoginUser extends HttpServlet {private com.dao.UserDao UserDao;public LoginUser() {UserDao = new UserDaoImpl();}@Overrideprotected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {req.setCharacterEncoding("UTF-8");resp.setContentType("text/html;charset=UTF-8");String uname = req.getParameter("uname");String pwd = req.getParameter("pwd");System.out.println("uname:" + uname + "\tpwd:" + pwd);T_user user=UserDao.login(uname,pwd);if(user!=null){//将数据存储到Cookie当中Cookie c1=new Cookie("name",user.getUname());Cookie c2=new Cookie("pwd",user.getPwd());//设置三天免登录 默认不设置时间 关闭浏览器立即失效c1.setMaxAge(24*3600*3);//把存储了登录信息的Cookie 通过响应resp 响应到浏览器中resp.addCookie(c1);resp.addCookie(c2);resp.sendRedirect("success");}else{req.getRequestDispatcher("login.html").forward(req, resp);}}
}
@WebServlet("/success")
public class LoginServlet extends HttpServlet {@Overrideprotected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {req.setCharacterEncoding("UTF-8");resp.setContentType("text/html;charset=UTF-8");//通过浏览器携带的cookie name=admin pwd=123456 找tomcat中cookie对象的数据//获取cookieCookie[] cookies = req.getCookies();//键值对String value=null;//遍历所有cookie 找cookie的key是user的cookie对象for (Cookie c : cookies) {if("name".equals(c.getName())) {value = c.getValue();System.out.println("name:"+value);}if("pwd".equals(c.getName())) {value = c.getValue();System.out.println("pwd:"+value);}}resp.getWriter().write("<h1>系统提示</h1>");resp.getWriter().write("<hr/>");resp.getWriter().write("<font color='red'>欢迎,"+value+"登录成功!</font>");}
}

中央仓库(jar包下载)

Maven Repository: Central (mvnrepository.com)icon-default.png?t=O83Ahttps://mvnrepository.com/repos/central

 Session

首先创建Session Session在tomcat容器中 有且只有一个

Session默认时间30分钟 在开发中一般都使用Session存储用户登录信息

@WebServlet("/SessionLogin")
public class SessionLogin extends HttpServlet {UserService service;public SessionLogin() {service = new UserServiceImpl();}@Overrideprotected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {req.setCharacterEncoding("UTF-8");resp.setContentType("text/html;charset=UTF-8");String uname = req.getParameter("uname");String pwd = req.getParameter("pwd");T_stu stu = service.login(uname, pwd);if(stu!=null){//创建sessionHttpSession session = req.getSession();//将数据以键值对的方式存入session.setAttribute("stu", stu);resp.sendRedirect("SessionUser");}else{req.getRequestDispatcher("login.html").forward(req, resp);}}
}
@WebServlet("/SessionUser")
public class SessionUser extends HttpServlet {@Overrideprotected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {req.setCharacterEncoding("UTF-8");resp.setContentType("text/html;charset=UTF-8");//创建sessionHttpSession session = req.getSession();//获取数据T_stu stu =(T_stu)session.getAttribute("stu");resp.getWriter().write("<h1>系统提示</h1>");resp.getWriter().write("<hr/>");resp.getWriter().write("<h1>登录成功,欢迎"+stu.getUname()+"登录!</h1>");resp.getWriter().write("<a href='exit'>退出</a>");}
}
@WebServlet("/exit")
public class SessionExit extends HttpServlet {@Overrideprotected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {req.setCharacterEncoding("UTF-8");resp.setContentType("text/html;charset=UTF-8");HttpSession session = req.getSession();//关闭sessionsession.invalidate();resp.sendRedirect("login.html");}
}

ServletContext(上下文对象携带数据)

生命周期 程序启动到结束

作用域 在项目内

创建

        //第一种创建方式 有就创建 没有就获取ServletContext sc1= this.getServletContext();//第二种ServletContext sc2=req.getSession().getServletContext();//第三种ServletContext c3=this.getServletConfig().getServletContext();

得到

 ServletContext sc = this.getServletContext();String a =(String) sc.getAttribute("a");String b =(String) sc.getAttribute("b");String c =(String) sc.getAttribute("c");resp.getWriter().write("a:"+a+"b:"+b+"c:"+c);

删除

ServletContext sc = this.getServletContext();//删除bsc.removeAttribute("b");

读取配置文件的配置信息

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"version="4.0"><context-param><param-name>name</param-name><param-value>木舟</param-value></context-param>
</web-app>
String city = sc.getInitParameter("city");System.out.println(city);

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/53284.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

第十三届山东省ICPC

vp链接&#xff1a;https://codeforces.com/gym/104417 A. Orders 根据题意模拟&#xff0c;分别按照 a&#xff0c;b 排序&#xff0c;排序后再判断该订单是否能完成。 #include <bits/stdc.h> using namespace std;#define int long longconst int N 105; int n, k…

pikachu文件包含漏洞靶场

本地文件包含 1、先随意进行提交 可以得出是GET传参 可以在filename参数进行文件包含 2、准备一个2.jpg文件 内容为<?php phpinfo();?> 3、上传2.jpg文件 4、访问文件保存的路径uploads/2.jpg 5、将我们上传的文件包含进来 使用../返回上级目录 来进行包含木马文件 …

备战秋招60天算法挑战,Day33

题目链接&#xff1a; https://leetcode.cn/problems/longest-increasing-subsequence/ 视频题解&#xff1a; https://www.bilibili.com/video/BV1RRvheFEog/ LeetCode 300. 最长递增子序列 题目描述 给你一个整数数组nums &#xff0c;找到其中最长严格递增子序列的长度。 …

自幂数判断c++

题目描述 样例输入 3 152 111 153样例输出 F F T 代码如下&#xff1a; #include<bits/stdc.h> using namespace std; long long m,a; int main(){cin>>m;for(int i1;i<m;i){cin>>a;long long ta,n[10],cc0,s0;while(t!0){//求位数与拆位n[cc]t%10;tt/…

多线程篇(并发相关类- 原子操作类)(持续更新迭代)

目录 前言 一、原子变量操作类&#xff08;AtomicLong为例&#xff09; 1. 前言 2. 实例 二、JDK 8新增的原子操作类LongAdder 三、LongAccumulator类原理探究 前言 JUC包提供了一系列的原子性操作类&#xff0c;这些类都是使用非阻塞算法CAS实现的&#xff0c;相比使用…

dubbo 服务消费原理分析之应用级服务发现

文章目录 前言一、MigrationRuleListener1、迁移状态模型2、Provider 端升级3、Consumer 端升级4、服务消费选址5、MigrationRuleListener.onRefer6、MigrationRuleHandler.doMigrate6、MigrationRuleHandler.refreshInvoker7、MigrationClusterInvoker.migrateToApplicationFi…

初识命名空间

1.创建两个命名空间 ip netns add host1 ip netns add host2 2. 查看命名空间 ip netns ls 3 、 创建veth ip -netns host1 link add veth0 type veth peer name host1-peer 4、 查看命名空间接口 ip -netns host1 address 5、 把host1-peer移动到host2命名空间 ip -ne…

ctfshow-nodejs

什么是nodejs Node.js 是一个基于 Chrome V8 引擎的 Javascript 运行环境。可以说nodejs是一个运行环境&#xff0c;或者说是一个 JS 语言解释器 Nodejs 是基于 Chrome 的 V8 引擎开发的一个 C 程序&#xff0c;目的是提供一个 JS 的运行环境。最早 Nodejs 主要是安装在服务器…

SAP B1 基础实操 - 用户定义字段 (UDF)

目录 一、功能介绍 1. 使用场景 2. 操作逻辑 3. 常用定义部分 3.1 主数据 3.2 营销单据 4. 字段设置表单 4.1 字段基础信息 4.2 不同类详细设置 4.3 默认值/必填 二、案例 1 要求 2 操作步骤 一、功能介绍 1. 使用场景 在实施过程中&#xff0c;经常会碰见用户需…

Jmeter使用时小技巧添加“泊松随机定时器“模拟用户思考时间

1、模拟用户思考时间&#xff0c;添加"泊松随机定时器"

SQL Server导入导出

SQL Server导入导出 导出导入 这里已经安装好了SQL Server&#xff0c;也已经创建了数据库和表。现在想导出来给别人使用&#xff0c;所以需要导入导出功能。环境&#xff1a;SQL Server 2012 SP4 如果没有安装&#xff0c;可以查看安装教程&#xff1a; Microsoft SQL Server …

装WebVideoCreator记录

背景&#xff0c;需要在docker容器内配置WebVideoCreator环境&#xff0c;配置npm、node.js WebVideoCreator地址&#xff1a;https://github.com/Vinlic/WebVideoCreator 配置环境&#xff0c;使用这个教程&#xff1a; linux下安装node和npm_linux离线安装npm-CSDN博客 1…

JavaWeb - Mybatis - 基础操作

删除Delete 接口方法&#xff1a; Mapper public interface EmpMapper { //Delete("delete from emp where id 17") //public void delete(); //以上delete操作的SQL语句中的id值写成固定的17&#xff0c;就表示只能删除id17的用户数据 //SQL语句中的id值不能写成…

[数据集][目标检测]西红柿成熟度检测数据集VOC+YOLO格式3241张5类别

数据集格式&#xff1a;Pascal VOC格式YOLO格式(不包含分割路径的txt文件&#xff0c;仅仅包含jpg图片以及对应的VOC格式xml文件和yolo格式txt文件) 图片数量(jpg文件个数)&#xff1a;3241 标注数量(xml文件个数)&#xff1a;3241 标注数量(txt文件个数)&#xff1a;3241 标注…

GitHub精选|8 个强大工具,助力你的开发和探究工作

本文精选了8个来自 GitHub 的优秀项目&#xff0c;涵盖了 低代码、报表工具、Web 开发、云原生、通知管理、构建系统、生物计算、位置追踪、API 规范和依赖更新等方面&#xff0c;为开发者和研究人员提供了丰富的资源和灵感。 目录 1.防弹 React&#xff1a;构建强大的 Web 应…

第十周:机器学习笔记

第十周机器学习周报 摘要Abstract机器学习——self-attention&#xff08;注意力机制&#xff09;1. 为什么要用self-attention2. self-attention 工作原理2.1 求α的两种方式2.2 attention-score&#xff08;关联程度&#xff09; Pytorch学习1. 损失函数代码实战1.1 L1loss&a…

电路分析 ---- 加法器

1 同相加法器 分析过程 虚短&#xff1a; u u − R G R G R F u O u_{}u_{-}\cfrac{R_{G}}{R_{G}R_{F}}u_{O} u​u−​RG​RF​RG​​uO​ i 1 u I 1 − u R 1 i_{1}\cfrac{u_{I1}-u_{}}{R_{1}} i1​R1​uI1​−u​​&#xff1b; i 2 u I 2 − u R 2 i_{2}\cfrac{u_{…

如何判断小程序是运行在“企业微信”中的还是运行在“微信”中的?

如何判断小程序是运行在“企业微信”中的还是运行在“微信”中的&#xff1f; 目录 如何判断小程序是运行在“企业微信”中的还是运行在“微信”中的&#xff1f; 一、官方开发文档 1.1、“微信小程序”开发文档的说明 1.2、“企业微信小程序”开发文档的说明 1.3、在企业…

无线信道中ph和ph^2的场景

使用 p h ph ph的情况&#xff1a; Rayleigh 分布的随机变量可以通过两个独立且相同分布的零均值、高斯分布的随机变量表示。设两个高斯随机变量为 X ∼ N ( 0 , σ 2 ) X \sim \mathcal{N}(0, \sigma^2) X∼N(0,σ2)和 Y ∼ N ( 0 , σ 2 ) Y \sim \mathcal{N}(0, \sigma^2)…

终端协会发布《移动互联网应用程序(App)自动续费测评规范》

随着移动互联网的快速发展&#xff0c;App自动续费服务已成为许多应用的标配&#xff0c;但同时也引发了不少消费者的投诉和不满。为了规范这一市场行为&#xff0c;保护消费者的合法权益&#xff0c;电信终端协会&#xff08;TAF&#xff09;发布了《移动互联网应用程序&#…