Git Product home page Git Product logo

Comments (2)

oskar-szwajkowski avatar oskar-szwajkowski commented on August 14, 2024

In the SecuredRestApplication.java file, you can see spring security chain configuration.

In this config you can see that both "/" and "/login" endpoints are behind AuthenticationWebFilter, which in this case has UserDetailsRepository inside containing single user, with password user.

After specifying those credentials in, for example curl request as -u parameter
( curl -u username:password -v http://example.com/login )

You should be able to see token coming back after succesful authentication.

Then to proceed with making request, copy this token into Authentication HTTP header, and use it for other endpoints, which will validate this token through JWTAuthorizationWebFilter.

from spring-webflux-security-jwt.

heesuk-ahn avatar heesuk-ahn commented on August 14, 2024

@dhavalmshah hello, I also saw this example code and implemented jwt extract.

If you are having difficulty, do you check my example?

https://github.com/heesuk-ahn/search-book-webflux/blob/master/backend/src/main/java/com/project/backend/user/controller/UserController.java

this code is jwt extract patial code example.

`
private final Mono context = ReactiveSecurityContextHolder.getContext();

private Mono extractUserSeqIdFromJwtToken(Mono context) {
return context.filter(c -> Objects.nonNull(c.getAuthentication()))
.map(s -> s.getAuthentication().getPrincipal())
.cast(Long.class);
}`

from spring-webflux-security-jwt.

Related Issues (9)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.