How can I use spring to inject a bean into a hibernate entity? I am using spring 2.5 with hibernate 3. I can see how to do this in spring 3, but can it be done in spring 2.5?In the example I want to inject the \[code\]UtillBean\[/code\] into \[code\]Stuff.stuffUtill\[/code\].\[code\]@Entity@Table(name = "STUFF")public class Stuff { @Id @Column(name = "STUFF_ID") private Long stuffID; private UtillBean stuffUtill;}public class UtillBean { ...}\[/code\]