- 浏览: 50371 次
- 性别:
- 来自: 台源
最新评论
文章列表
第一次在Linux上安装SVN,遇到很多问题,参考以下两篇文章得到了解决:
http://hanqunfeng.iteye.com/blog/688295
http://theron19.iteye.com/blog/1688172
删除非空目录:rm -rf folderName
建立软连接: ln -s source target
关闭防火墙: service iptables stop
开启防火墙: service iptables start
默认关闭防火墙: chkconfig iptables off
设置RedHat开机自动运行脚本: 编辑/etc/rc.d/rc.local文 ...
Download below PDF to view details:
【故障描述】
做 Android 开发就要下载 Android SDK,其中的 SDK Manager.exe 无法启动,一闪而过。
尝试重装 JDK、重新从官网下载 Android SDK、添加环境变量等等均无效。
而且,有些版本的没事,有些版本的就不行。下载的 android-sdk_r14 可以正常执行 SDK Manager.exe,但是 android-sdk_r18 就不能执行,闪了一下就退出了。
【问题所在】
SDK Manager.exe 通过调用 android-sdk-windows\tools\lib\find_java.bat 确认 java.exe 的路径。
启用 ...
http://www.fengfly.com/document/springsecurity3/springsecurity.html
http://www.fengfly.com/plus/search3.php?keyword=spring+security&kwtype=0&searchtype=titlekeyword
http://cxf.apache.org/docs/secure-jax-rs-services.html#SecureJAX-RSServices-Authorization
这么个简单问题纠结了我一天,我去
原来用PUT才能同时提交param和序列化的json对象,擦,不学无术阿我
1、获得扩展的id
打开扩展的页面,在地址栏看到该扩展的地址:
https://chrome.google.com/webstore/detail/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
则地址最后的32位字符串“xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx”就是扩展的id。
如扩展“Google+1 按钮”的地址为:“https://chrome.google.com/webstore/detail/jgoepmocgafhnchmokaimcmlojpnlkhp”
则扩展“Google+1 按钮”的id即:jgoepmocgafhnchmo ...
#Google Plus
203.208.46.29 plus.google.com.hk
203.208.46.29 plus.google.com
203.208.46.29 talkgadget.google.com
203.208.46.29 picasaweb.google.com
203.208.46.29 lh1.ggpht.com
203.208.46.29 lh2.ggpht.com
203.208.46.29 lh3.ggpht.com
203.208.46.29 lh4.ggpht.com
203.208 ...
@echo off和谐版垃圾清理器
echo 自动清理tmp,_mp,gid,chk,bak等垃圾文件……
echo 正在清除系统垃圾文件,请稍等......
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
del /f /s /q %systemdrive%\recycled\*.*
del / ...
minOccurs="0" 在null的时候,字段就不出现在xml中了
nillable="true" 在null的时候,xml的构造还是完整的.
在传数组的时候就很有用, 比如你只有minOccurs传{0,nill,1,nill} 就会变成{0,1}
所以说nillable就算不传值也有占位作用. 还有一些动态表, 也需要nillable把表构造穿过去, 否则会报错. 这个时候你就不能用minOccurs来传
< 原文地址:http://www.javachen.com/2010/04/jfreechart-create_piechart/ >
利用JFreeChart jar包可以绘制pie charts 饼图,bar charts 柱状图,line and area charts曲线图,scatter plots and bubble charts 散列图,time series 时序图,Area Charts区域图,Difference Chart差异图,Step Chart步骤图,Multiple Axis Charts 混合图,Gantt charts甘特图,combina ...
如果我们的项目中采用的是Spring+hibernate来构建的,在缓存方面,我们一定会首先想到Spring自带的EHCache缓存工具,在Spring中集成了目前比较流行的缓存策略EHCache,现在用的比较多的还有像OSCache,MemCached.这些应该是当前用的最多的缓存工具了。
在Spring+hibernate的这样的框架中,EHCache应该属于二级缓存了,我们知道在Hibernate中已经默认的使用了一级缓存,也就是在Session中。二级缓存应该是SessionFactory的范围了。二级缓存默认不会起作用的,这就需要我们简单的配置一下就可以了。
...
Example configuration:
<proxool>
<alias>apple</alias>
<driver-url>jdbc:hsqldb:.</driver-url>
<driver-class>org.hsqldb.jdbcDriver</driver-class>
<driver-properties>
<property name="user" value="abc&q ...