Young Jun Park (박영준)
Java back-end developer
2019.06.12
박영준
PEP : Policy Enforcement Point
인증 : 사용자가 실제 유요한 사용자가 맞는지 확인하는 절차
인가 : 클라이언트가 하려는 작업이 허가된 작업인지를 확인(권한부여)
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-zuul</artifactId>
</dependency>
compile group: 'org.springframework.cloud', name: 'spring-cloud-starter-netflix-zuul', version: '2.1.1.RELEASE'
eureka:
instance:
preferIpAddress: true
client:
registerWithEureka: true
fetchRegistry: true
serviceUrl:
defaultZone: http://localhost:8761/eureka/
zuul:
ignored-service: 'organizationservice'
prefix: /api
routes:
organizationservice: /organization/**
zuul:
routes:
licensestatic:
path: /licensestatic/**
url: http://licenseservice-static:8081
By Young Jun Park (박영준)
스프링 클라우드와 넷플릭스 주울(zuul)에 대한 설명