01 2018 档案

摘要:<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.6 阅读全文
posted @ 2018-01-29 18:33 步步丶惊云 阅读(327) 评论(0) 推荐(0)
摘要:public static java.sql.Timestamp StrTransSqlDate(String date) { SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); java. 阅读全文
posted @ 2018-01-29 18:30 步步丶惊云 阅读(6557) 评论(0) 推荐(0)
摘要:1、因为转换的格式不是标准格式,所以有时候获得xml根目录后rootElement.attributes() 取不到想要的属性 所以需要通过迭代器来获取想要的值 } 阅读全文
posted @ 2018-01-29 18:28 步步丶惊云 阅读(3018) 评论(0) 推荐(0)
摘要:1、其实在linux上和window是一样的 2、path 传入的路径(直接从根目录到你的文件的位置) public static boolean delFile(String path) { log.info("进入deFile方法 psth =: "+path); boolean flag = 阅读全文
posted @ 2018-01-29 18:17 步步丶惊云 阅读(8931) 评论(0) 推荐(0)
摘要:1、创建用户: create user toptea2 identified by "用户名" 2、给用户授权 grant create session to 用户名; grant create table to 用户名; grant create tablespace to 用户名; grant 阅读全文
posted @ 2018-01-17 19:01 步步丶惊云 阅读(3513) 评论(0) 推荐(0)
摘要:查看回收站中表 select object_name,original_name,partition_name,type,ts_name,createtime,droptime from recyclebin; 恢复表 SQL>flashback table test_drop to before  阅读全文
posted @ 2018-01-17 18:49 步步丶惊云 阅读(12772) 评论(0) 推荐(1)
摘要:1、查询重复数据select * from 表名 where 重复字段(一般为主键)in (select 重复字段 from 表名 group by 重复字段 having count(WF_OID)>1) Select 重复字段,Count(*) From表名 Group By 重复字段 Havi 阅读全文
posted @ 2018-01-12 18:45 步步丶惊云 阅读(283) 评论(0) 推荐(0)
摘要:1.rpm包形式(包括yum安装)可以rpm -aq|grep http #查看是否安装了apache的包rpm -qi 输入上一步获取的包名 #了解一下这个apache包的信息rpm -ql 输入包名 #此apache包中所有文件安装的位置 阅读全文
posted @ 2018-01-09 18:55 步步丶惊云 阅读(401) 评论(0) 推荐(0)
摘要:查询表的名称,字段信息以及字段注释 select us.table_name, --表名 ut.COLUMN_NAME,--字段名称 uc.comments,--字段注释 ut.DATA_TYPE,--字典类型 ut.DATA_LENGTH,--字典长度 ut.NULLABLE--是否为空from 阅读全文
posted @ 2018-01-04 17:30 步步丶惊云 阅读(1711) 评论(0) 推荐(0)
摘要:一 、1.单向认证,就是传输的数据加密过了,但是不会校验客户端的来源 2.双向认证,如果客户端浏览器没有导入客户端证书,是访问不了web系统的,找不到地址,想要用系统的人没有证书就访问不了系统HTTPS概念 二、1.单向认证,就是传输数据加密过,但是不会教研客户来源 2.双向认证,如果客户端浏览器没 阅读全文
posted @ 2018-01-03 22:50 步步丶惊云 阅读(1277) 评论(0) 推荐(0)