Spring Cloud Brixton.RELEASE zuul

I am new to spring cloud, in my project (microservice project with spring boot), I used spring cloud version of Brixton.RC2 and it worked fine. but when I try to upgrade its version to Brixton.RELEASE, the project does not work with zuul (if I connect directly to the web microservice, it works, but if I access via zuul it will not work), I did not change anything in the configuration. maven dependency:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-parent</artifactId>
            <version>1.3.5.RELEASE</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-parent</artifactId>
            <version>Brixton.RC2</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

can anyone point out what goes wrong with my project?

Thanks and best regards !!

+4
source share
1 answer

. Brixton.M4 Brixton.Release. , , uuath. zuul , . .. base64 clientId: clientSecret. - zuul, Spring Cloud Netflix 1.1. . https://github.com/spring-cloud/spring-cloud-netflix/blob/master/docs/src/main/asciidoc/spring-cloud-netflix.adoc#cookies-and-sensitive-headers.

zuul.routes.myroute.sensitiveHeaders = ''

application.yml application.properties, Headers .

+1

All Articles