JSP原理、使用

目录

1、JSP

1.1、什么是JSP

1.2、JSP原理

1.3、JSP基础语法

JSP表达式

jsp脚本片段

脚本片段的再实现

1.4、JSP指令

1.5、9大内置对象

1.6、JSP标签、JSTL标签、EL表达式

EL表达式: ${ }

JSP标签

JSTL表达式

JSTL标签库使用步骤

2、JavaBean

3、MVC三层架构

3.1、以前的MVC架构

3.2、现在的MVC架构

4、过滤器Filter  (重点)

5、监听器(listener)

实现一个监听器的接口;(有n种监听器)

6、过滤器、监听器常见应用

6.1、测试一个项目

7、JDBC

实验环境搭建:

导入数据库依赖

IDEA中连接数据库:(会)

JDBC 固定步骤:

        事务

Junit单元测试

        搭建一个环境,事务回滚


1、JSP

1.1、什么是JSP

Java Server Pages : Java服务器端页面,也和Servlet一样,用于动态Web技术!

最大的特点:

  • 写JSP就像在写HTML
  • 区别:
    • HTML只给用户提供静态的数据
    • JSP页面中可以嵌入JAVA代码,为用户提供动态数据

 1.2、JSP原理

思路:JSP到底怎么执行的!

  • 代码层面没有任何问题

  • 服务器内部工作

    tomcat中有一个work目录;

    IDEA中使用Tomcat的会在IDEA的tomcat中生产一个work目录

JSP原理、使用_第1张图片

我电脑的地址:

C:\Users\Administrator.IntelliJIdea2018.1\system\tomcat\Unnamed_javaweb-session-cookie\work\Catalina\localhost\ROOT\org\apache\jsp

发现页面转变成了Java程序!

浏览器向服务器发送请求,不管访问什么资源,其实都是在访问Servlet!

JSP最终也会被转换成为一个Java类!

JSP 本质上就是一个Servlet

//初始化
  public void _jspInit() {
      
  }
//销毁
  public void _jspDestroy() {
  }
//JSPService
  public void _jspService(.HttpServletRequest request,HttpServletResponse response)

  • 判断请求
  • 内置一些对象

final javax.servlet.jsp.PageContext pageContext;  //页面上下文
javax.servlet.http.HttpSession session = null;    //session
final javax.servlet.ServletContext application;   //applicationContext
final javax.servlet.ServletConfig config;         //config
javax.servlet.jsp.JspWriter out = null;           //out
final java.lang.Object page = this;               //page:当前页
HttpServletRequest request                        //请求
HttpServletResponse response                      //响应

  • 输出页面前增加的代码

response.setContentType("text/html");       //设置响应的页面类型
pageContext = _jspxFactory.getPageContext(this, request, response,
       null, true, 8192, true);
_jspx_page_context = pageContext;
application = pageContext.getServletContext();
config = pageContext.getServletConfig();
session = pageContext.getSession();
out = pageContext.getOut();
_jspx_out = out;

  • 以上的这些个对象我们可以在JSP页面中直接使用!

JSP原理、使用_第2张图片

在JSP页面中;

只要是 JAVA代码就会原封不动的输出;

如果是HTML代码,就会被转换为:

out.write("\r\n");

这样的格式,输出到前端!

 1.3、JSP基础语法

任何语言都有自己的语法,JAVA中有,。 JSP 作为java技术的一种应用,它拥有一些自己扩充的语法(了解,知道即可!),Java所有语法都支持!

JSP表达式

  <%--JSP表达式
  作用:用来将程序的结果,输出到客户端
  <%= 变量或者表达式%>
  --%>
  <%= new java.util.Date()%>
 

jsp脚本片段


  <%--jsp脚本片段--%>
  <%
    int sum = 0;
    for (int i = 1; i <=100 ; i++) {
      sum+=i;
    }
    out.println("

Sum="+sum+"

");
  %>

脚本片段的再实现

    <%
    int x = 10;
    out.println(x);
  %>
 

这是一个JSP文档


  <%
    int y = 2;
    out.println(y);
  %>

 



  <%--在代码嵌入HTML元素--%>
  <%
    for (int i = 0; i < 5; i++) {
  %>
   

Hello,World  <%=i%>


  <%
    }
  %>

JSP声明

  <%!
    static {
      System.out.println("Loading Servlet!");
    }

    private int globalVar = 0;

    public void kuang(){
      System.out.println("进入了方法Kuang!");
    }
  %>

JSP声明:会被编译到JSP生成Java的类中!其他的,就会被生成到_jspService方法中!

在JSP,嵌入Java代码即可!

<%%>
<%=%>
<%!%>

<%--注释--%>

jsp的注释不会在客户端显示,但HTML就会显示!

1.4、JSP指令

<%@page args.... %>
<%@include file=""%>

<%--@include会将两个页面合二为一--%>

<%@include file="common/header.jsp"%>

网页主体

<%@include file="common/footer.jsp"%>



<%--jSP标签
    jsp:include:拼接页面,本质还是三个
    --%>

网页主体


1.5、9大内置对象

  • PageContext  页面上下文  存东西
  • Request 存东西
  • Response
  • Session 存东西
  • Application 【SerlvetContext】 存东西
  • config 【SerlvetConfig】
  • out      输出
  • page ,不用了解
  • exception
<%
    pageContext.setAttribute("name1","大角牛1");   //保存的数据只在一个页面中有效
    request.setAttribute("name2","大角牛2");       //保存的数据只在一次请求中有效,请求转发也会携带这个数据
    session.setAttribute("name3","大角牛3");       //保存的数据只在一次会话中有效,从打开浏览器到关闭浏览器
    application.setAttribute("name4","大角牛4");   //保存的数据只在服务器中有效,从打开服务器到关闭服务器
%>

request:客户端向服务器发送请求,产生的数据,用户看完就没用了,比如:新闻,用户看完没用的!
session:客户端向服务器发送请求,产生的数据,用户用完一会还有用,比如:购物车;
application:客户端向服务器发送请求,产生的数据,一个用户用完了,其他用户还可能使用,比如:聊天数据;

1.6、JSP标签、JSTL标签、EL表达式

EL表达式: ${ }

  • 获取数据
  • 执行运算
  • 获取web开发的常用对象
  • 调用java方法

    javax.servlet
    jstl
    1.2





    taglibs
    standard
    1.1.2

JSP标签



111

<%--jsp:include--%> http://localhost:8080/jsptag.jsp?name=liupeiwang&age=12

JSTL表达式

JSTL标签库的使用就是为了弥补HTML标签的不足;它自定义许多标签,可以供我们使用,标签的功能和Java代码一样!

格式化标签

SQL标签

XML 标签

核心标签 (掌握部分):核心标签是最常用的 JSTL标签。引用核心标签库的语法如下:

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

JSP原理、使用_第3张图片

JSTL标签库使用步骤

  • 引入对应的 taglib
  • 使用其中的方法
  • 在Tomcat 也需要引入 jstl的包,否则会报错:JSTL解析错误

c:if标签

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%--引入jstl核心标签库,我们才能使用jstl标签--%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>


    Title



if测试


<%-- EL表达式获取表单中的数据 ${param.参数名} --%>
<%--判断如果提交的用户名是管理员,则登录成功--%> <%--注意自闭合标签--%>

c:choose  c:when

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>


    Title



<%--定义一个变量score,值为85--%>



    
        你的成绩优秀
    
    
        你的成绩为一般
    
    
        你的成绩为良好
    
    
    你的成绩为不及格
    



c:forEach

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ page import="java.util.ArrayList" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>


    Title


<%

    ArrayList people = new ArrayList<>();
    people.add(0,"张三");     //下标不能从1开始
    people.add(1,"李四");
    people.add(2,"王五");
    people.add(3,"赵六");
    people.add(4,"田七");
    request.setAttribute("list",people);
%>


<%--
var , 每一次遍历出来的变量
items, 要遍历的对象
begin,   哪里开始
end,     到哪里
step,   步长,一步走几个
--%>

     


2、JavaBean

实体类

JavaBean有特定的写法:

  • 必须要有一个无参构造
  • 属性必须私有化
  • 必须有对应的get/set方法;

一般用来和数据库的字段做映射 ORM;

ORM :对象关系映射

  • 表—>类
  • 字段–>属性
  • 行记录---->对象

people表

id name age address
1 牛牛1号 3 西安
2 牛牛2号 20 牡丹江
3 牛牛3号 100 广州

class People{
    private int id;
    private String name;
    private int age;
    private String address;
}

class A{
    new People(1,"牛牛1号",3,"西安");
    new People(2,"牛牛2号",20,"牡丹江");
    new People(3,"牛牛3号",100,"广州");
}

people.java

package com.wang.pojo;

//实体类,我们一般都是和数据库中的表结构一一对应!
public class People {
    private int id;
    private String name;
    private int age;
    private String address;

    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 int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }

    public String getAddress() {
        return address;
    }

    public void setAddress(String address) {
        this.address = address;
    }

    public People(int id, String name, int age, String address) {
        this.id = id;
        this.name = name;
        this.age = age;
        this.address = address;
    }

    public People() {
    }

    @Override
    public String toString() {
        return "People{" +
                "id=" + id +
                ", name='" + name + '\'' +
                ", age=" + age +
                ", address='" + address + '\'' +
                '}';
    }
}

javabean.jsp

<%@ page import="com.wang.pojo.People" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>


    Title



<%
//    这五行代码 与下面 前五行代码相同作用,new一个people对象,设置属性
//    People people=new People();
//    people.setId();
//    people.setName();
//    people.setAge();
//    people.setAddress();
%>

   <%--scope="page"作用于当前页面 --%>





<%--下面的代码得到属性,等价于这样的代码:<%=people.getId()%>  --%>

序号:
姓名:
年龄:
地址:



3、MVC三层架构

  • 什么是MVC: Model view Controller 模型、视图、控制器

3.1、以前的MVC架构

 用户直接访问控制层,控制层就可以直接操作数据库;

JSP原理、使用_第4张图片

以前版本逻辑就是servlet-->CRUD(JDBC)-->数据库
弊端:程序十分臃肿,不利于维护  
servlet的代码中:处理请求、响应、视图跳转、处理JDBC、处理业务代码、处理逻辑代码

架构:没有什么是加一层解决不了的!
程序猿调用

JDBC (实现该接口)

Mysql Oracle SqlServer ....(不同厂商)

3.2、现在的MVC架构

JSP原理、使用_第5张图片

 

Model

  • 业务处理 :业务逻辑(Service)
  • 数据持久层:CRUD (Dao - 数据持久化对象)

View

  • 展示数据
  • 提供链接发起Servlet请求 (a,form,img…)

Controller (Servlet)

  • 接收用户的请求 :(req:请求参数、Session信息….)
  • 交给业务层处理对应的代码
  • 控制视图的跳转
     

登录--->接收用户的登录请求--->处理用户的请求(获取用户登录的参数,username,password)---->交给业务层处理登录业务(判断用户名密码是否正确:事务)--->Dao层查询用户名和密码是否正确-->数据库

4、过滤器Filter  (重点)

比如 Shiro安全框架技术就是用Filter来实现的

Filter:过滤器 ,用来过滤网站的数据;

  • 处理中文乱码
  • 登录验证….

(比如用来过滤网上骂人的话,出现***过滤掉字)

 

JSP原理、使用_第6张图片

Filter开发步骤:

     1.导包:


        
        
            javax.servlet
            servlet-api
            2.5
        

        
        
            javax.servlet.jsp
            javax.servlet.jsp-api
            2.3.3
        

        
        
            javax.servlet
            jstl
            1.2
        


        
        
            taglibs
            standard
            1.1.2
        

        
        
            mysql
            mysql-connector-java
            8.0.28
        



    

      2.编写过滤器

               导Filter包要注意导入 javax.servlet 的(注意)

JSP原理、使用_第7张图片实现Filter接口,重写对应的方法即可:

CharacterEncodingFilter.java
package com.wang.filter;

import javax.servlet.*;
import java.io.IOException;

public class CharacterEncodingFilter implements Filter {

    //初始化:web服务器启动,就已经初始化了,随时等待过滤对象出现!
    public void init(FilterConfig filterConfig) throws ServletException {
        System.out.println("CharacterEncodingFilter初始化");
    }

    //chain:链。看能不能过行
    /*
          1. 过滤中的所有代码,在过滤特定请求的时候都会执行
          2. 必须要让过滤器继续同行
        chain.doFilter(request,response);
    */
    public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
        request.setCharacterEncoding("utf-8");
        response.setCharacterEncoding("utf-8");
        response.setContentType("text/html;charset=UTF-8");

        System.out.println("CharacterEncodingFilter执行前...");
        chain.doFilter(request, response);  //让我们的请求继续走,如果不写,程序到这里就被拦截停止
        System.out.println("CharacterEncodingFilter执行后...");
    }

    //销毁:web服务器关闭的时候,过滤器会销毁
    public void destroy() {
        System.out.println("CharacterEncodingFilter销毁");
    }
}
ShowServlet.java
package com.wang.servlet;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

public class ShowServlet extends HttpServlet {
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        resp.getWriter().write("你好呀,过滤!");
    }

    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        doGet(req, resp);
    }
}

在web.xml中配置 Filter


        ShowServlet
        com.wang.servlet.ShowServlet
    
    
        ShowServlet
        /servlet/show
    
    
        ShowServlet
        /show
    


    
        CharacterEncodingFilter
        com.wang.filter.CharacterEncodingFilter
    
    
        CharacterEncodingFilter

        /servlet/*
    

5、监听器(listener)

实现一个监听器的接口;(有n种监听器)

OnlineCountListener.java
package com.wang.listener;

import javax.servlet.ServletContext;
import javax.servlet.http.HttpSessionEvent;
import javax.servlet.http.HttpSessionListener;

//统计网站在线人数 : 统计session
public class OnlineCountListener implements HttpSessionListener {

    //创建session监听: 看你的一举一动
    //一旦创建Session就会触发一次这个事件!
    public void sessionCreated(HttpSessionEvent se) {
        ServletContext ctx = se.getSession().getServletContext();

        System.out.println(se.getSession().getId());

        Integer onlineCount = (Integer) ctx.getAttribute("OnlineCount");

        if (onlineCount==null){
            onlineCount = new Integer(1);
        }else {
            int count = onlineCount.intValue();
            onlineCount = new Integer(count+1);
        }

        ctx.setAttribute("OnlineCount",onlineCount);

    }

    //销毁session监听
    //一旦销毁Session就会触发一次这个事件!
    public void sessionDestroyed(HttpSessionEvent se) {
        ServletContext ctx = se.getSession().getServletContext();

        Integer onlineCount = (Integer) ctx.getAttribute("OnlineCount");

        if (onlineCount==null){
            onlineCount = new Integer(0);
        }else {
            int count = onlineCount.intValue();
            onlineCount = new Integer(count-1);
        }

        ctx.setAttribute("OnlineCount",onlineCount);

    }
}

/*
    Session销毁:
    1. 手动销毁  getSession().invalidate();
    2. 自动销毁  在web.xml中配
    
        1    1分钟
    
*/

index.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>

  
    $Title$
  
  

当前有:<%=this.getServletConfig().getServletContext().getAttribute("OnlineCount")%> 人在线

web.xml


    com.wang.listener.OnlineCountListener

6、过滤器、监听器常见应用

监听器:GUI编程中经常使用;

TestPanel.java
package com.wang.listener;

import java.awt.*;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;

public class TestPanel {
    public static void main(String[] args) {
        Frame frame = new Frame("中秋节快乐");  //新建一个窗体
        Panel panel = new Panel(null); //面板
        frame.setLayout(null); //设置窗体的布局

        frame.setBounds(300,300,500,500);
        frame.setBackground(new Color(0,0,255)); //设置背景颜色

        panel.setBounds(50,50,300,300);
        panel.setBackground(new Color(0,255,0)); //设置背景颜色

        frame.add(panel);

        frame.setVisible(true);

        //监听事件,监听关闭事件
        frame.addWindowListener(new WindowAdapter() {
            @Override
            public void windowClosing(WindowEvent e) {
                System.exit(0);
            }
        });

    }
}

6.1、测试一个项目

测试:实现登录注销功能

要求:用户登录admin成功之后才能进入成功主页!用户注销后就不能再直接进入成功主页了!注销后直接进入成功主页会跳转到错误页面让你返回登录,必须再次登录admin成功才能进入成功主页。

  1. 用户登录之后,向Sesison中放入用户的数据
  2. 进入主页的时候要判断用户是否已经登录;要求:在过滤器中实现!

sys包下success.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>


    Title



主页

注销

error.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>


    Title


错误页面

没有权限,用户名错误

返回登录页面

login.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>


    Title



登录

web.xml


    LoginServlet
    com.wang.servlet.LoginServlet


    LoginServlet
    /servlet/login




    LogoutServlet
    com.wang.servlet.LogoutServlet


    LogoutServlet
    /servlet/logout




    SysFilter
    com.wang.filter.SysFilter


    SysFilter
    /sys/*

util包下Constant.java

package com.wang.util;

public class Constant {
    public static String USER_SESSION="USER_SESSION";
}
servlet包下LoginServlet.java
package com.wang.servlet;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

public class LoginServlet extends HttpServlet {
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        //获取前端请求的参数
        String username = req.getParameter("username");

        if(username.equals("admin")){       //登录成功
            req.getSession().setAttribute("USER_SESSION",req.getSession().getId());
            resp.sendRedirect("/sys/success.jsp");
        }else{          //登录失败
            resp.sendRedirect("/error.jsp");
        }
    }

    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        doGet(req, resp);
    }
}
filter包下的SysFilter.java
package com.wang.filter;

import javax.servlet.*;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

public class SysFilter implements Filter {
    public void init(FilterConfig filterConfig) throws ServletException {

    }

    public void doFilter(ServletRequest req, ServletResponse resp, FilterChain chain) throws IOException, ServletException {
        //ServletRequest    HttpServletRequest
        HttpServletRequest  request = (HttpServletRequest) req;
        HttpServletResponse response = (HttpServletResponse) resp;

        if (request.getSession().getAttribute("USER_SESSION")==null){
            response.sendRedirect("/error.jsp");
        }

        chain.doFilter(request,response);


    }

    public void destroy() {

    }
}
servlet包下的LogoutServlet.java
package com.wang.servlet;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

//注销页面
public class LogoutServlet extends HttpServlet {
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {

        Object user_session = req.getSession().getAttribute("USER_SESSION");

        if (user_session!=null){
            req.getSession().removeAttribute("USER_SESSION");
            resp.sendRedirect("/login.jsp");
        }else{
            resp.sendRedirect("/login.jsp");
        }
    }

    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        doGet(req, resp);
    }
}
这个项目的上面代码。(其中实现用户注销后就不能再直接进入成功主页了!注销后直接进入成功主页会跳转到错误页面让你返回登录,必须再次登录admin成功才能进入成功主页)。实现这个功能的主要代码片段是在SysFilter过滤器中的如下代码:

public void doFilter(ServletRequest req, ServletResponse resp, FilterChain chain) throws IOException, ServletException {
    //ServletRequest    HttpServletRequest
    //下面五行代码的功能就是  :用户注销后就不能再直接进入成功主页了!注销后直接进入成功主页会跳转到错误页面让你返回登录,必须再次登录admin成功才能进入成功主页。
    HttpServletRequest  request = (HttpServletRequest) req;
    HttpServletResponse response = (HttpServletResponse) resp;

    if (request.getSession().getAttribute("USER_SESSION")==null){
        response.sendRedirect("/error.jsp");
    }

    chain.doFilter(request,response);

7、JDBC

什么是JDBC:java连接数据库!

JSP原理、使用_第8张图片

 需要jar包的支持:

  • java.sql
  • javax.sql
  • mysql-connector-java-8.0.28 连接驱动(必须要导入)

实验环境搭建:


CREATE TABLE users(
    id INT PRIMARY KEY,
    `name` VARCHAR(40),
    `password` VARCHAR(40),
    email VARCHAR(60),
    birthday DATE
);

INSERT INTO users(id,`name`,`password`,email,birthday)
VALUES(1,'张三','123456','[email protected]','2000-01-01');
INSERT INTO users(id,`name`,`password`,email,birthday)
VALUES(2,'李四','123456','[email protected]','2000-01-01');
INSERT INTO users(id,`name`,`password`,email,birthday)
VALUES(3,'王五','123456','[email protected]','2000-01-01');

导入数据库依赖


    
    
        mysql
        mysql-connector-java
        8.0.28
    

IDEA中连接数据库:(会)

JDBC 固定步骤:

  1. 加载驱动
  2. 连接数据库,代表数据库
  3. 向数据库发送SQL的对象Statement : CRUD
  4. 编写SQL (根据业务,不同的SQL)
  5. 执行SQL
  6. 关闭连接(先开的后关)

JDBC连接数据库:

public class TestJdbc {
    public static void main(String[] args) throws ClassNotFoundException, SQLException {
        //配置信息
        //useUnicode=true&characterEncoding=utf-8 解决中文乱码
        String url="jdbc:mysql://localhost:3306/jdbc?useUnicode=true&characterEncoding=utf-8";
        String username = "root";
        String password = "123456";

        //1.加载驱动
        Class.forName("com.mysql.cj.jdbc.Driver");
        //2.连接数据库,代表数据库
        Connection connection = DriverManager.getConnection(url, username, password);

        //3.向数据库发送SQL的对象Statement,PreparedStatement : CRUD
        Statement statement = connection.createStatement();

        //4.编写SQL
        String sql = "select * from users";

        //5.执行查询SQL,返回一个 ResultSet  : 结果集
        ResultSet rs = statement.executeQuery(sql);

        while (rs.next()){
            System.out.println("id="+rs.getObject("id"));
            System.out.println("name="+rs.getObject("name"));
            System.out.println("password="+rs.getObject("password"));
            System.out.println("email="+rs.getObject("email"));
            System.out.println("birthday="+rs.getObject("birthday"));
        }

        //6.关闭连接,释放资源(一定要做) 先开的后关
        rs.close();
        statement.close();
        connection.close();
    }
}

预编译SQL:

package com.wang.test;

import java.sql.*;

public class TestJdbc {
    public static void main(String[] args) throws ClassNotFoundException, SQLException {
        //配置信息
        //useUnicode=true&characterEncoding=utf-8 解决中文乱码
        String url="jdbc:mysql://localhost:3306/jdbc?useUnicode=true&characterEncoding=utf-8";
        String username = "root";
        String password = "123456";

        //1.加载驱动
        Class.forName("com.mysql.cj.jdbc.Driver");
        //2.连接数据库,代表数据库
        Connection connection = DriverManager.getConnection(url, username, password);

        //3.向数据库发送SQL的对象Statement,PreparedStatement : CRUD
        Statement statement = connection.createStatement();

        //4.编写SQL
        String sql = "select * from users";

        //5.执行查询SQL,返回一个 ResultSet  : 结果集
        ResultSet rs = statement.executeQuery(sql);

        while (rs.next()){
            System.out.println("id="+rs.getObject("id"));
            System.out.println("name="+rs.getObject("name"));
            System.out.println("password="+rs.getObject("password"));
            System.out.println("email="+rs.getObject("email"));
            System.out.println("birthday="+rs.getObject("birthday"));
        }

        //6.关闭连接,释放资源(一定要做) 先开的后关
        rs.close();
        statement.close();
        connection.close();
    }
}

事务

要么都成功,要么都失败!

ACID原则:保证数据的安全。

开启事务
事务提交  commit()
事务回滚  rollback()
关闭事务

转账:
A:1000
B:1000
    
A(900)   --100-->   B(1100) 

Junit单元测试

依赖


    junit
    junit
    4.11

简单使用

@Test注解只有在方法上有效,只要加了这个注解的方法,就可以直接运行!失败的时候是红色:

package com.wang.test;

import org.junit.Test;

public class lll {
    @Test
    public void test(){
    System.out.println("Hello");
    }
}

运行结果:

JSP原理、使用_第9张图片

 

搭建一个环境,事务回滚

CREATE TABLE account(
   id INT PRIMARY KEY AUTO_INCREMENT,
   `name` VARCHAR(40),
   money FLOAT
);

INSERT INTO account(`name`,money) VALUES('A',1000);
INSERT INTO account(`name`,money) VALUES('B',1000);
INSERT INTO account(`name`,money) VALUES('C',1000);

package com.wang.test;

import org.junit.jupiter.api.Test;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;

public class javaJDBC3 {
    @Test
    public void test() {
        //配置信息
        //useUnicode=true&characterEncoding=utf-8 解决中文乱码
        String url="jdbc:mysql://localhost:3306/jdbc?useUnicode=true&characterEncoding=utf-8";
        String username = "root";
        String password = "123456";

        Connection connection = null;

        //1.加载驱动
        try {
            Class.forName("com.mysql.cj.jdbc.Driver");
            //2.连接数据库,代表数据库
            connection = DriverManager.getConnection(url, username, password);

            //3.通知数据库开启事务,false 开启
            connection.setAutoCommit(false);

            String sql = "update account set money = money-100 where name = 'A'";
            connection.prepareStatement(sql).executeUpdate();

            //制造错误
            //int i = 1/0;

            String sql2 = "update account set money = money+100 where name = 'B'";
            connection.prepareStatement(sql2).executeUpdate();

            connection.commit();//以上两条SQL都执行成功了,就提交事务!
            System.out.println("success");
        } catch (Exception e) {
            try {
                //如果出现异常,就通知数据库回滚事务
                connection.rollback();
            } catch (SQLException e1) {
                e1.printStackTrace();
            }
            e.printStackTrace();
        }finally {
            try {
                connection.close();
            } catch (SQLException e) {
                e.printStackTrace();
            }
        }
    }
}

 

随便发一个SMBMS(超市管理项目)

https://blog.csdn.net/bell_love/article/details/106157413

你可能感兴趣的:(后端,maven,intellij-idea,java,服务器)