`
文章列表
参考: http://gradle.org/releases/0.7/docs/userguide/tutorial_this_and_that.html#sec:gradle_properties_and_system_properties 两种做法: 1,运行gradle命令时带-DpropertyName=propertyValue参数,例: gradle jettyRun -Dlog.home=C:/log 2,在gradle.properties文件中使用systemProp.propertyName=propertyValue,例: systemProp.log.ho ...
正在做的项目使用了hibernate,但hibernate的SQL一直只输出到console,并没有写到日志文件 项目使用的是log4j,调了log4j.properties也不起效,后来在hibernate官网发现一条说明:Hibernate utilizes Simple Logging Facade for Java (SLF4J) in order to log various system events.  这才恍然大悟,原来我们的web server启动起来一直报 SLF4J: Failed to load class "org.slf4j.impl.Static ...
项目使用的Git服务器是基于SSH的,又倡导小步提交,每天频繁的git pull代码和git push代码,每次都需要输入remote-host的密码很是麻烦,参考了网上的做法实验了一下无密码配置,将具体做法总结如下: 1,在local-host使用ssh-keygen命令 ...
TouchPro5.2.0.1:轻松修改文件日期 含注册码TouchPro5.2.0.1可以修改文件的创建日期、修改日期和访问日期 http://www.jddesign.co.uk/ http://www.jddesign.co.uk/products/touchpro/touchpro.zip 注册名:Blade 注册码:0730A964DF87F1048CEA517E379B8FBF8A950A67 程序安装后,右键点击需要修改日期的文件,从右键列表中选择属性,弹出的对话框中会多出一个TouchPro选项,点击该选项即可对文件的日期进行修改,修改后点击“TouchNow”按钮即可生效。 ...
[img][/img] maxeric@maxeric-ubuntu:~$ ls -al /media/VBOXADDITIONS_4.1.8_75467/ total 41948 dr-xr-xr-x 4 maxeric maxeric     2048 2011-12-19 21:11 . drwxr-xr-x 4 root    root        4096 2012-01-02 12:26 .. dr-xr-xr-x 3 maxeric maxeric     2048 2011-12-19 21:11 32Bit dr-xr-xr-x 2 maxeric maxeric     2 ...
1,初始化脚本 create table emp(deptno varchar2(10),ename varchar2(20),sal number(10,0)); insert into emp(deptno,ename,sal)values('20',trim('ADAMS '), 1100 ); insert into emp(deptno,ename,sal)values('30',trim('ALLEN '), 1600 ); insert into emp(deptno,ename,sal)values('30',tr ...
Apache版本apache_2.2.14-win32-x86-openssl-0.9.8k.msi 修改httpd.conf文件: 1,去掉#LoadModule expires_module modules/mod_expires.so这行前面的#号 2,增加如下配置 <IfModule expires_module> ExpiresActive On ExpiresDefault "access plus 2 days" ExpiresByType application/x-shockwave-flash "access ...
native2ascii.exe在%JAVA_HOME%\bin目录下 1,本机编码转成unicode native2ascii gbk.txt unicode.txt 2,unicode转成本机编码 native2ascii -reverse unicode.txt gbk.txt
oracle syntax: select for update [of [schema.]table.column[,[schema.]table.column].. ][nowait] 当查询多张表时使用for update [of [schema.]table.column[,[schema.]table.column]..]子句可以锁定指定的表(行级锁),经测试可以同时锁定多张表(行级锁),不过对应使用where current of更新数据时会有问题,这时只能用for update [of [schema.]table.column[,[schema.]table.column].. ...
今天遇到一个需求,要统计系统哪些功能耗费的流量最大并后续优化,去acc log看了以下第5列是http请求的字节数,第10列是http请求的url,写了一个类似于sql的group by、sum、avg命令,运行OK,结果一目了然 awk '{bytes[$10]+=$5;count[$10]+=1}END{for(i in bytes) printf "%s %d %10.2f %10.2f \n",i,count[i],bytes[i]/1024/1024,bytes[i]/count[i]}' *.acc | sort -k 3 -rg | awk 'BEGIN{p ...
1,在ubuntu上安装lrzsz软件包,支持rz上传和sz下载命令: sudo apt-get install lrzsz 2,安装成功后就可以使用SecureCRT上传、下载文件了,一般默认使用zmodem协议传输文件,几种传输协议解释参考: http://www.cnblogs.com/harryguo/archive/2008/01/16/1041296.html
以maven的repository形式给出,做个记录: 1,Hibernate,ORM,主要使用JPA org.hibernate:hibernate-core:3.6.5.Final org.hibernate:hibernate-entitymanager:3.6.5.Final org.hibernate:hibernate-validator:4.2.0.Final 2,Spring相关 org.springframework:spring-core:3.0.5.RELEASE org.springframework:spring-expression:3.0.5.RELEASE o ...
看应用启动时间是否和服务器时间相同,如果不通则weblogic时区设置有问题,如果weblogic时间大于系统时间8个小时,则要GMT-8,否则GMT+8 到应用所对应的jre目录:一般是/wls/wls81/bea/<jre_folder>/jre/lib/zi,把该目录下的GMT文件备份,从此目录下的Etc子目录中copy上面说的GMT-8或+8文件,覆盖原GMT文件,重启应用 (注意+8或-8只是例子,要看weblogic时间和系统时间相差几个小时)
Global site tag (gtag.js) - Google Analytics