Hibernate Annotations

Been transitioning Hibernate mappings from HBM files to annotations recently at work. This post is more of a note to myself.

inverse="true" becomes

@OneToMany(mappedBy="someProperty")

cascade="all-delete-orphan" becomes
@Cascade(type=CascadeType.DELETE_ORPHANS)

Posted at at 2:13 PM on Friday, March 13, 2009 by Posted by Vince | 0 comments   | Filed under: , ,

Javascript String.split() function behaviour

In one of my recent projects I had the following line of Javascript to split up a string based on opening "(" and closing ")" brackets.

"Hello(World)".split(/(\(|\))/)
I found that in Firefox 3, the split command would return the array: [Hello,(,World,),]
However in IE7 I would get this: [Hello,World,]

For interest sake I also tried it in Chrome and it does what Firefox does. This is one time that IE did what I expected while FF and Chrome seemed to stumble.

I eventually changed the regex to the following to get all the browsers to produce the same result (i.e. the one IE7 originally produced).
"Hello(World)".split(/\(|\)/)

Posted at at 12:16 AM on Tuesday, December 23, 2008 by Posted by Vince | 0 comments   | Filed under: , , ,