摘要:
异常1:not-null property references a null or transient value 解决方法:将“一对多”关系中的“一”方,not-null设置为false (参考资料:http://www.thearcmind.com/confluence/pages /viewpage.action?pageId=212) 异常2:org.hibernate.Transien... 阅读全文
摘要:
.append( function(index, html) ) function(index, html)A function that returns an HTML string to insert at the end of each element in the set of matched elements. Receives the index position of the el... 阅读全文
摘要:
最近PHP又出了新版本5.3.1,趁着有空也更新到自己的机器上。 版本选择 PHP 5.3 For Windows有4个版本: VC9 x86 Non Thread Safe VC9 x86 Thread Safe VC6 x86 Non Thread Safe VC6 x86 Thread Safe 官网已经注明,VC9的版本是给IIS用的,VC6的版本是给Apache用的。之所以要这样区分... 阅读全文
摘要:
Array.prototype.unique = function () { var r = new Array(); o:for(var i = 0, n = this.length; i < n; i++) { for(var x = 0, y = r.length; x < y; x++) { if(r[x]==this[i]) { continue o; } } r[r.len... 阅读全文
摘要:
Echo The simplest use of echo is to print a string as argument, for example: echo “This will print in the user’s browser window.”; Or equivalently: echo(“This will print in the... 阅读全文