0

我有一个关于春豆和 JPA 的问题

我有一个实体 A,它具有可嵌入类 B 作为参数之一。B 具有可嵌入类 C 作为其参数之一。

我的问题是:我可以将 C 用作可嵌入类和 Spring bean 吗?例如。我可以做类似的事情吗

@RequestMapping(value = "game/nextQuestion/answer/{userAnswer}", method = RequestMethod.POST)
@ResponseBody
public final Question answer(
        @PathVariable("userAnswer") final Long userAnswer,
        @RequestBody final QuestionDetails details,
        @ModelAttribute("game") GameObject game, Model m)
        throws GameNotFoundException {

    return model.answer(userAnswer, game, m,details);
}

在上面的示例中,QuestionDetails 是嵌入在“A”中的“B”中的“C”类,而 Question 是“A”类

谢谢!

橡木

4

1 回答 1

0

简单地说,是的,你可以。这是普通的 POJO 类。特殊用法仅在此类被持久化时使用。

于 2013-04-28T20:38:03.150 回答