我将学习 Java 和 Morphia。我有这段代码:
import com.google.code.morphia.annotations.Entity;
import com.google.code.morphia.annotations.Embedded;
import com.google.code.morphia.annotations.Id;
import com.google.code.morphia.annotations.Property;
import org.bson.types.ObjectId;
@Entity
public class Hotel {
@Id private ObjectId id;
private String name;
private int stars;
@Embedded
private Address address;
...
}
请告诉我@Entity
, @Id
,@Embedded
是什么意思?还有一般我什么时候应该在 Java 中使用 @ 非常感谢