2 |
3 |
This page was generated, please edit!
4 |
5 |
6 |
7 |
9 |
--------------------------------------------------------------------------------
/generators/spring-service/USAGE:
--------------------------------------------------------------------------------
1 | Description:
2 | Creates a new JHipster service: this is a simple transactional Spring service bean.
3 |
4 | Example:
5 | jhipster spring-service Foo
6 |
7 | This will create:
8 | src/main/java/package/service/FooService.java
9 |
--------------------------------------------------------------------------------
/generators/upgrade-config/USAGE:
--------------------------------------------------------------------------------
1 | Description:
2 | Unifies JHipster configuration
3 |
4 | Example:
5 |
6 | jhipster upgrade-config
7 |
8 | JHipster upgrade-config will :
9 | - read all blueprint configuration and unify into generator-jhipster namespace
10 |
--------------------------------------------------------------------------------
/test-integration/samples/jdl-entities/entities.jdl:
--------------------------------------------------------------------------------
1 | @ChangelogDate(20200804035352)
2 | entity JdlFieldTest {
3 | id Long
4 |
5 | name String
6 |
7 | @MapstructExpression("java(s.getName())")
8 | value String
9 | }
10 |
11 | dto JdlFieldTest with mapstruct
12 |
--------------------------------------------------------------------------------
/generators/client/templates/angular/webpack/environment.js.ejs:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | I18N_HASH: 'generated_hash',
3 | SERVER_API_URL: '',
4 | __VERSION__: process.env.hasOwnProperty('APP_VERSION') ? process.env.APP_VERSION : 'DEV',
5 | __DEBUG_INFO_ENABLED__: false,
6 | };
7 |
--------------------------------------------------------------------------------
/generators/database-changelog-liquibase/templates/src/main/resources/config/liquibase/fake-data/blob/hipster.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/freynder/generator-jhipster/main/generators/database-changelog-liquibase/templates/src/main/resources/config/liquibase/fake-data/blob/hipster.png
--------------------------------------------------------------------------------
/generators/languages/templates/src/test/resources/i18n/messages_en.properties.ejs:
--------------------------------------------------------------------------------
1 | email.test.title=test title
2 | # Value used for English locale unit test in MailServiceIT
3 | # as this file is loaded instead of real file
4 | email.activation.title=<%= baseName %> account activation
5 |
--------------------------------------------------------------------------------
/generators/languages/templates/src/test/resources/i18n/messages_fi.properties.ejs:
--------------------------------------------------------------------------------
1 | email.test.title=testi otsikko
2 | # Value used for English locale unit test in MailServiceIT
3 | # as this file is loaded instead of real file
4 | email.activation.title=<%= baseName %> tili aktivointi
5 |
--------------------------------------------------------------------------------
/generators/languages/templates/src/test/resources/i18n/messages_pa.properties.ejs:
--------------------------------------------------------------------------------
1 | email.test.title=ਟੈਸਟ ਸਿਰਲੇਖ
2 | # Value used for Punjabi locale unit test in MailServiceIT
3 | # as this file is loaded instead of real file
4 | email.activation.title=<%= baseName %> ਖਾਤਾ ਐਕਟੀਵੇਸ਼ਨ
5 |
--------------------------------------------------------------------------------
/test/jdl/test-files/application_with_entities.jdl:
--------------------------------------------------------------------------------
1 | application {
2 | config {
3 | baseName MyApp
4 | applicationType microservice
5 | jwtSecretKey "aaa.bbb.ccc"
6 | }
7 | entities * except Customer
8 | }
9 |
10 | entity BankAccount
11 | entity Customer
12 |
--------------------------------------------------------------------------------
/generators/client/templates/vue/src/main/webapp/app/core/jhi-footer/jhi-footer.vue.ejs:
--------------------------------------------------------------------------------
1 |