我有 2 个微服务(spring boot 应用程序)在不同的 docker 容器中运行并配置了 zuul api 网关。路由到其他容器不起作用。容器 1 在 8030 端口运行,容器 2 在 8030 端口运行。
下面是application.yml中的zuul配置——
server:
port: 8030
# TODO: figure out why I need this here and in bootstrap.yml
spring:
application:
name: zuul server
endpoints:
restart:
enabled: true
shutdown:
enabled: true
health:
sensitive: false
zuul:
routes:
zuultest:
url: http://localhost:8080
stripPrefix: false
ribbon:
eureka:
enabled: false
当通过 localhost:8030/zuulttest/test 访问时,我得到的异常是 -
2016-09-19 09:10:14.597 INFO 1 --- [nio-8030-exec-3] hello.SimpleFilter : GET request to http://localhost:8030/zuultest/test
2016-09-19 09:10:14.600 WARN 1 --- [nio-8030-exec-3] o.s.c.n.z.filters.post.SendErrorFilter : Error during filtering
我能知道我为什么会得到这个吗?