标签: java annotations code-injection morphia
我有一个不可变的Java:
@Value.Immutable public interface Student { Long id(); String name(); }
我想将其与Morphia结合使用,这需要在ImmutableStudent类中添加@Entity(“ student”)注释,并在id字段中添加@Id注释。
如何使用不可变对象实现这一目标?我看了一眼不可变的注射剂,但到目前为止没有发现任何成功。