上一页 1 ··· 43 44 45 46 47
摘要: import java.util.Random; import org.springframework.beans.factory.annotation.Autowired; /** * @author Administrator * 验证码和密码初始化工具 */ public class Vali 阅读全文
posted @ 2017-02-14 13:57 蜜獾互联网 阅读(2) 评论(0) 推荐(0) 编辑
摘要: import java.util.Date; import java.util.Timer; import java.util.TimerTask; /** * @author God jdk自带的任务器 */ public class TimerTest extends TimerTask { @ 阅读全文
posted @ 2017-02-14 13:54 蜜獾互联网 阅读(3) 评论(0) 推荐(0) 编辑
摘要: import java.util.UUID; /** * @author Administrator * JDK自带general key */ public class UuidUtil{ public UuidUtil() { } public static String getUid(){ U 阅读全文
posted @ 2017-02-14 13:53 蜜獾互联网 阅读(2) 评论(0) 推荐(0) 编辑
摘要: import java.util.logging.Logger; /** * @author Administrator jdk日志操作工具类 */ public class JdkLog { public static Logger logger = Logger.getLogger(JdkLog 阅读全文
posted @ 2017-02-14 13:47 蜜獾互联网 阅读(2) 评论(0) 推荐(0) 编辑
摘要: [root@localhost ~]# mysql -h localhost -uxxxxxxx -pxxxxxxx Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 19 阅读全文
posted @ 2016-10-14 10:41 蜜獾互联网 阅读(6) 评论(0) 推荐(0) 编辑
摘要: --oracle的字典 select * from dictionary --创建表空间oracle创建表空间 create tablesapce testSpace datafile 'E:oracleSpace\test.dbf' size 100M autoextend on; --创建用户 阅读全文
posted @ 2016-10-14 10:35 蜜獾互联网 阅读(7) 评论(0) 推荐(0) 编辑
摘要: select sysdate from dual--返回系统时间 select trunc(sysdate) from dual select trunc(sysdate-8) from dual select trunc(sysdate+8) from dual select trunc(sysd 阅读全文
posted @ 2016-10-14 10:26 蜜獾互联网 阅读(2) 评论(0) 推荐(0) 编辑
上一页 1 ··· 43 44 45 46 47