Hibernate version: 3.2.0.CR2
Name and version of the database you are using: Oracle9i
Debug level Hibernate log excerpt:
I am using the Hibernate Validator by calling it manually (to check various business logic specific preconditions) and getting a lot of these messages. I'm wondering if someone can explain what it means. I saw this
http://opensource.atlassian.com/projects/hibernate/browse/ANN-306
but I am not marking much as transient.... Is this saying that it found a property that should be marked transient? It sounds like emmanuel doesnt think this is worthy of the WARN so should I ignore it?
Code:
17:28:59,875 WARN ClassValidator:228 - Original type of property public abstract java.lang.Object java.util.List.get(int) is unbound and has been approximated.
17:28:59,875 WARN ClassValidator:228 - Original type of property public abstract java.util.Iterator java.util.List.iterator() is unbound and has been approximated.
17:28:59,875 WARN ClassValidator:228 - Original type of property public abstract java.lang.Object[] java.util.List.toArray(java.lang.Object[]) is unbound and has been approximated.
17:28:59,875 WARN ClassValidator:228 - Original type of property public abstract java.lang.Object java.util.List.remove(int) is unbound and has been approximated.
17:28:59,875 WARN ClassValidator:228 - Original type of property public abstract java.lang.Object java.util.List.set(int,java.lang.Object) is unbound and has been approximated.
17:28:59,875 WARN ClassValidator:228 - Original type of property public abstract java.util.List java.util.List.subList(int,int) is unbound and has been approximated.
17
[/url]