07 2021 档案
摘要:// // Source code recreated from a .class file by IntelliJ IDEA // (powered by Fernflower decompiler) // package org.springframework.boot.autoconfigur
阅读全文
摘要:1 1 package com.haifei.springboot8condition; 2 3 import org.springframework.boot.SpringApplication; 4 import org.springframework.boot.autoconfigure.Sp
阅读全文
摘要:1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 3
阅读全文
摘要:1 springboot默认连接本地redis,默认6379端口号,不需要配置,注入redisTemplate后直接使用即可 1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/
阅读全文
摘要:1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 3
阅读全文
摘要:1、配置文件分类 1-1 properties 1-2 yml 1-3 yaml 2、yaml 1 server: 2 port: 8082 3 4 5 name: wangwu 6 7 #对象 8 person: 9 # name: zhansgan 10 name: ${name} #参数引用-
阅读全文
摘要:SpringBoot快速入门 1、创建maven项目 2、导入springboot起步依赖 1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" 3 xmlns:xs
阅读全文
摘要:课程概述 SpringBoot概述
阅读全文
摘要:项目结构 pom.xml 1 <?xml version="1.0" encoding="UTF-8"?> 2 3 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSche
阅读全文
摘要:搭建和测试Mybatis的开发环境 创建和编写sqlMapConfig.xml配置文件 1 jdbc.driver=com.mysql.jdbc.Driver 2 jdbc.url=jdbc:mysql://localhost:3306/hm_ssm 3 jdbc.username=root 4 j
阅读全文
摘要:搭建和测试SpringMVC的开发环境 在web.xml中配置DispatcherServlet前端控制器和CharacterEncodingFilter编码过滤器 1 <!DOCTYPE web-app PUBLIC 2 "-//Sun Microsystems, Inc.//DTD Web Ap
阅读全文
摘要:1 # Set root category priority to INFO and its only appender to CONSOLE. 2 #log4j.rootCategory=INFO, CONSOLE debug info warn error fatal 3 log4j.rootC
阅读全文
摘要:SSM框架整合思路 1、创建数据库表结构 1 create table account( 2 id int primary key auto_increment, 3 name varchar(20), 4 money double 5 ); 2、创建maven工程(利用webapp骨架模板) 3、
阅读全文
摘要:1 package com.haifei.domain; 2 3 public class Role { 4 5 private int id; 6 private String roleName; 7 private String roleDesc; 8 9 public int getId()
阅读全文
摘要:1 package com.haifei.domain; 2 3 import java.util.Date; 4 import java.util.List; 5 6 public class User { 7 8 private int id; 9 private String username
阅读全文
摘要:1 package com.haifei.domain; 2 3 import java.util.Date; 4 import java.util.List; 5 6 public class User { 7 8 private int id; 9 private String username
阅读全文
摘要:注解方式实现Mybatis的增删改查 1 <?xml version="1.0" encoding="UTF-8" ?> 2 <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org
阅读全文
摘要:传统xml方式实现Mybatis的增删改查 1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" 3 xmlns:xsi="http://www.w3.org/200
阅读全文
摘要:1 <?xml version="1.0" encoding="UTF-8" ?> 2 <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-conf
阅读全文
摘要:1 package com.haifei.domain; 2 3 import java.util.Date; 4 import java.util.List; 5 6 /** 7 * user表 8 * sys_user_role表 9 */ 10 public class User { 11 1
阅读全文
摘要:1 package com.haifei.domain; 2 3 import java.util.Date; 4 import java.util.List; 5 6 /** 7 * user表 8 */ 9 public class User { 10 11 private int id; 12
阅读全文
摘要:1 package com.haifei.domain; 2 3 import java.util.Date; 4 import java.util.List; 5 6 /** 7 * user表 8 */ 9 public class User { 10 11 private int id; 12
阅读全文
摘要:typeHandlers标签 1 package com.haifei.domain; 2 3 import java.util.Date; 4 5 public class User { 6 7 private int id; 8 private String username; 9 privat
阅读全文
摘要:动态sql语句 1 package com.haifei.mapper; 2 3 import com.haifei.domain.User; 4 5 import java.util.List; 6 7 public interface UserMapper { 8 9 public List<U
阅读全文
摘要:1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
阅读全文
摘要:userMapper.xml + <!--根据id进行查询--> <select id="findById" resultType="user" parameterType="int"> select * from user where id=#{id} </select> 1 MybatisTes
阅读全文
摘要:1 <?xml version="1.0" encoding="UTF-8" ?> 2 <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-conf
阅读全文
摘要:1 <?xml version="1.0" encoding="UTF-8" ?> 2 <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"
阅读全文
摘要:简介 快速入门 1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-in
阅读全文
摘要:代码+环境同10.2 以下仅说明不同的地方 1 package com.haifei.service; 2 3 import com.haifei.dao.AccountDao; 4 import org.springframework.beans.factory.annotation.Autowi
阅读全文
摘要:1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
阅读全文
摘要:快速入门 代码实现 1 package com.haifei.anno; 2 3 /** 4 * 目标接口 5 */ 6 public interface TargetInterface { 7 8 public void save(); 9 10 } 1 package com.haifei.an
阅读全文
摘要:快速入门 代码实现 1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-
阅读全文
摘要:概述 JDK的动态代理 1 package com.haifei.proxy.jdk; 2 3 /** 4 * 目标类接口 5 */ 6 public interface TargetInterface { 7 8 public void save(); 9 10 } 1 package com.h
阅读全文
摘要:1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
阅读全文
摘要:1 package com.haifei.interceptor; 2 3 import com.haifei.domain.User; 4 import org.springframework.web.servlet.HandlerInterceptor; 5 6 import javax.ser
阅读全文
摘要:1 <%-- 2 Created by IntelliJ IDEA. 3 User: yubaby 4 Date: 2021/7/20 5 Time: 21:39 6 To change this template use File | Settings | File Templates. 7 --
阅读全文
摘要:用户列表展示 用户添加 用户删除 代码实现 1 package com.haifei.domain; 2 3 import java.util.List; 4 5 public class User { 6 7 private Long id; 8 private String username;
阅读全文
摘要:角色和用户关系分析 角色列表展示功能 角色添加功能 代码实现 1 package com.haifei.domain; 2 3 public class Role { 4 5 private Long id; 6 private String roleName; 7 private String r
阅读全文
摘要:1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
阅读全文
摘要:1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
阅读全文
摘要:文件上传客户端三要素&原理 单文件上传 1 pom.xml 2 3 + 4 5 <!--fileupload和io坐标,用于文件上传--> 6 <dependency> 7 <groupId>commons-fileupload</groupId> 8 <artifactId>commons-fil
阅读全文
摘要:自定义类型转换器 1 package com.haifei.converter; 2 3 import org.springframework.core.convert.converter.Converter; 4 5 import java.text.ParseException; 6 impor
阅读全文
摘要:获取基本数据类型、POJO类型、数组类型的请求参数 1 /** 2 * SpringMVC获取请求数据--基本数据类型参数 3 * @param username 4 * @param age 5 */ 6 @RequestMapping("/save11") 7 @ResponseBody //不
阅读全文
摘要:页面跳转 1 web.xml 2 3 4 <!--配置SpringMVC的核心组件:DispatcherServlet前端控制器--> 5 <servlet> 6 <servlet-name>DispatcherServlet</servlet-name> 7 <servlet-class>org.
阅读全文
摘要:SpringMVC的执行流程(组件角度) SpringMVC的组件解析 SpringMVC的注解解析 1 package com.haifei.controller; 2 3 import org.springframework.stereotype.Controller; 4 import org
阅读全文
摘要:SpringMVC概述 传统java web SpringMVC web SpringMVC快速入门 实现步骤(如上图) 代码实现 pom.xml中需要配置的依赖 <!--spring坐标--> <dependency> <groupId>org.springframework</groupId>
阅读全文
摘要:搭建初始项目 1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-ins
阅读全文
摘要:1 <?xml version="1.0" encoding="UTF-8"?> 2 <beans xmlns="http://www.springframework.org/schema/beans" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-in
阅读全文
摘要:Spring原始注解 Spring是轻代码而重配置的框架,配置比较繁重,影响开发效率,所以注解开发是一种趋势,注解代替xml配置文件可以简化配置,提高开发效率。 1 <?xml version="1.0" encoding="UTF-8"?> 2 <beans xmlns="http://www.s
阅读全文
摘要:数据源(数据库连接池)的作用 数据源的开发步骤 数据源的手动创建 VS Spring配置数据源 虽然将数据库基本连接信息配置到applicationContext.xml中已经完成解耦合,但是实际开发中方便数据库的管理,同样会将数据库的基本连接信息单独抽取到一个properties文件中 代码 po
阅读全文
摘要:1 // ApplicationContext app = new ClassPathXmlApplicationContext("applicationContext.xml"); 2 ApplicationContext app = new FileSystemXmlApplicationCon
阅读全文
摘要:单例scope="singleton" 多例scope="prototype" 1 <?xml version="1.0" encoding="UTF-8"?> 2 <beans xmlns="http://www.springframework.org/schema/beans" 3 xmlns:
阅读全文
摘要:Spring概述 Spring快速入门 1、在pom.xml中导入Spring开发的基本包坐标 1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" 3 xmlns:
阅读全文
摘要:。。。
阅读全文
摘要:0、准备工作 上传与下载工具方式1:FileZilla 绿色免安装,本地解压FileZilla_3.7.3安装包,FTP软件 上传与下载工具方式2:lrzsz 上传与下载工具方式3:sftp 使用alt + p 组合键打开sftp窗口 使用put 命令上传(默认上传位置在linux当前登录用户的目录
阅读全文
摘要:三、Vi/Vim编辑器 1、基本使用 Linux中的Vi编辑器相当于Windows中的记事本。 Vim是Vi的升级版,两者用法一致。 Vi纯黑白显示,Vim有高亮彩色显示。 Vi既可以查看文件也可以编辑文件。 Vi/Vim三种模式:命令行、插入、底行模式。 切换到命令行模式:按Esc键 切换到插入模
阅读全文
摘要:一、准备工作 安装VMware 安装CentOS 安装远程访问软件SecureCRT 二、Linux常用命令 【pwd】查看当前所在目录 【clear/Ctrl+L键】清屏 【touch xxx.xxx】创建一个空文件 【已知命令名称 --help】查看该命令的用法 【cd】切换目录 【cd xxx
阅读全文
摘要:判断当前登录用户是否收藏过该线路 + 收藏次数的动态展示 + 点击按钮收藏线路 route_detail.html 1 <!DOCTYPE html> 2 <html lang="en"> 3 4 <head> 5 <meta charset="utf-8"> 6 <title>路线详情</titl
阅读全文
摘要:route_datail.html 1 <!DOCTYPE html> 2 <html lang="en"> 3 4 <head> 5 <meta charset="utf-8"> 6 <title>路线详情</title> 7 <link rel="stylesheet" type="text/c
阅读全文
摘要:header.html 1 <!-- 头部 start --> 2 <script src="js/getParameter.js"></script> 3 <script> 4 $(function () { 5 6 //请求登录用户信息 7 $.get( 8 // "findUserServle
阅读全文
摘要:点击了不同的分类后,将来看到的旅游线路不一样的。通过分析数据库表结构,发现,旅游线路表和分类表时一个多对一的关系 查询不同分类的旅游线路sql Select * from tab_route where cid = ?; 类别id的传递 CategoryServiceImpl-findAll()改写
阅读全文
摘要:效果 分析 代码 1 package cn.haifei.travel.dao; 2 3 import cn.haifei.travel.domain.Category; 4 5 import java.util.List; 6 7 public interface CategoryDao { 8
阅读全文
摘要:目的&分析 代码 1 package cn.haifei.travel.web.servlet; 2 3 import javax.servlet.ServletException; 4 import javax.servlet.annotation.WebServlet; 5 import jav
阅读全文
摘要:header.html 1 <a href="javascript:location.href='exitServlet';">退出</a> ExitServlet.java 1 package cn.haifei.travel.web.servlet; 2 3 import javax.servl
阅读全文
摘要:login.html 1 <!DOCTYPE html> 2 <html> 3 4 <head> 5 <meta charset="utf-8"> 6 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 7 <meta name="viewpo
阅读全文
摘要:register.html 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="utf-8"> 5 <title>注册</title> 6 <link rel="stylesheet" type="text/css" href
阅读全文
摘要:druid.properties 1 driverClassName=com.mysql.jdbc.Driver 2 url=jdbc:mysql://localhost:3306/hm_travel 3 username=root 4 password=root 5 initialSize=5 6
阅读全文
摘要:
阅读全文
摘要:1、day24_maven_java_1(未使用原型创建的纯java项目) 1 package com.haifei.demo; 2 3 public class HelloWorld { 4 public static void main(String[] args) { 5 System.out
阅读全文
摘要:1、不使用原型(骨架)创建纯java项目 2、使用原型(骨架)创建纯java项目 3、不使用原型(骨架)创建java web项目 4、使用原型(骨架)创建java web项目
阅读全文
摘要:1、maven仓库 https://blog.csdn.net/angou6476/article/details/101997429 2、maven的目录结构 3、maven的常用命令 4、maven的生命周期 5、maven坐标 坐标来源 从互联网搜索
阅读全文
摘要:1、maven概述 Maven是一个项目管理工具,它包含: 一个项目对象模型 (POM:Project Object Model), 一组标准集合, 一个项目生命周期(Project Lifecycle), 一个依赖管理系统(Dependency Management System), 和用来运行定
阅读全文
摘要:1 -- 创建数据库 2 CREATE DATABASE day23; 3 4 -- 使用数据库 5 USE day23; 6 7 -- 创建表 8 CREATE TABLE province( 9 id INT PRIMARY KEY AUTO_INCREMENT, 10 NAME VARCHAR
阅读全文
摘要:1 package com.haifei.jedis.test; 2 3 import org.junit.Test; 4 import redis.clients.jedis.Jedis; 5 6 public class JedisTest { 7 8 /** 9 * 快速入门jedis 10
阅读全文
摘要:
阅读全文
摘要:客户端 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>用户注册</title> 6 <script src="js/jquery-3.3.1.min.js"></script> 7 <s
阅读全文
摘要:1 package com.haifei.domain; 2 3 import com.fasterxml.jackson.annotation.JsonFormat; 4 import com.fasterxml.jackson.annotation.JsonIgnore; 5 6 import
阅读全文
摘要:1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>5-json语法-定义和取值</title> 6 <script> 7 //1 基本格式 8 var person = {"name":"z
阅读全文
摘要:1 package com.haifei.web.servlet; 2 3 import javax.servlet.ServletException; 4 import javax.servlet.annotation.WebServlet; 5 import javax.servlet.http
阅读全文
摘要:1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <title>jquery案例之广告的自动显示与隐藏</title> 6 <style> 7 #content{width:100%;height:500px;backgro
阅读全文
摘要:1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <title>1. 动画-三种方式显示和隐藏元素</title> 6 <script type="text/javascript" src="../js/jquery-3.3
阅读全文
摘要:1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <title>1-表格隔行换色</title> 6 <script src="../../js/jquery-3.3.1.min.js"></script> 7 8 <scr
阅读全文
摘要:1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 2 <html> 3 <head> 4 <title>内部插入脚本</title> 5 <meta http-equiv="content-type" content=
阅读全文
摘要:1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <title></title> 6 <script src="../js/jquery-3.3.1.min.js"></script> 7 <script> 8 $(func
阅读全文
摘要:1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 2 <html> 3 <head> 4 <title>基本过滤选择器</title> 5 <meta http-equiv="content-type" content
阅读全文
摘要:1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 2 <html> 3 <head> 4 <title>基本选择器</title> 5 <meta http-equiv="content-type" content="
阅读全文
摘要:1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>01-自定义js框架</title> 6 7 <script src="js/itcast.js"></script> 8 </head>
阅读全文
摘要:1 package com.haifei.web.listener; 2 3 import javax.servlet.ServletContext; 4 import javax.servlet.ServletContextEvent; 5 import javax.servlet.Servlet
阅读全文
摘要:基于day17_base项目 1 package com.haifei.web.filter; 2 3 import javax.servlet.*; 4 import javax.servlet.annotation.WebFilter; 5 import java.io.BufferedRead
阅读全文
摘要:1 package com.haifei.proxy; 2 3 public interface SaleComputer { 4 5 public String sale(double money); 6 public void show(); 7 } 1 package com.haifei.p
阅读全文
摘要:基于day17_base项目 1 package com.haifei.web.filter; 2 3 import javax.servlet.*; 4 import javax.servlet.annotation.WebFilter; 5 import javax.servlet.http.H
阅读全文
摘要:1 package com.haifei.web.filter; 2 3 import javax.servlet.*; 4 import javax.servlet.annotation.WebFilter; 5 import java.io.IOException; 6 7 /** 8 * 过滤
阅读全文
摘要:1 <%-- 2 Created by IntelliJ IDEA. 3 User: yubaby 4 Date: 2021/7/4 5 Time: 21:35 6 To change this template use File | Settings | File Templates. 7 --%
阅读全文
摘要:1 package com.haifei.web.filter; 2 3 import javax.servlet.*; 4 import javax.servlet.annotation.WebFilter; 5 import java.io.IOException; 6 7 /** 8 * 过滤
阅读全文
摘要:1 package com.haifei.web.filter; 2 3 import javax.servlet.*; //注意Filter来自这个包下 4 import javax.servlet.annotation.WebFilter; 5 import java.io.IOExceptio
阅读全文
摘要:1 <%-- 2 Created by IntelliJ IDEA. 3 User: yubaby 4 Date: 2021/7/4 5 Time: 11:55 6 To change this template use File | Settings | File Templates. 7 --%
阅读全文
摘要:1 <%@ page import="java.util.List" %> 2 <%@ page import="java.util.ArrayList" %><%-- 3 Created by IntelliJ IDEA. 4 User: yubaby 5 Date: 2021/7/3 6 Tim
阅读全文
摘要:EL表达式 1 <%@ page import="java.util.List" %> 2 <%@ page import="java.util.ArrayList" %><%-- 3 Created by IntelliJ IDEA. 4 User: yubaby 5 Date: 2021/7/3
阅读全文
摘要:1 <%@ page contentType="text/html;charset=gbk" language="java" %> 2 <%@ page pageEncoding="GBK" buffer="16kb" %> 3 <%@ page import="java.util.ArrayLis
阅读全文
摘要:1 <%-- 2 Created by IntelliJ IDEA. 3 User: yubaby 4 Date: 2021/7/3 5 Time: 12:32 6 To change this template use File | Settings | File Templates. 7 --%
阅读全文
摘要:1 package com.haifei.session; 2 3 import javax.servlet.ServletException; 4 import javax.servlet.annotation.WebServlet; 5 import javax.servlet.http.*;
阅读全文
摘要:1 package com.haifei.session; 2 3 import javax.servlet.ServletException; 4 import javax.servlet.annotation.WebServlet; 5 import javax.servlet.http.Htt
阅读全文
摘要:index.jsp 1 <%-- 2 Created by IntelliJ IDEA. 3 User: yubaby 4 Date: 2021/7/2 5 Time: 14:35 6 To change this template use File | Settings | File Templa
阅读全文
摘要:1 package com.haifei.cookie; 2 3 import javax.servlet.ServletException; 4 import javax.servlet.annotation.WebServlet; 5 import javax.servlet.http.Cook
阅读全文
摘要:1 package com.haifei.cookie; 2 3 import javax.servlet.ServletException; 4 import javax.servlet.annotation.WebServlet; 5 import javax.servlet.http.Cook
阅读全文
摘要:1 package com.haifei.cookie; 2 3 import javax.servlet.ServletException; 4 import javax.servlet.annotation.WebServlet; 5 import javax.servlet.http.Cook
阅读全文
摘要:1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Title</title> 6 </head> 7 <body> 8 <!--<a href="/day15/img/1.jpg">图片</
阅读全文
摘要:1 package com.haifei.servletcontext; 2 3 import javax.servlet.ServletContext; 4 import javax.servlet.ServletException; 5 import javax.servlet.annotati
阅读全文
摘要:1 package com.haifei.servlet; 2 3 import javax.servlet.ServletException; 4 import javax.servlet.annotation.WebServlet; 5 import javax.servlet.http.Htt
阅读全文
摘要:1 package com.haifei.servlet; 2 3 import javax.servlet.ServletException; 4 import javax.servlet.annotation.WebServlet; 5 import javax.servlet.http.Htt
阅读全文
摘要:1 <%-- 2 Created by IntelliJ IDEA. 3 User: yubaby 4 Date: 2021/7/1 5 Time: 10:12 6 To change this template use File | Settings | File Templates. 7 --%
阅读全文