Hello,
I am looking into the source code of Hibernate and I am trying to better
understand how it is implemented.
My question relates to annotation processing by Hibernate. Let's take a
simple JPA annotation : [EMAIL PROTECTED]/code].
I would like to know:
-What is the class in charge of processi
AnnotationBinder is the class you're looking for.
@Column is used in several place, but it happens at runtime during
what is called the Annotationconfiguration.secondPassCompile() phase
(usually when you build the session factory).
On Nov 5, 2007, at 10:14, Julien Martin wrote:
Hello,
I