`
ipv6_hong
  • 浏览: 5958 次
  • 性别: Icon_minigender_1
  • 来自: 北京
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表
支付宝提供的网页支付接口,notify_url调用时签名要使用非排序方式,原demo有bug,致使多次调用计算签名都失败,最终找出了问题,AlipayCore类中createLinkStringNoSort()方法不能使用HashMap,代之以LinkedHashMap,以此做记录。   public static String createLinkStringNoSort(Map<String, String> params) { Map<String, String> sParaSort = new LinkedHashMap<St ...
解决方法 在eclipse.ini -vmargs后面添加 -DtolerateIllegalAmbiguousVarargsInvocation=true 重启eclipse,并clean一下项目 重新编译即可,eclipse的版本不支持可变函数造成。
spring: http://repo.spring.io/milestone/org/springframework/ hibernate: http://hibernate.org/orm/downloads/ struts: http://struts.apache.org/download.cgi
查看端口是否被占用: netstat -apn|grep port 查看被哪个进程占用: lsof -i:port 查看具体进程 ps -ef|grep PID

背景图片预加载

遇到需要加载的图片较多时,可以这样预加载 #preloadedImages {         width: 0px;         height: 0px;         display: inline;         background-image: url(path/to/image1.png);         background-image: url(path/to/image2.png);         background-image: url(path/to/image3.png);         background-image: url(path/ ...
Global site tag (gtag.js) - Google Analytics