https://github.com/fo0/spring-eureka-example-2022
https://github.com/fo0/spring-eureka-example-2022
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/fo0/spring-eureka-example-2022
- Owner: fo0
- Created: 2022-01-17T00:14:14.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-01-17T19:01:41.000Z (over 4 years ago)
- Last Synced: 2025-02-08T01:35:10.656Z (over 1 year ago)
- Language: Java
- Size: 59.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Getting Started
# test
1. starting infra
2. starting service
3. calling browser reactive: http://localhost:8456/test-call
4. calling browser non-reactive: http://localhost:8456/test-call-2
# infra
using standard eureka with properties
```yaml
server:
port: 8761
spring:
application:
name: eureka-service
eureka:
client:
registerWithEureka: false
fetchRegistry: false
service-url:
defaultZone: http://localhost:8761/eureka
instance:
prefer-ip-address: true
```