如何在 Grails 域类中使用接口类型对象
在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将其标记为
transient
You need to mark it as
transient