- 浏览: 7344 次
- 性别:
- 来自: 上海
最新评论
文章列表
1. find the previous commit id of the needing amend commit,look as below
872945f is committed by me and need to change the author email id
6713ffa is the previous commit id
[img]
[/img]
2. run the below commit
git rebase -i -p 6713ffa
[size=11px;] [/size]
[size=11px;]change the pick to edit b ...
###SQL Server configuration
jdbc.driverClassName=com.microsoft.sqlserver.jdbc.SQLServerDriver
#jdbc.databaseURL=jdbc:sqlserver://10.102.0.183:1433;DatabaseName=resource
#jdbc.databaseURL=jdbc:sqlserver://180.168.4.198:1433;DatabaseName=resource
jdbc.databaseURL=jdbc:sqlserver://localhost:1433;Databas ...
Jquery操作select
- 博客分类:
- Jquery
1.判断select选项中 是否存在Value="paraValue"的Item
$("#selectid option[@value='paraValue']").length>0
2.向select选项中 加入一个Item
$("#selectid").append("<option value=''>1111<option>");
3.从select选项中 删除一个Item
$("#selectid").remove("<option va ...
reactor 和proactor 模式
- 博客分类:
- 网络编程
http://wenku.baidu.com/view/b038a60590c69ec3d5bb7580.html
http://www.jdon.com/concurrent/reactor.htm
http://wenku.baidu.com/view/c51c4f2c2af90242a895e511.html
http://www.gewara.com 格瓦拉
http://tuan.soso.com/detail?pid=n.tuan.zn.detail&rel=6673165
http://www.dianping.com/shop/2070529 大众点评 五角场的
http://www.shdgm.com/ 大光明 南京西路248号
http://sh.meituan.com/deal/462251.html 大悦城电影院 021-36397050 咨询过了 只能提前一天
http://www.manzuo.com/shanghai/77521541?campaign= ...
两种主要方式:
一 和Servlet API耦合的访问方式
二 和Servlet API解耦的访问方式
********************************************************************
一 和Servlet API耦合的访问方式
1、 采用Request (HttpServletRequest)对象来传递数据
(1)在Action类 ...