Close

动态sql语句 入参中存在 数组 或 List

mybatis中入参存在 数组或List 时,使用foreach 进行动态拼接 foreach可以在SQL语句中迭代一个集合。它的属性主要有item、index、collection、separator、close、open item:表示集合中每一个元素进行迭代时的别名 index:指定一个名称,用于表示在迭代过程中,每次迭代到的位置 open:表示该...

JavaWeb学习记录(一)——response响应头之缓存设置与下载功能的实现

一、HTTP中常用响应头 Location: http://www.it315.org/index.jsp Server:apache tomcat Content-Encoding: gzip Content-Length: 80 Content-Language: zh-cn Content-Type: text/html; charset=GB23...

简易留言板(还有一些小bug,修复ing...)

<!DOCTYPE html> <html>   <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> body{ width: 100%; height:100%; bac...

haproxy 非常完整的配置

常用配置选项: OPTION 选项: option httpclose :HAProxy会针对客户端的第一条请求的返回添加cookie并返回给客户端,客户端发送后续请求时会发送                              此cookie到HAProxy,HAProxy会针对此cookie分发到上次处理此请求的服务器上,如果服务器不能忽略   ...

python+selenium2自动化------quit()和close()区别

区别: driver.quit():关闭整个浏览器 driver.close():关闭当前所在的句柄窗口 示例代码: from selenium import webdriver from time import sleep class Demo1(): def __init__(self): self.driver = webd...

StreamWriter、StreamReader 写读文件的两种方法

方法一://建立StreamWriter为写做准备   StreamWriter rw = File.CreateText(Server.MapPath(".")+"\\CreateText.txt");   //使用WriteLine写入内容   rw.WriteLine("使用File.CreateText 方法");   rw.WriteLine("...