Hibernate Annotations examples and reference
Found a really great reference with examples of Hibernate association mappings using annotations. http://tadtech.blogspot.com/2007/09/hibernate-association-mappings-in.html
Found a really great reference with examples of Hibernate association mappings using annotations. http://tadtech.blogspot.com/2007/09/hibernate-association-mappings-in.html
Using the LIKE condition with a “%” sign for pattern matching in a HQL query with named parameters required some tweaking. This did not work: It resulted in a org.hibernate.QueryException: unexpected char: ‘%’ error. Next I tried using single quotes: Didn’t work either, an org.hibernate.QueryParameterException: could not locate named parameter. What actually worked was putting [...]
Spring Framework provides the convenient form:options tag to render a list of <option> tags for a form <select>. Here is an example: It does iteratate through statusList and will output each item as an option with the value statusList[i].id and the text statusList[i].label and automatically make the option corresponding to status selected. Unfortunately form:options does [...]