作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
鉴于这些功能要求:
用户管理
interface User {}
class Librarian implements User {}
class Administrator implements User {}
class Borrower implements User {}
class OpenID {} //all Users HAS AN OpenID attribute (NULL if non-openId login)
interface Property{}
class Book implements Property{}
class Memorandum implements Property{}
class Circular implements Property{}
class License implements Property{}
最佳答案
那么首先让我们更正它,您可以使用inheritance
在这种情况下。您只需要更改 has a
的约定与 is a
的关系关系。
需要注意的几个因素:
1. Grails 致力于约定优于配置。
2. 你可以使用 GORM 封装持久层,并在 Hibernate 的帮助下为底层持久层创建对象映射。
根据您的功能要求:-
如果您不想拥有 User
作为持久性的一部分,您可以使用 abstract
类(class) User
它可以保存用户的常见属性,包括 openId
属性。必须放在src\groovy
按照约定的目录(由于基类是抽象的,依赖注入(inject)将被拒绝)Property
也是如此。 .摘要 Property
类(class) src\groovy
.
现在来到商业模式,extend
domain
中的每个具体实体(abstract
类) parent 。
概括:-
abstract class User{
String name
String emailId
OpenID openId
}
abstract class Property{
String propertyName
}
grails-app/domain
下: class Librarian extends User{
//Attributes specific to Librariran
static constraints = {
}
static mapping = {
}
}
class Book extends Property{
//Attributes specific to Book
static constraints = {
}
static mapping = {
}
}
User
中提到过。有
OpenId
.
关于grails - 如何在 Grails 中设计领域类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16312180/
我是一名优秀的程序员,十分优秀!