jhipster / generator-jhipster

JHipster is a development platform to quickly generate, develop, & deploy modern web applications & microservice architectures.
https://www.jhipster.tech
Apache License 2.0
21.55k stars 4.02k forks source link

Empty blank Swagger docs for newly created microservice project #27035

Open ken4ward opened 2 months ago

ken4ward commented 2 months ago

Screenshot 2024-08-22 at 9 19 17 AM

Overview of the issue

I created a new microservice project using jHipster 8, Keycloak and docker. The project contains the gateway and a microservice contanerised with docker. I accessed the project on http://localhost:8080. It works fine with the exemption that Swagger docs on this url http://localhost/admin/docs does not show anything. It is blank. This is strange and I sought the support of more knowledgable experts here.

Developing locally, Swagger docs did not show at http://localhost:8080/admin/docs

JHipster Version(s)

8.6.0

JHipster configuration
application {
  config {
    baseName gateway
    packageName com.christdoes.gateway
    applicationType gateway
    authenticationType oauth2
    buildTool maven
    cacheProvider hazelcast
    databaseType sql
    clientFramework angularX
    clientPackageManager npm
    devDatabaseType h2Memory
    prodDatabaseType postgresql
    enableHibernateCache true
    enableSwaggerCodegen true
    enableTranslation true
    languages [nl, en, fr, de, es]
    messageBroker kafka
    nativeLanguage en
    searchEngine elasticsearch
    serverPort 8080
    serviceDiscoveryType consul
    skipClient false
    skipServer false
    skipUserManagement false
    testFrameworks [cucumber]
    websocket no
  }
  entities *
}

application {
  config {
    baseName notaries
    packageName com.christdoes.notaries
    applicationType microservice
    authenticationType oauth2
    buildTool maven
    cacheProvider hazelcast
    databaseType sql
    devDatabaseType h2Memory
    dtoSuffix DTO
    enableHibernateCache true
    enableSwaggerCodegen true
    enableTranslation true
    languages [nl, en, fr, de, es]
    messageBroker kafka
    nativeLanguage en
    prodDatabaseType postgresql
    reactive true
    searchEngine elasticsearch
    serverPort 8081
    serviceDiscoveryType consul
    skipClient true
    skipServer false
    skipUserManagement false
    testFrameworks [cucumber]
    websocket no
  }
  entities ...
}
Entity configuration(s) entityName.json files generated in the .jhipster directory
JHipster configuration, a .yo-rc.json file generated in the root folder
.yo-rc.json file
{
  "generator-jhipster": {
    "appsFolders": [
      "gateway",
      "notaries"
    ],
    "directoryPath": "../",
    "jhipsterVersion": "8.6.0",
    "monitoring": "prometheus",
    "serviceDiscoveryType": "consul"
  }
}
JHipster configuration for gateway not found
JHipster configuration for notaries not found
Environment and Tools

java version "22.0.1" 2024-04-16 Java(TM) SE Runtime Environment Oracle GraalVM 22.0.1+8.1 (build 22.0.1+8-jvmci-b01) Java HotSpot(TM) 64-Bit Server VM Oracle GraalVM 22.0.1+8.1 (build 22.0.1+8-jvmci-b01, mixed mode, sharing)

git version 2.39.3 (Apple Git-146)

node: v20.16.0 npm: 10.8.1

Docker version 26.1.4, build 5650f9b


<!--
If the error is during an entity creation or associated with a specific entity.
If you are using JDL, please share that configuration as well.
-->

##### **Browsers and Operating System**
Google Chrome & MacOS M3

<!-- What OS are you on? is this a problem with all browsers or only IE8? -->
MacOS M3
- [ ] Checking this box is mandatory (this is just to show you read everything)
ken4ward commented 2 months ago

@jkutner @jdigger @gunnarahlberg @mraible is there anyone here to help on this issue? Thanks.

mshima commented 2 months ago

@ken4ward you should post jhipster info output in the issue description.

ken4ward commented 2 months ago

Thank you @mshima . This is the content of my Jhipster info I have one Gateway and a microservice

This is the Jhipster info for the microserivce

jhipster info
WARNING! Since JHipster v8, the jhipster command will not use the locally installed generator-jhipster.
    If you want to execute the locally installed generator-jhipster, run: npx jhipster

        ██╗ ██╗   ██╗ ████████╗ ███████╗   ██████╗ ████████╗ ████████╗ ███████╗
        ██║ ██║   ██║ ╚══██╔══╝ ██╔═══██╗ ██╔════╝ ╚══██╔══╝ ██╔═════╝ ██╔═══██╗
        ██║ ████████║    ██║    ███████╔╝ ╚█████╗     ██║    ██████╗   ███████╔╝
  ██╗   ██║ ██╔═══██║    ██║    ██╔════╝   ╚═══██╗    ██║    ██╔═══╝   ██╔══██║
  ╚██████╔╝ ██║   ██║ ████████╗ ██║       ██████╔╝    ██║    ████████╗ ██║  ╚██╗
   ╚═════╝  ╚═╝   ╚═╝ ╚═══════╝ ╚═╝       ╚═════╝     ╚═╝    ╚═══════╝ ╚═╝   ╚═╝
                            https://www.jhipster.tech
Welcome to JHipster v8.6.0

Welcome to the JHipster Information Sub-Generator

notaries@0.0.0 /Users/christdoes/Documents/projects/apps/notaris/notaries └── generator-jhipster@8.6.0


##### **JHipster configuration, a `.yo-rc.json` file generated in the root folder**

<details>
<summary>.yo-rc.json file</summary>
<pre>
{
  "generator-jhipster": {
    "applicationIndex": 1,
    "applicationType": "microservice",
    "authenticationType": "oauth2",
    "baseName": "notaries",
    "buildTool": "maven",
    "cacheProvider": "hazelcast",
    "databaseType": "sql",
    "devDatabaseType": "h2Memory",
    "dtoSuffix": "DTO",
    "enableHibernateCache": true,
    "enableSwaggerCodegen": true,
    "enableTranslation": true,
    "entities": [
      "NotaryOffice",
      "Client"
    ],
    "jhipsterVersion": "8.6.0",
    "languages": [
      "en",
      "nl",
      "fr",
      "de",
      "es"
    ],
    "lastLiquibaseTimestamp": 1724308256000,
    "messageBroker": "kafka",
    "nativeLanguage": "en",
    "packageFolder": "com/christdoes/notaries",
    "packageName": "com.christdoes.notaries",
    "prodDatabaseType": "postgresql",
    "reactive": true,
    "searchEngine": "elasticsearch",
    "serverPort": "8081",
    "serviceDiscoveryType": "consul",
    "skipClient": true,
    "skipServer": false,
    "skipUserManagement": true,
    "testFrameworks": [
      "cucumber"
    ],
    "websocket": "no"
  }
}
</pre>
</details>

##### **Environment and Tools**

java version "22.0.1" 2024-04-16
Java(TM) SE Runtime Environment Oracle GraalVM 22.0.1+8.1 (build 22.0.1+8-jvmci-b01)
Java HotSpot(TM) 64-Bit Server VM Oracle GraalVM 22.0.1+8.1 (build 22.0.1+8-jvmci-b01, mixed mode, sharing)

git version 2.39.3 (Apple Git-146)

node: v20.16.0
npm: 10.8.1

Docker version 26.1.4, build 5650f9b

##### **JDL for the Entity configuration(s) `entityName.json` files generated in the `.jhipster` directory**

<details>
<summary>JDL entity definitions</summary>

<pre>
@ChangelogDate("20240822061656")
entity NotaryOffice {
  officeName String required
  ...
}
@ChangelogDate("20240822062956")
entity QuoteServiceRate {
  serviceType String required
  ...
}

dto 

</pre>
</details>
This is the Jhipster info for the gateway
jhipster info
WARNING! Since JHipster v8, the jhipster command will not use the locally installed generator-jhipster.
    If you want to execute the locally installed generator-jhipster, run: npx jhipster

        ██╗ ██╗   ██╗ ████████╗ ███████╗   ██████╗ ████████╗ ████████╗ ███████╗
        ██║ ██║   ██║ ╚══██╔══╝ ██╔═══██╗ ██╔════╝ ╚══██╔══╝ ██╔═════╝ ██╔═══██╗
        ██║ ████████║    ██║    ███████╔╝ ╚█████╗     ██║    ██████╗   ███████╔╝
  ██╗   ██║ ██╔═══██║    ██║    ██╔════╝   ╚═══██╗    ██║    ██╔═══╝   ██╔══██║
  ╚██████╔╝ ██║   ██║ ████████╗ ██║       ██████╔╝    ██║    ████████╗ ██║  ╚██╗
   ╚═════╝  ╚═╝   ╚═╝ ╚═══════╝ ╚═╝       ╚═════╝     ╚═╝    ╚═══════╝ ╚═╝   ╚═╝
                            https://www.jhipster.tech
Welcome to JHipster v8.6.0

Welcome to the JHipster Information Sub-Generator

gateway@0.0.1-SNAPSHOT /Users/christdoes/Documents/projects/apps/notaris/gateway └── generator-jhipster@8.6.0


##### **JHipster configuration, a `.yo-rc.json` file generated in the root folder**

<details>
<summary>.yo-rc.json file</summary>
<pre>
{
  "generator-jhipster": {
    "applicationIndex": 0,
    "applicationType": "gateway",
    "authenticationType": "oauth2",
    "baseName": "gateway",
    "buildTool": "maven",
    "cacheProvider": "hazelcast",
    "clientFramework": "angular",
    "clientPackageManager": "npm",
    "databaseType": "sql",
    "devDatabaseType": "h2Memory",
    "devServerPort": 4200,
    "enableHibernateCache": true,
    "enableSwaggerCodegen": true,
    "enableTranslation": true,
    "entities": [
      "NotaryOffice",
      "Address",
       ...
    ],
    "jhipsterVersion": "8.6.0",
    "languages": [
      "en",
      "nl",
      "fr",
      "de",
      "es"
    ],
    "lastLiquibaseTimestamp": 1724308317000,
    "messageBroker": "kafka",
    "nativeLanguage": "en",
    "packageFolder": "com/christdoes/gateway",
    "packageName": "com.christdoes.gateway",
    "prodDatabaseType": "postgresql",
    "reactive": true,
    "searchEngine": "elasticsearch",
    "serverPort": "8080",
    "serviceDiscoveryType": "consul",
    "skipClient": false,
    "skipServer": false,
    "skipUserManagement": false,
    "testFrameworks": [
      "cucumber"
    ],
    "websocket": "no"
  }
}
</pre>
</details>

##### **Environment and Tools**

java version "22.0.1" 2024-04-16
Java(TM) SE Runtime Environment Oracle GraalVM 22.0.1+8.1 (build 22.0.1+8-jvmci-b01)
Java HotSpot(TM) 64-Bit Server VM Oracle GraalVM 22.0.1+8.1 (build 22.0.1+8-jvmci-b01, mixed mode, sharing)

git version 2.39.3 (Apple Git-146)

node: v20.16.0
npm: 10.8.1

Docker version 26.1.4, build 5650f9b

##### **JDL for the Entity configuration(s) `entityName.json` files generated in the `.jhipster` directory**

<details>
<summary>JDL entity definitions</summary>

<pre>
@ChangelogDate("20240822061657")
entity NotaryOffice {
  officeName String required
...
}
@ChangelogDate("20240822061957")
entity Affiliation {
  name String required
  ...
}
@ChangelogDate("20240822063057")
entity Client {
  name String required
  ...
}
enum FacilityType {
  APPOINTMENTS_AT_HOME,
  ...
}
enum AppointmentType {
  CALL_ME_BACK,
  ...
}
enum DayOfWeek {
  MONDAY,
  ...
}
enum TimeOfDay {
  MORNING,
  ...
}
enum Gender {
  MALE,
  ...
}
relationship OneToOne {
  NotaryOffice{address} to Address
  ...
}
relationship OneToMany {
  NotaryOffice{branches} to Branch
  ...
}
relationship ManyToOne {
  QuoteRequest{notaryOffice} to NotaryOffice
  ...
}

dto 

</pre>
</details>

This is Jhipster info for the docker container

jhipster info

        ██╗ ██╗   ██╗ ████████╗ ███████╗   ██████╗ ████████╗ ████████╗ ███████╗
        ██║ ██║   ██║ ╚══██╔══╝ ██╔═══██╗ ██╔════╝ ╚══██╔══╝ ██╔═════╝ ██╔═══██╗
        ██║ ████████║    ██║    ███████╔╝ ╚█████╗     ██║    ██████╗   ███████╔╝
  ██╗   ██║ ██╔═══██║    ██║    ██╔════╝   ╚═══██╗    ██║    ██╔═══╝   ██╔══██║
  ╚██████╔╝ ██║   ██║ ████████╗ ██║       ██████╔╝    ██║    ████████╗ ██║  ╚██╗
   ╚═════╝  ╚═╝   ╚═╝ ╚═══════╝ ╚═╝       ╚═════╝     ╚═╝    ╚═══════╝ ╚═╝   ╚═╝
                            https://www.jhipster.tech
Welcome to JHipster v8.6.0

Welcome to the JHipster Information Sub-Generator

/Users/christdoes/Documents/projects/apps/notaris/config-docker └── (empty)


##### **JHipster configuration, a `.yo-rc.json` file generated in the root folder**

<details>
<summary>.yo-rc.json file</summary>
<pre>
{
  "generator-jhipster": {
    "appsFolders": [
      "gateway",
      "notaries"
    ],
    "directoryPath": "../",
    "jhipsterVersion": "8.6.0",
    "monitoring": "prometheus",
    "serviceDiscoveryType": "consul"
  }
}
</pre>
</details>

##### **JHipster configuration for gateway not found**

##### **JHipster configuration for notaries not found**

##### **Environment and Tools**

java version "22.0.1" 2024-04-16
Java(TM) SE Runtime Environment Oracle GraalVM 22.0.1+8.1 (build 22.0.1+8-jvmci-b01)
Java HotSpot(TM) 64-Bit Server VM Oracle GraalVM 22.0.1+8.1 (build 22.0.1+8-jvmci-b01, mixed mode, sharing)

git version 2.39.3 (Apple Git-146)

node: v20.16.0
npm: 10.8.1

Docker version 26.1.4, build 5650f9b
WARNING! Current location doesn't contain a valid JHipster application

Congratulations, JHipster execution is complete!
If you find JHipster useful consider sponsoring the project https://www.jhipster.tech/sponsors/

Thanks for using JHipster!
mshima commented 2 months ago

We need a full jhipster info or a full jdl in the issue DESCRIPTION. Since you are using microservices we need a sample with --workspaces. It cannot be edited because we use it to generate the applications. Generate stripped applications if needed.

ken4ward commented 2 months ago

@mshima thanks for your input. these are the results of each part of the module

docker-compose directory config
jhipster info

        ██╗ ██╗   ██╗ ████████╗ ███████╗   ██████╗ ████████╗ ████████╗ ███████╗
        ██║ ██║   ██║ ╚══██╔══╝ ██╔═══██╗ ██╔════╝ ╚══██╔══╝ ██╔═════╝ ██╔═══██╗
        ██║ ████████║    ██║    ███████╔╝ ╚█████╗     ██║    ██████╗   ███████╔╝
  ██╗   ██║ ██╔═══██║    ██║    ██╔════╝   ╚═══██╗    ██║    ██╔═══╝   ██╔══██║
  ╚██████╔╝ ██║   ██║ ████████╗ ██║       ██████╔╝    ██║    ████████╗ ██║  ╚██╗
   ╚═════╝  ╚═╝   ╚═╝ ╚═══════╝ ╚═╝       ╚═════╝     ╚═╝    ╚═══════╝ ╚═╝   ╚═╝
                            https://www.jhipster.tech
Welcome to JHipster v8.6.0

Welcome to the JHipster Information Sub-Generator

/Users/christdoes/Documents/projects/apps/newsample/docker-composer └── (empty)


##### **JHipster configuration, a `.yo-rc.json` file generated in the root folder**

<details>
<summary>.yo-rc.json file</summary>
<pre>
{
  "generator-jhipster": {
    "appsFolders": [
      "gateway",
      "notaries"
    ],
    "directoryPath": "../",
    "jhipsterVersion": "8.6.0",
    "monitoring": "prometheus",
    "serviceDiscoveryType": "consul"
  }
}
</pre>
</details>

##### **JHipster configuration for gateway not found**

##### **JHipster configuration for notaries not found**

##### **Environment and Tools**

java version "22.0.1" 2024-04-16
Java(TM) SE Runtime Environment Oracle GraalVM 22.0.1+8.1 (build 22.0.1+8-jvmci-b01)
Java HotSpot(TM) 64-Bit Server VM Oracle GraalVM 22.0.1+8.1 (build 22.0.1+8-jvmci-b01, mixed mode, sharing)

git version 2.39.3 (Apple Git-146)

node: v20.16.0
npm: 10.8.1

Docker version 26.1.4, build 5650f9b
WARNING! Current location doesn't contain a valid JHipster application

Congratulations, JHipster execution is complete!
If you find JHipster useful consider sponsoring the project https://www.jhipster.tech/sponsors/

Thanks for using JHipster!

This is the microservice info

jhipster info
WARNING! Since JHipster v8, the jhipster command will not use the locally installed generator-jhipster.
    If you want to execute the locally installed generator-jhipster, run: npx jhipster

        ██╗ ██╗   ██╗ ████████╗ ███████╗   ██████╗ ████████╗ ████████╗ ███████╗
        ██║ ██║   ██║ ╚══██╔══╝ ██╔═══██╗ ██╔════╝ ╚══██╔══╝ ██╔═════╝ ██╔═══██╗
        ██║ ████████║    ██║    ███████╔╝ ╚█████╗     ██║    ██████╗   ███████╔╝
  ██╗   ██║ ██╔═══██║    ██║    ██╔════╝   ╚═══██╗    ██║    ██╔═══╝   ██╔══██║
  ╚██████╔╝ ██║   ██║ ████████╗ ██║       ██████╔╝    ██║    ████████╗ ██║  ╚██╗
   ╚═════╝  ╚═╝   ╚═╝ ╚═══════╝ ╚═╝       ╚═════╝     ╚═╝    ╚═══════╝ ╚═╝   ╚═╝
                            https://www.jhipster.tech
Welcome to JHipster v8.6.0

Welcome to the JHipster Information Sub-Generator

notaries@0.0.0 /Users/christdoes/Documents/projects/apps/newsample/notaries └── generator-jhipster@8.6.0


##### **JHipster configuration, a `.yo-rc.json` file generated in the root folder**

<details>
<summary>.yo-rc.json file</summary>
<pre>
{
  "generator-jhipster": {
    "applicationIndex": 1,
    "applicationType": "microservice",
    "authenticationType": "oauth2",
    "baseName": "notaries",
    "buildTool": "maven",
    "cacheProvider": "hazelcast",
    "databaseType": "sql",
    "devDatabaseType": "h2Memory",
    "dtoSuffix": "DTO",
    "enableHibernateCache": true,
    "enableSwaggerCodegen": true,
    "enableTranslation": true,
    "entities": [
      "QuoteRequest",
      "Quote"
    ],
    "jhipsterVersion": "8.6.0",
    "languages": [
      "en",
      "nl"
    ],
    "lastLiquibaseTimestamp": 1724423478000,
    "messageBroker": "kafka",
    "nativeLanguage": "en",
    "packageFolder": "com/christdoes/notaries",
    "packageName": "com.christdoes.notaries",
    "prodDatabaseType": "postgresql",
    "reactive": true,
    "searchEngine": "elasticsearch",
    "serverPort": "8081",
    "serviceDiscoveryType": "consul",
    "skipClient": true,
    "skipServer": false,
    "skipUserManagement": true,
    "testFrameworks": [
      "cucumber"
    ],
    "websocket": "no"
  }
}
</pre>
</details>

##### **Environment and Tools**

java version "22.0.1" 2024-04-16
Java(TM) SE Runtime Environment Oracle GraalVM 22.0.1+8.1 (build 22.0.1+8-jvmci-b01)
Java HotSpot(TM) 64-Bit Server VM Oracle GraalVM 22.0.1+8.1 (build 22.0.1+8-jvmci-b01, mixed mode, sharing)

git version 2.39.3 (Apple Git-146)

node: v20.16.0
npm: 10.8.1

Docker version 26.1.4, build 5650f9b

##### **JDL for the Entity configuration(s) `entityName.json` files generated in the `.jhipster` directory**

<details>
<summary>JDL entity definitions</summary>

<pre>
@ChangelogDate("20240823143018")
entity QuoteRequest {
  requesterName String required
  requesterEmail String required
  serviceType SpecializedServiceType required
  description String
  status String required
  createdDate ZonedDateTime required
  updatedDate ZonedDateTime
}
@ChangelogDate("20240823143118")
entity Quote {
  quoteNumber String required
  amount BigDecimal required
  currency String required
  validUntil ZonedDateTime required
  createdDate ZonedDateTime required
  status String required
  notaryFee BigDecimal required
  registrationCTR BigDecimal required
  statutoryContribution BigDecimal required
  administrativeCosts BigDecimal required
  identificationCosts BigDecimal required
  vat BigDecimal required
  totalAmount BigDecimal required
  lastUpdatedBy String
  updateTimestamp ZonedDateTime
}

enum SpecializedServiceType {
  INHERITANCE_DISPUTE,
  DIVORCE_OR_END_OF_RELATIONSHIP
}

dto QuoteRequest, Quote with mapstruct
paginate QuoteRequest, Quote with pagination
service QuoteRequest, Quote with serviceImpl
search QuoteRequest, Quote with no
microservice QuoteRequest, Quote with notaries
clientRootFolder QuoteRequest, Quote with notaries

</pre>
</details>

Congratulations, JHipster execution is complete!
If you find JHipster useful consider sponsoring the project https://www.jhipster.tech/sponsors/

Thanks for using JHipster!

This is the gateway info

WARNING! Since JHipster v8, the jhipster command will not use the locally installed generator-jhipster.
    If you want to execute the locally installed generator-jhipster, run: npx jhipster

        ██╗ ██╗   ██╗ ████████╗ ███████╗   ██████╗ ████████╗ ████████╗ ███████╗
        ██║ ██║   ██║ ╚══██╔══╝ ██╔═══██╗ ██╔════╝ ╚══██╔══╝ ██╔═════╝ ██╔═══██╗
        ██║ ████████║    ██║    ███████╔╝ ╚█████╗     ██║    ██████╗   ███████╔╝
  ██╗   ██║ ██╔═══██║    ██║    ██╔════╝   ╚═══██╗    ██║    ██╔═══╝   ██╔══██║
  ╚██████╔╝ ██║   ██║ ████████╗ ██║       ██████╔╝    ██║    ████████╗ ██║  ╚██╗
   ╚═════╝  ╚═╝   ╚═╝ ╚═══════╝ ╚═╝       ╚═════╝     ╚═╝    ╚═══════╝ ╚═╝   ╚═╝
                            https://www.jhipster.tech
Welcome to JHipster v8.6.0

Welcome to the JHipster Information Sub-Generator

gateway@0.0.1-SNAPSHOT /Users/christdoes/Documents/projects/apps/newsample/gateway └── generator-jhipster@8.6.0


##### **JHipster configuration, a `.yo-rc.json` file generated in the root folder**

<details>
<summary>.yo-rc.json file</summary>
<pre>
{
  "generator-jhipster": {
    "applicationIndex": 0,
    "applicationType": "gateway",
    "authenticationType": "oauth2",
    "baseName": "gateway",
    "buildTool": "maven",
    "cacheProvider": "hazelcast",
    "clientFramework": "angular",
    "clientPackageManager": "npm",
    "databaseType": "sql",
    "devDatabaseType": "h2Memory",
    "devServerPort": 4200,
    "enableHibernateCache": true,
    "enableSwaggerCodegen": true,
    "enableTranslation": true,
    "entities": [
      "QuoteRequest",
      "Quote"
    ],
    "jhipsterVersion": "8.6.0",
    "languages": [
      "en",
      "nl"
    ],
    "lastLiquibaseTimestamp": 1724423478000,
    "messageBroker": "kafka",
    "nativeLanguage": "en",
    "packageFolder": "com/christdoes/gateway",
    "packageName": "com.christdoes.gateway",
    "prodDatabaseType": "postgresql",
    "reactive": true,
    "searchEngine": "elasticsearch",
    "serverPort": "8080",
    "serviceDiscoveryType": "consul",
    "skipClient": false,
    "skipServer": false,
    "skipUserManagement": false,
    "testFrameworks": [
      "cucumber"
    ],
    "websocket": "no"
  }
}
</pre>
</details>

##### **Environment and Tools**

java version "22.0.1" 2024-04-16
Java(TM) SE Runtime Environment Oracle GraalVM 22.0.1+8.1 (build 22.0.1+8-jvmci-b01)
Java HotSpot(TM) 64-Bit Server VM Oracle GraalVM 22.0.1+8.1 (build 22.0.1+8-jvmci-b01, mixed mode, sharing)

git version 2.39.3 (Apple Git-146)

node: v20.16.0
npm: 10.8.1

Docker version 26.1.4, build 5650f9b

##### **JDL for the Entity configuration(s) `entityName.json` files generated in the `.jhipster` directory**

<details>
<summary>JDL entity definitions</summary>

<pre>
@ChangelogDate("20240823143018")
entity QuoteRequest {
  requesterName String required
  requesterEmail String required
  serviceType SpecializedServiceType required
  description String
  status String required
  createdDate ZonedDateTime required
  updatedDate ZonedDateTime
}
@ChangelogDate("20240823143118")
entity Quote {
  quoteNumber String required
  amount BigDecimal required
  currency String required
  validUntil ZonedDateTime required
  createdDate ZonedDateTime required
  status String required
  notaryFee BigDecimal required
  registrationCTR BigDecimal required
  statutoryContribution BigDecimal required
  administrativeCosts BigDecimal required
  identificationCosts BigDecimal required
  vat BigDecimal required
  totalAmount BigDecimal required
  lastUpdatedBy String
  updateTimestamp ZonedDateTime
}

enum SpecializedServiceType {
  INHERITANCE_DISPUTE,
  DIVORCE_OR_END_OF_RELATIONSHIP
}

dto QuoteRequest, Quote with mapstruct
paginate QuoteRequest, Quote with pagination
service QuoteRequest, Quote with serviceImpl

</pre>
</details>

Congratulations, JHipster execution is complete!
If you find JHipster useful consider sponsoring the project https://www.jhipster.tech/sponsors/

Thanks for using JHipster!
mshima commented 2 months ago

What about jhipster info in newsample folder?

ken4ward commented 2 months ago

@mshima this is the Jhipster info in the newsample directory

jhipster info

        ██╗ ██╗   ██╗ ████████╗ ███████╗   ██████╗ ████████╗ ████████╗ ███████╗
        ██║ ██║   ██║ ╚══██╔══╝ ██╔═══██╗ ██╔════╝ ╚══██╔══╝ ██╔═════╝ ██╔═══██╗
        ██║ ████████║    ██║    ███████╔╝ ╚█████╗     ██║    ██████╗   ███████╔╝
  ██╗   ██║ ██╔═══██║    ██║    ██╔════╝   ╚═══██╗    ██║    ██╔═══╝   ██╔══██║
  ╚██████╔╝ ██║   ██║ ████████╗ ██║       ██████╔╝    ██║    ████████╗ ██║  ╚██╗
   ╚═════╝  ╚═╝   ╚═╝ ╚═══════╝ ╚═╝       ╚═════╝     ╚═╝    ╚═══════╝ ╚═╝   ╚═╝
                            https://www.jhipster.tech
Welcome to JHipster v8.6.0

Welcome to the JHipster Information Sub-Generator

/Users/christdoes/Documents/projects/apps/newsample └── (empty)


##### **JHipster configuration, a `.yo-rc.json` file generated in the root folder**

<details>
<summary>.yo-rc.json file</summary>
<pre>
{
  "generator-jhipster": {
    "baseName": "workspaces",
    "directoryPath": "./",
    "jhipsterVersion": "8.6.0"
  }
}
</pre>
</details>

##### **Environment and Tools**

java version "22.0.1" 2024-04-16
Java(TM) SE Runtime Environment Oracle GraalVM 22.0.1+8.1 (build 22.0.1+8-jvmci-b01)
Java HotSpot(TM) 64-Bit Server VM Oracle GraalVM 22.0.1+8.1 (build 22.0.1+8-jvmci-b01, mixed mode, sharing)

git version 2.39.3 (Apple Git-146)

node: v20.16.0
npm: 10.8.1

Docker version 26.1.4, build 5650f9b

##### **JDL for the Entity configuration(s) `entityName.json` files generated in the `.jhipster` directory**

<details>
<summary>JDL entity definitions</summary>

<pre>

</pre>
</details>

Congratulations, JHipster execution is complete!
If you find JHipster useful consider sponsoring the project https://www.jhipster.tech/sponsors/

Thanks for using JHipster!
ken4ward commented 2 months ago

@mshima @jkutner @jdigger @gunnarahlberg please any help on this? Hoping to hear from you.

mshima commented 2 months ago

@ken4ward please remove .yo-rc.json from newsample folder and run jhipster info using v8.7.0

mraible commented 1 month ago

Added bug bounty to try and attract attention.