- 浏览: 6309 次
- 性别:
- 来自: 北京
最新评论
-
jxlanxin:
Indeed, and thanks.
支付宝网页调用签名sign
文章列表
支付宝提供的网页支付接口,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
linux下查看端口地址占用
- 博客分类:
- linux
查看端口是否被占用:
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/ ...