`
qianchengboy
  • 浏览: 48051 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
文章分类
社区版块
存档分类
最新评论
文章列表
http://blog.mayongfa.cn/94.html  
http://www.zuoxiaolong.com/  http://geek.csdn.net/news/detail/113676   http://www.zuoxiaolong.com/blog/article_list.ftl?orderColumn=create_date&current=1  
http://blog.itpub.net/29618264/viewspace-1386199/  

RPC

https://segmentfault.com/a/1190000005178084#articleHeader11  
http://blog.chinaunix.net/uid-26959955-id-3275282.html  
http://www.cnblogs.com/xdp-gacl/p/4264440.html http://blog.csdn.net/jefry_xdz/article/details/8767358  
package cn.outofmemory.jaxb; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; import javax.xml.bind.annotation.adapters.XmlAdapter; public class JaxbDateAdapter extends XmlAdapter<String, Date> { static final String STANDARM_DATE_FORMAT = & ...
http://lib.csdn.net/base/23  
http://jingyan.baidu.com/article/a948d6510e1af00a2dcd2ec2.html
http://www.ofmonkey.com/tools/ercode  http://www.uucode.net/  http://hansionxu.blog.163.com/  http://www.mspring.org/article/318  
http://www.cnblogs.com/quanyongan/archive/2013/04/26/3044618.html  
 Myeclipse2014中,新建部署Maven项目 发表于1年前(2014-04-06 22:59)   阅读(7545) | 评论(2) 19人收藏此文章, 我要收藏 赞3
http://www.importnew.com/16176.html  
http://www.oschina.net/question/565065_86540  
ALTER TABLE tab_large add col_new Number(9) Default 1; 该语句会对所有记录进行填值操作,对于现场tab_large中存在3000W条左右数据,该步骤需要执行数小时。 可以将该语句改为: ALTER TABLE tab_large add col_new Number(9); ALTER TABLE tab_large modify col_new number(9) default 1; 该语句只会对新增的记录进行填值操作,只需要数秒。 如果需要对原来的值进行操作,可以在升级后进行update操作,这样能够节省大量的升级时间 ...
Global site tag (gtag.js) - Google Analytics