↧
Basic Hibernate @OneToOne @PrimaryKeyJoinColumn Example With Maven and MySQL
Recently we had a story which involved improving one of our data models. The table for the model had grown quite wide and we wanted to improve normalization and performance. We wanted to move a few...
View ArticleRemoving empty XML elements in Scala
import xml.transform.{RuleTransformer, RewriteRule} import xml.{NodeSeq, Node, Elem} import xml.Utility.trim object RemoveEmptyElementsSpike { val x1 =...
View Article