Giter Site home page Giter Site logo

ganforninag / generator-spring-rest-jwt Goto Github PK

View Code? Open in Web Editor NEW

This project forked from jlmonteagudo/generator-spring-rest-jwt

0.0 0.0 0.0 31 KB

Creates the skeleton of an API REST developed with Spring Boot, that uses JWT to protect the API

License: MIT License

JavaScript 24.11% Java 75.89%

generator-spring-rest-jwt's Introduction

generator-spring-rest-jwt

Creates the skeleton of an API REST developed with Spring Boot, that uses JWT to protect the API

Note: I have created this generator based on this demo (https://github.com/szerhusenBC/jwt-spring-security-demo) of Stephan Zerhusen. Thanks Stephan.

Installation

First, install Yeoman and generator-spring-rest-jwt using npm (we assume you have pre-installed node.js).

npm install -g yo
npm install -g generator-spring-rest-jwt

Then generate your new project:

yo spring-rest-jwt

Video Tutorial (Spanish)

Spring REST JWT

Usage

Once you have created your project you can get an access token for the following accounts:

Admin - admin:admin
User - user:password
Disabled - disabled:password (this user is disabled)

There are three endpoints that creates this generator:

/auth - authentication endpoint with unrestricted access
/user - shows logged in user information
/admin - an example endpoint that is restricted to authorized users with the role 'ROLE_ADMIN' (a valid JWT token must be present in the request header)

If you want to get a token for admin, you have to send a POST request to the endpoint /auth with the following JSON in the body request:

{
    "username": "admin",
    "password": "admin"
}

Then you will get a token and you can use it passing it in your requests header:

Authorization: eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJ1c2VyIiwiYXVkaWVuY2UiOiJ3ZWIiLCJjcmVhdGVkIjoxNDg0OTE4NjA2ODMwLCJleHAiOjE0ODU1MjM0MDZ9.ghLIqZM0wgWmL_a6_OGYjuwtaDUDbQaBFGndkfy2DNwDgu05vuoW_d6aS9iCNsi6Ajxjr8rOEYlV7QFALA9seQ

Creating new endpoints

If you want to create new endpoints then you can run the following command inside the project folder:

yo spring-rest-jwt:resource

This will generate a basic Entity, a JPA Repository and a REST Controller with CRUD operations.

Note: Currently, the code that is being generated is very basic and must be improved. For example, the generator is not handling exceptions, is not returning proper request codes, etc. It is very easy to improve it. You can fork this generator an adapat it to your needs, or you can send a pull request if you want.

License

MIT © Jose Luis Monteagudo

generator-spring-rest-jwt's People

Contributors

jlmonteagudo avatar

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.