In version 4.3.3 the following code to inject a bean into a Hibernate entity using load time weaving worked flawlessly and someBean is correctly set but after upgrading to version 4.3.4 someBean is now null.
@Configurable(preConstruction = true)
@Entity
public class ExampleEntity {
@Inject SomeBean someBean;
...
}
Holger Stenzhorn opened SPR-14892 and commented
In version 4.3.3 the following code to inject a bean into a Hibernate entity using load time weaving worked flawlessly and
someBeanis correctly set but after upgrading to version 4.3.4someBeanis nownull.Affects: 4.3.4
Issue Links: