Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我现在正在开发一个组织,但是当我使用JDL-studio向权限添加多对多关系时,我找不到权限实体。但是可以找到这个User实体类。请帮助我,谢谢!我现在正在使用 jhipstter 4.6.1。
运行哟 jhipster:import-jdl /Users/uqing/Downloads/jhipster-jde.jh 出现如下错误:</p>
在角色和权限之间的关系中,没有声明权限。',
消息:'在角色和权限之间的关系中,没有声明权限。',
这是jdl
由于Authority只是一个包含一列字符串类型的表,因此可以使用简单的字符串列来完成链接。例如
Authority
entity MyEntity { authority String required value String }
在数据库中,您将拥有如下内容:
Authority | Value -------------------- ROLE_A | Value 1 ROLE_B | Value 2