我有一个简单的Spring应用程序(by compiling and decompiling it),需要jwt令牌。 当我在本地运行时,它可以按预期工作。 (我向jwt令牌传递了一个标头)
我使用插件在pom.xml(https://github.com/dhananjay12/spring-microservice-demo/tree/master/product-service)中创建图像
并使用-
构建图像MVN全新安装-Ddocker
但是当我用它创建一个映像然后运行容器(docker run -p“ 8090:8090” product-service)并尝试访问API时,它说
{ “ timestamp”:“ 2018-09-03T09:03:41.856 + 0000”, “状态”:401, “错误”:“未经授权”, “ message”:“未经授权”, “路径”:“ / hi” }
类似标题的标题不会传递给应用程序。有什么建议吗?