Могу ли я добавить реестр в приложение Gateway Jhipster?

Могу ли я добавить поддержку реестра в приложение шлюза, созданное без реестра? У меня есть приложение-шлюз, когда я создал это приложение, я не выбираю реестр jhipster. Это возможно? Или мне нужно добавить построчную конфигурацию eureka?

eureka:
    client:
        enabled: true
        healthcheck:
            enabled: true
        fetch-registry: true
        register-with-eureka: true
        instance-info-replication-interval-seconds: 10
        registry-fetch-interval-seconds: 10
    instance:
        appname: cadgateway
        instanceId: cadgateway:${spring.application.instance-id:${random.value}}
        lease-renewal-interval-in-seconds: 5
        lease-expiration-duration-in-seconds: 10
        status-page-url-path: ${management.context-path}/info
        health-check-url-path: ${management.context-path}/health
        metadata-map:
            zone: primary # This is needed for the load balancer
            profile: ${spring.profiles.active}
            version: ${info.project.version}

1 ответ

Решение

Отредактируйте свой .yo-rc.json подать и изменить строку "serviceDiscoveryType": false, в "serviceDiscoveryType": "eureka", затем заново сгенерируйте ваше приложение с jhipster app --with-entities и объедините с git те настройки, которые вы, возможно, сделали.

Другие вопросы по тегам