mybatis批量插入数据到ORACLE 一、mybatis批量插入数据到Oracle中的两种方式: 第一种: <insert id="addList" parameterType="java.util.List" useGeneratedKeys="false"> INSERT ALL <foreach item="item" index="index" collection="list"&...
SQL语句的优化技巧 where 字句中 避免试用 is null 或 not null 判断,避免使用!= 或 <> 判断,避免用or连接条件(可以用union all 联合查询),少用in或not in(对于连续的区间可以用 between代替),使用like 通配符 尽量用 "xx%" 匹配,不要在 条件字段上做运算操作或者函数操作,如 select * from user u where u.age...
利用websocket做五子棋游戏 pom.xml导入websocket-api.jar <dependency> <groupId>javax.websocket</groupId> <artifactId>javax.websocket-api</artifactId> <version>1.1</version>...
linux安装jdk1.8后修改配置不起作用 linux服务器上搭建jdk1.8的运行环境,但是因为该服务器上已经安装了jdk1.7,安装了jdk1.8后不起作用。 在网上找了一些资料,并结合自己的实际操作,整理了一套流程,记下做备忘和分享。 1.安装jdk1.8。 2.修改/etc/profile中的JAVA_HOME为新的jdk路径,并执行source /etc/profile。 3.执行 java -version,这个时候显...
jquery 实现地区三级联动下拉框 效果图 点击修改回显需要设定的省市区 HTML代码: <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>省市区级联下拉</title> <script src="https://code.jquery.com/jquer...