0

如何使用 spring 将 bean 注入休眠实体?我正在使用带有休眠 3 的 spring 2.5。

我可以在 spring 3 中看到如何做到这一点,但它可以在 spring 2.5 中完成吗?

在示例中,我想将其UtillBean注入Stuff.stuffUtill.

@Entity
@Table(name = "STUFF")
public class Stuff {
    @Id
    @Column(name = "STUFF_ID")
    private Long stuffID;

    private UtillBean stuffUtill;

}

public class UtillBean {
    ...
}

更新:对于这种情况,这是我坚持的设计。

4

1 回答 1

0

Try with @Configurable annotation (since 2.0).

See http://blog.springsource.org/2008/01/23/new-improvements-in-domain-object-dependnecy-injection-feature/ spring source post for more info.

于 2013-03-28T19:38:07.440 回答