摘要:
在做Excel数据导入的时候,有些日期文本转换为日期格式时,需要适应多种格式,转换代码如下:static Date multiParse(String strDate){ if (strDate?.trim()){ final List dateFormats = Arrays.... 阅读全文
摘要:
I was walking across a bridge one day, and I saw a man standingon the edge, about to jump off. So I ran over and said, “Stop! Don’t doit!”“I can’t help it,” he crie... 阅读全文
摘要:
newforms是django新的对表单处理功能,查看官方文档:http://www.djangoproject.com/documentation/newforms/最近也在看newsform的文章,总结了两种使用的方法,如下所示:一、根据model自动生成newsformmodel:Code highlighting produced by Actipro CodeHighlighter (f... 阅读全文
摘要:
如果你还是使用以前的mapping的时候就会有可能会出现Type '*******' cannot be specified as proxy: method get_Id should be virtual这个时候你需要修改***.hbm.xml中的hibernate-mapping节点上的default-lazy="false" 阅读全文
摘要:
我今天下载了11.1日发布的rc2的版本,发现找不到Castle.Model,后来发现多了个Castle.Core,发现可以用他来代替Castle.Model.搜索了一下,果然看到官方文档中有:- The assembly Castle.Model was replaced by Castle.Core - Internal interfaces have changed to allocate ... 阅读全文