摘要: 推荐阅读:https://www.cnblogs.com/suntp/p/9147136.html 1.1. Web服务器概念与基本原理 1.1.1. Web服务器的历史 1989年,互联网之父Berners-Lee向其雇主CERN提出了一个新项目,目的是通过使用超文本系统来缓解科学家之间的信息交流 阅读全文
posted @ 2020-10-31 23:17 向日葵呀 阅读(554) 评论(0) 推荐(0) 编辑
摘要: 参考链接 https://www.iteye.com/blog/sjsky-1246657 https://blog.csdn.net/qq_27888773/article/details/78493537 jdbc调用存储过程: 经常使用的4种: 1. 返回结果集的proc 2. 输出参数 3. 阅读全文
posted @ 2020-09-17 16:33 向日葵呀 阅读(463) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/u010922732/article/details/91048683 在SpringBoot中是不需要配置web.xml的,那么原来在web.xml中配置的Servlet、Filter、Listener现在怎么弄呢? SpringBoot提供了三种Bea 阅读全文
posted @ 2020-09-11 18:35 向日葵呀 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 完整教程参考 https://www.w3cschool.cn/dosmlxxsc1/ipzxrj.html 常用命令 echo、@、call、pause、rem(小技巧:用::代替rem)是批处理文件最常用的几个命令。 (1) echo 表示显示此命令后的字符 ,echo off 表示在此语句后所 阅读全文
posted @ 2020-09-07 22:49 向日葵呀 阅读(687) 评论(0) 推荐(0) 编辑
摘要: log4j2官网地址:http://logging.apache.org/log4j/2.x/manual/extending.html#PatternConverters 原文地址https://blog.csdn.net/hfismyangel/article/details/80182662 阅读全文
posted @ 2020-09-03 18:48 向日葵呀 阅读(6189) 评论(0) 推荐(1) 编辑
摘要: 一、查询 1、连接查询 2、分页查询 利用row_number() over(order by id)函数计算出行数,选定相应行数返回即可,不过该关键字只有在SQL server 2005版本以上才有。 SELECT TOP #{pageSize} * FROM (SELECT ROW_NUMBER 阅读全文
posted @ 2020-08-18 18:53 向日葵呀 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 原文地址: https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/88262924 场景 在Eclipse中新建SpringBoot项目后提示: The type org.springframework.context.Configura 阅读全文
posted @ 2020-08-15 18:36 向日葵呀 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 1.准备工作 第一步 安装JDK 第二步 下载Eclipse 第三步 在Eclipse中安装TestNG 第四步 下载Chrome、chromedriver.exe注意这两个要版本对应,可以搜Chrome与ChromeDriver版本对照表 ChromeDriver 镜像 http://npm.ta 阅读全文
posted @ 2020-08-08 20:40 向日葵呀 阅读(1024) 评论(0) 推荐(0) 编辑