摘要: 奇葩问题 空格 在写调试Sql语句的时候,一直报table has no column; 找了很久原因, 发现是空格问题 阅读全文
posted @ 2017-07-06 09:58 DawnHeaven 阅读(448) 评论(0) 推荐(0) 编辑
摘要: maven 依赖原则 间接依赖路径最短优先 申明顺序优先 阅读全文
posted @ 2017-06-30 11:20 DawnHeaven 阅读(465) 评论(0) 推荐(0) 编辑
摘要: Mac下配置多个SSH Keys 生成SSH key 查看SSH key 设置配置文件 阅读全文
posted @ 2017-05-23 17:25 DawnHeaven 阅读(1228) 评论(0) 推荐(0) 编辑
摘要: Java 连接Access 第一次使用连接Access数据库, 记录一下遇到的坑 Access驱动下载地址 http://pan.baidu.com/s/1o8ltTfc 不使用WINDOW的建立数据源方法,直接在Java代码内部与Access数据库连接 public void ConnectAcc 阅读全文
posted @ 2017-05-17 16:07 DawnHeaven 阅读(1003) 评论(0) 推荐(0) 编辑
摘要: 打开 /Users/用户/.bash_profile文件 1.JDK切换,添加如下内容 export JAVA_6_HOME= 设置 JDK 7 export JAVA_7_HOME= 设置 JDK 8 export JAVA_8_HOME= 默认JDK 6 export JAVA_HOME=$JA 阅读全文
posted @ 2017-05-11 15:09 DawnHeaven 阅读(275) 评论(0) 推荐(0) 编辑
摘要: 记录一下解决中文乱码 设置环境变量 set path=E:\app\Administrator\product\instantclient_10_2 set TNS_ADMIN=E:\app\Administrator\product\instantclient_10_2 set NLS_LANG= 阅读全文
posted @ 2017-02-27 10:47 DawnHeaven 阅读(202) 评论(0) 推荐(0) 编辑
摘要: Linux 用户管理 与 文件权限 用户组操作 1.groupadd命令 groupadd [ g o] gid group 各个选项具体含义如下: g:指定新建用户组的GID号,该GID号必须唯一,不能和其它用户组的GID号重复。 o:一般与 g选项同时使用,表示新用户组的GID可以与系统已有用户 阅读全文
posted @ 2017-01-10 11:44 DawnHeaven 阅读(462) 评论(0) 推荐(0) 编辑
摘要: centos7初步配置 首先安装lrzsz zip/unzip yum y install lrzsz yum y install zip unzip 安装vim yum install vim 安装JDK 1. 上传 jdk 8u25 linux x64.rpm 到/usr/local/java下 阅读全文
posted @ 2017-01-07 23:30 DawnHeaven 阅读(475) 评论(0) 推荐(0) 编辑
摘要: js Touch事件(向左滑动,后退) 代码如下 var touch_p = { c_x : 0, c_y : 0, hasbacked : false }; function touches(ev){ if(ev.touches.length==1){ switch(ev.type){ case 阅读全文
posted @ 2017-01-04 10:42 DawnHeaven 阅读(1481) 评论(0) 推荐(0) 编辑
摘要: 代码如下 $(window).on('scroll',function(){ / console.log("scrollTop " + scrollTop()); console.log("windowHeight " + windowHeight()); console.log("document 阅读全文
posted @ 2017-01-03 10:04 DawnHeaven 阅读(1953) 评论(0) 推荐(0) 编辑