在我的项目中,我有2个资产名称空间
namespace org.example.grid
namespace org.example.workload
他们都使用一个名为metrics的抽象结构,我想在一个单独的文件中创建1个概念,并让两个资产都使用这个概念。
所以我做了这样一个文件:
namespace org.example.concepts
concept Metrics {
o Integer metric1
o Integer metric2
o Integer metric3
}
然后我尝试将Metric概念包含在资产中,如下所示:
namespace org.example.grid import org.example.concepts.Metrics
asset Grid identified by gridId {
o String gridId
o Metrics capacity
}
但是,在尝试创建新的网格资产时,我收到此错误:
错误:事务返回失败:TypeNotFoundException:类型度量标准未在命名空间org.example.grid中定义
是否不支持概念导入?或者有适当的方法来做到这一点?