JHipster - import-jdl - Field has jhi_ added to name
I've created a new JHipster project, used JDL Studio to create a .jh schema file, and added it to the project. After doing the import-jdl and project rebuild, one of my fields has had 'jhi_' added to the name.
Can anyone shed light on this?
I'm guessing maybe I've used a reserved word. But I can't find a list of JHipster's reserved words, if there are any.
Thanks in advance.
Full details:
JHipster generation options: monolithic, not using Registry, JWT authentication, MySQL database, Hazelcast cache implementation, 2nd level cache enabled, Gradle, WebSockets, Angular, SASS, no internationalisation, Protractor, no other generators.
The field affected is the cost field in this JDL definition:
entity Product {
description String required maxlength(100)
price BigDecimal required min(0)
cost BigDecimal required min(0)
weight Integer min(0)
barcode String required maxlength(13)
shelfLife Integer min(0)
isActive Boolean required
lastModified Instant required
}
And its relationships:
relationship OneToMany {
Product to Shelf{product (description) required},
Product to TransactionItem{product (description) required}
}
It appears in the MySQL database, and in all generated code, as jhi_cost
All other fields are appearing exactly as I expect.
java mysql jhipster jdl
add a comment |
I've created a new JHipster project, used JDL Studio to create a .jh schema file, and added it to the project. After doing the import-jdl and project rebuild, one of my fields has had 'jhi_' added to the name.
Can anyone shed light on this?
I'm guessing maybe I've used a reserved word. But I can't find a list of JHipster's reserved words, if there are any.
Thanks in advance.
Full details:
JHipster generation options: monolithic, not using Registry, JWT authentication, MySQL database, Hazelcast cache implementation, 2nd level cache enabled, Gradle, WebSockets, Angular, SASS, no internationalisation, Protractor, no other generators.
The field affected is the cost field in this JDL definition:
entity Product {
description String required maxlength(100)
price BigDecimal required min(0)
cost BigDecimal required min(0)
weight Integer min(0)
barcode String required maxlength(13)
shelfLife Integer min(0)
isActive Boolean required
lastModified Instant required
}
And its relationships:
relationship OneToMany {
Product to Shelf{product (description) required},
Product to TransactionItem{product (description) required}
}
It appears in the MySQL database, and in all generated code, as jhi_cost
All other fields are appearing exactly as I expect.
java mysql jhipster jdl
add a comment |
I've created a new JHipster project, used JDL Studio to create a .jh schema file, and added it to the project. After doing the import-jdl and project rebuild, one of my fields has had 'jhi_' added to the name.
Can anyone shed light on this?
I'm guessing maybe I've used a reserved word. But I can't find a list of JHipster's reserved words, if there are any.
Thanks in advance.
Full details:
JHipster generation options: monolithic, not using Registry, JWT authentication, MySQL database, Hazelcast cache implementation, 2nd level cache enabled, Gradle, WebSockets, Angular, SASS, no internationalisation, Protractor, no other generators.
The field affected is the cost field in this JDL definition:
entity Product {
description String required maxlength(100)
price BigDecimal required min(0)
cost BigDecimal required min(0)
weight Integer min(0)
barcode String required maxlength(13)
shelfLife Integer min(0)
isActive Boolean required
lastModified Instant required
}
And its relationships:
relationship OneToMany {
Product to Shelf{product (description) required},
Product to TransactionItem{product (description) required}
}
It appears in the MySQL database, and in all generated code, as jhi_cost
All other fields are appearing exactly as I expect.
java mysql jhipster jdl
I've created a new JHipster project, used JDL Studio to create a .jh schema file, and added it to the project. After doing the import-jdl and project rebuild, one of my fields has had 'jhi_' added to the name.
Can anyone shed light on this?
I'm guessing maybe I've used a reserved word. But I can't find a list of JHipster's reserved words, if there are any.
Thanks in advance.
Full details:
JHipster generation options: monolithic, not using Registry, JWT authentication, MySQL database, Hazelcast cache implementation, 2nd level cache enabled, Gradle, WebSockets, Angular, SASS, no internationalisation, Protractor, no other generators.
The field affected is the cost field in this JDL definition:
entity Product {
description String required maxlength(100)
price BigDecimal required min(0)
cost BigDecimal required min(0)
weight Integer min(0)
barcode String required maxlength(13)
shelfLife Integer min(0)
isActive Boolean required
lastModified Instant required
}
And its relationships:
relationship OneToMany {
Product to Shelf{product (description) required},
Product to TransactionItem{product (description) required}
}
It appears in the MySQL database, and in all generated code, as jhi_cost
All other fields are appearing exactly as I expect.
java mysql jhipster jdl
java mysql jhipster jdl
edited Dec 6 '18 at 15:49
Spara
3,10721542
3,10721542
asked Nov 22 '18 at 2:25
B HoulistonB Houliston
32
32
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
COST is listed as a reserved word for Oracle in the generator (see oracle.js) so it gets prefixed when you select Oracle as target database. The prefix is globally configurable using --jhi-prefix
command line option. You say you use MySQL so it's a bit surprising as COST is not included in mysql.js so maybe there's a bug you should report on github with your project setup.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53423050%2fjhipster-import-jdl-field-has-jhi-added-to-name%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
COST is listed as a reserved word for Oracle in the generator (see oracle.js) so it gets prefixed when you select Oracle as target database. The prefix is globally configurable using --jhi-prefix
command line option. You say you use MySQL so it's a bit surprising as COST is not included in mysql.js so maybe there's a bug you should report on github with your project setup.
add a comment |
COST is listed as a reserved word for Oracle in the generator (see oracle.js) so it gets prefixed when you select Oracle as target database. The prefix is globally configurable using --jhi-prefix
command line option. You say you use MySQL so it's a bit surprising as COST is not included in mysql.js so maybe there's a bug you should report on github with your project setup.
add a comment |
COST is listed as a reserved word for Oracle in the generator (see oracle.js) so it gets prefixed when you select Oracle as target database. The prefix is globally configurable using --jhi-prefix
command line option. You say you use MySQL so it's a bit surprising as COST is not included in mysql.js so maybe there's a bug you should report on github with your project setup.
COST is listed as a reserved word for Oracle in the generator (see oracle.js) so it gets prefixed when you select Oracle as target database. The prefix is globally configurable using --jhi-prefix
command line option. You say you use MySQL so it's a bit surprising as COST is not included in mysql.js so maybe there's a bug you should report on github with your project setup.
answered Nov 22 '18 at 7:24
Gaël MarziouGaël Marziou
10.1k22535
10.1k22535
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53423050%2fjhipster-import-jdl-field-has-jhi-added-to-name%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown