jhipster将选项传递给蓝图

时间:2018-10-15 14:34:20

标签: jhipster options blueprint

我正在尝试创建一个jhipster蓝图,以覆盖spring-controller的功能。我想访问从命令行运行的选项:

jhipster -d --blueprint generator-jhipster-baris-blueprint spring-controller policyEffectiveStatus --path附录

此命令使我的蓝图运行。我可以通过以下方式从代码中的参数访问名称“ policyEffectiveStatus”:

3

但是我无法访问选项路径。如何将选项传递给我的蓝图?

这是我的index.js:

this.argument('name', { type: String, required: true });
this.name = this.options.name;

我正在运行的命令是:

command

1 个答案:

答案 0 :(得分:1)

仅仅发现它们存在于jhipster上下文中的选项中,这意味着:

this.options.jhipsterContext.options

代替此

this.options