摘要: 作用:用来格式化显示日期的格式。 它可以用一种你指定的格式来显示(如:“yyyy-MM-dd”),可以生成通俗易懂的注释(如:in2hours,14minutes),或者用预先定义的一个格式来显示(如在properties配置文件中配置'struts.date.format').如果没有找到这个s... 阅读全文
posted @ 2015-09-07 15:36 songjinduo 阅读(1973) 评论(0) 推荐(0) 编辑
摘要: 用jprofile打开hprof文件,查看内存泄露情况,有几个常用的功能说明一下: 工具下载:到官网下载jprofile7.0.1 64位的。再申请一个注册号,注册号的申请好像是一个邮件只能用一次。 1、打开hprof文件:进入classes视图,根据(instance count和Size)基本可... 阅读全文
posted @ 2015-08-17 08:35 songjinduo 阅读(3339) 评论(0) 推荐(0) 编辑
摘要: (1) cacheModelsEnabled: 是否启用SqlMapClient上的缓存机制。建议设为"true"。默认值为“true”。(2) enhancementEnabled: 是否针对POJO启用字节码增强机制以提升getter/setter的调用效能,避免使用JavaReflect所带来... 阅读全文
posted @ 2015-08-14 08:44 songjinduo 阅读(735) 评论(0) 推荐(0) 编辑
摘要: 一、前言 要打开一个可以载入页面的子窗口有三种方法,分别是window.open、window.showModalDialog和window.showModelessDialog。open方法就是打开一个页面,可以说同用url链接打开一个页面一样,不推荐使用,因为很多浏览器会拦截。这里推荐使用的是w... 阅读全文
posted @ 2015-08-03 10:05 songjinduo 阅读(395) 评论(0) 推荐(0) 编辑
摘要: 1.oracle 字典表查询 /*显示当前用户*/show user在sql plus中可用,在pl sql中不可用/*查看所有用户名*/ select username,user_id,created from all_users;/*查看当前用户的用户详情*/ select username,u... 阅读全文
posted @ 2015-07-24 11:37 songjinduo 阅读(787) 评论(0) 推荐(0) 编辑
摘要: 1.oracle 查看表空间使用情况1)使用sysdba进入sqlplus --查询表空间使用情况SELECT UPPER(F.TABLESPACE_NAME) "表空间名", D.TOT_GROOTTE_MB "表空间大小(M)", D.TOT_GROOTTE_MB - F.TOTAL_BYT... 阅读全文
posted @ 2015-07-24 11:31 songjinduo 阅读(385) 评论(0) 推荐(1) 编辑
摘要: 1.Linux 上传scp1)上传文件与文件夹scp file weblogic@xx.xxx.xxx.xxx:~/songjd/scp -r filefolder weblogic@xxx.xxx.xxx.xxx:~/songjd/2)下载文件与文件夹scp weblogic@xxx.xxx.x... 阅读全文
posted @ 2015-07-15 14:31 songjinduo 阅读(1995) 评论(0) 推荐(0) 编辑
摘要: 1.查看、编辑和删除cron把命令行保存在crontab(cron table)文件里,这个文件通常在 /etc 目录下。每个系统用户都可以有自己的crontab(在 /var/spool/cron/ 下)。要查看当前用户的crontab,输入 crontab -l;要编辑crontab,输入 cr... 阅读全文
posted @ 2015-07-15 14:28 songjinduo 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 1.oracle 启动数据库与监听器1)启动数据库oracle用户进去oracle/oraclesqlplus / as sysdba然后startup退出,然后启动监听进程2)启动监听器lsnrctlstart 阅读全文
posted @ 2015-07-15 14:26 songjinduo 阅读(852) 评论(0) 推荐(0) 编辑
摘要: #!/bin/shuser="user"pass="pass"sqlplus -S $user/$pass select 1 from dual;exit; 阅读全文
posted @ 2015-07-15 14:25 songjinduo 阅读(758) 评论(0) 推荐(0) 编辑