Spring Cloud Gateway And Spring Security Passing Authenticated Roles to Microservices









up vote
0
down vote

favorite












Let's assume that;



We have Spring Boot(2) services ;
Microservice A,
Microservice B,
Microservice C,



And we want to aggregate them with Spring Cloud Gateway and do token authentication if needed http paths to specific services.



Now assume we authenticated in api-gateway and then take roles etc. But I don't want to one by one permit specific http paths like /service-b/public-area with ServerHttpSecurity chaining.



Instead of this I want to use in microservice B with @PreAuthorize("hasRole(ROLE_USER)") annotation on my mapping methods.
So I can handle partial independence authorization in microservices. Because I need to work just on specific microservice when have any task.



But I couldn't any documentation about passing spring security roles in Spring Cloud Gateway docs.



Can anybody have any answer or experience and advices about this problem ?










share|improve this question





















  • I think that you should do a proxy pass in Gateway and on each microservice authenticate on authentication service, In order to authenticate you can verify which users are authorized.
    – Jonathan Johx
    Nov 11 at 20:04










  • @JonathanJohx That's not what I mean, I don't want to implement authentication in each microservice, instead of that I want to pass SecurityContext to microservices.
    – İlker Korkut
    Nov 12 at 8:04











  • then you need to create a security logic on gateway service before you pass to your microservices. you can take a look this link baeldung.com/spring-cloud-securing-services , let me know if this helps you to your question.
    – Jonathan Johx
    Nov 12 at 16:20














up vote
0
down vote

favorite












Let's assume that;



We have Spring Boot(2) services ;
Microservice A,
Microservice B,
Microservice C,



And we want to aggregate them with Spring Cloud Gateway and do token authentication if needed http paths to specific services.



Now assume we authenticated in api-gateway and then take roles etc. But I don't want to one by one permit specific http paths like /service-b/public-area with ServerHttpSecurity chaining.



Instead of this I want to use in microservice B with @PreAuthorize("hasRole(ROLE_USER)") annotation on my mapping methods.
So I can handle partial independence authorization in microservices. Because I need to work just on specific microservice when have any task.



But I couldn't any documentation about passing spring security roles in Spring Cloud Gateway docs.



Can anybody have any answer or experience and advices about this problem ?










share|improve this question





















  • I think that you should do a proxy pass in Gateway and on each microservice authenticate on authentication service, In order to authenticate you can verify which users are authorized.
    – Jonathan Johx
    Nov 11 at 20:04










  • @JonathanJohx That's not what I mean, I don't want to implement authentication in each microservice, instead of that I want to pass SecurityContext to microservices.
    – İlker Korkut
    Nov 12 at 8:04











  • then you need to create a security logic on gateway service before you pass to your microservices. you can take a look this link baeldung.com/spring-cloud-securing-services , let me know if this helps you to your question.
    – Jonathan Johx
    Nov 12 at 16:20












up vote
0
down vote

favorite









up vote
0
down vote

favorite











Let's assume that;



We have Spring Boot(2) services ;
Microservice A,
Microservice B,
Microservice C,



And we want to aggregate them with Spring Cloud Gateway and do token authentication if needed http paths to specific services.



Now assume we authenticated in api-gateway and then take roles etc. But I don't want to one by one permit specific http paths like /service-b/public-area with ServerHttpSecurity chaining.



Instead of this I want to use in microservice B with @PreAuthorize("hasRole(ROLE_USER)") annotation on my mapping methods.
So I can handle partial independence authorization in microservices. Because I need to work just on specific microservice when have any task.



But I couldn't any documentation about passing spring security roles in Spring Cloud Gateway docs.



Can anybody have any answer or experience and advices about this problem ?










share|improve this question













Let's assume that;



We have Spring Boot(2) services ;
Microservice A,
Microservice B,
Microservice C,



And we want to aggregate them with Spring Cloud Gateway and do token authentication if needed http paths to specific services.



Now assume we authenticated in api-gateway and then take roles etc. But I don't want to one by one permit specific http paths like /service-b/public-area with ServerHttpSecurity chaining.



Instead of this I want to use in microservice B with @PreAuthorize("hasRole(ROLE_USER)") annotation on my mapping methods.
So I can handle partial independence authorization in microservices. Because I need to work just on specific microservice when have any task.



But I couldn't any documentation about passing spring security roles in Spring Cloud Gateway docs.



Can anybody have any answer or experience and advices about this problem ?







java spring spring-boot spring-security spring-cloud-gateway






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 11 at 16:52









İlker Korkut

2,18132043




2,18132043











  • I think that you should do a proxy pass in Gateway and on each microservice authenticate on authentication service, In order to authenticate you can verify which users are authorized.
    – Jonathan Johx
    Nov 11 at 20:04










  • @JonathanJohx That's not what I mean, I don't want to implement authentication in each microservice, instead of that I want to pass SecurityContext to microservices.
    – İlker Korkut
    Nov 12 at 8:04











  • then you need to create a security logic on gateway service before you pass to your microservices. you can take a look this link baeldung.com/spring-cloud-securing-services , let me know if this helps you to your question.
    – Jonathan Johx
    Nov 12 at 16:20
















  • I think that you should do a proxy pass in Gateway and on each microservice authenticate on authentication service, In order to authenticate you can verify which users are authorized.
    – Jonathan Johx
    Nov 11 at 20:04










  • @JonathanJohx That's not what I mean, I don't want to implement authentication in each microservice, instead of that I want to pass SecurityContext to microservices.
    – İlker Korkut
    Nov 12 at 8:04











  • then you need to create a security logic on gateway service before you pass to your microservices. you can take a look this link baeldung.com/spring-cloud-securing-services , let me know if this helps you to your question.
    – Jonathan Johx
    Nov 12 at 16:20















I think that you should do a proxy pass in Gateway and on each microservice authenticate on authentication service, In order to authenticate you can verify which users are authorized.
– Jonathan Johx
Nov 11 at 20:04




I think that you should do a proxy pass in Gateway and on each microservice authenticate on authentication service, In order to authenticate you can verify which users are authorized.
– Jonathan Johx
Nov 11 at 20:04












@JonathanJohx That's not what I mean, I don't want to implement authentication in each microservice, instead of that I want to pass SecurityContext to microservices.
– İlker Korkut
Nov 12 at 8:04





@JonathanJohx That's not what I mean, I don't want to implement authentication in each microservice, instead of that I want to pass SecurityContext to microservices.
– İlker Korkut
Nov 12 at 8:04













then you need to create a security logic on gateway service before you pass to your microservices. you can take a look this link baeldung.com/spring-cloud-securing-services , let me know if this helps you to your question.
– Jonathan Johx
Nov 12 at 16:20




then you need to create a security logic on gateway service before you pass to your microservices. you can take a look this link baeldung.com/spring-cloud-securing-services , let me know if this helps you to your question.
– Jonathan Johx
Nov 12 at 16:20

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53250999%2fspring-cloud-gateway-and-spring-security-passing-authenticated-roles-to-microser%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53250999%2fspring-cloud-gateway-and-spring-security-passing-authenticated-roles-to-microser%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







這個網誌中的熱門文章

Barbados

How to read a connectionString WITH PROVIDER in .NET Core?

Node.js Script on GitHub Pages or Amazon S3