如何在 Grails 域类中使用接口类型对象

发布于 2024-12-12 03:54:18 字数 240 浏览 0 评论 0原文

在Grails中,Domain类的变量与数据库表的映射。

我想使用接口类型对象。我想使用依赖注入。

请帮我!我不想与数据库表映射!

class User{
  String name
  UserService userService
}

interface UserService{
}

如果使用这段代码,我会遇到错误消息。 “无法映射 UserService”

in Grails, Domain class's variable mapping with database table.

I want use Interface type object. and I want to use Dependency Injection.

Please help me! I don't want to mapping with database table!

class User{
  String name
  UserService userService
}

interface UserService{
}

If use this code, I can meet the Error Message.
"Can't mapping UserService"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

塔塔猫 2024-12-19 03:54:18

您需要将其标记为transient

class User{
  String name
  UserService userService
  static transients = ['userService']
}

You need to mark it as transient

class User{
  String name
  UserService userService
  static transients = ['userService']
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文