Giter VIP home page Giter VIP logo

boot-react's Introduction

Spring boot and react ultimate starter

Build Status

Be more productive than ever with this simple project that uses the spring dev tools and react transform for hot reloading.

Everything from backend to frontend will automatically hot reload.

See my article for an in-depth explanation.

This project also sets up spring security and spring-sessions, which will automatically store your sessions in Redis, allowing you to scale on multiple servers.

Both the frontend and the backend are fully tested.

Developing

The groovy code is available in the backend sub-project. The frontend sub-project contains the javascript code.

First, install the npm dependencies:

./gradlew frontend:npmInstall

If you want to start both the frontend and the backend, the simplest is to use the webpack profile with the flag --spring.profiles.active=webpack. This will automatically start the frontend dev-server along with the spring boot application.

You can also run the frontend dev server separately with ./gradlew frontend:start or with npm start.

In development you will have access to the awesome redux-dev-tools, which will allow you keep track of your application state and undo/redo every action at will.

Sessions

Sessions are stored in Redis with spring-sessions. Spring-sessions allows you to transparently persist the HttpSession on Redis. This allows to distribute the load on multiple servers if you choose to.

The application relies on a stateless REST api. When they authenticate, clients will be given a token. They will save this token in their local storage and send it as an HTTP header (x-auth-token). This allows the retrieval of the session data in Redis.

If you want to use a real redis, you can run the application with the redis profile.

If you want to simulate the retrieval of http sessions through headers, use the fake-redis profile. This will save the sessions in a simple map (useful in dev).

If you choose to run the application with neither of those profile, the application will fallback to classic http sessions.

Summary:

Profile description uses x-auth-token header?

<none>

Use classic HTTPSessions

No. You won’t be able to use the API with a REST client

redis

Use a real redis connecting on localhost by default.

Yes

fake-redis

Uses a map to store sessions

Yes

Security

The application is configured to work with Spring Security. It uses an in-memory authentication but you are free use other implementations or to roll your own.

Redux

This project uses Redux to handle state and actions. It is a simple library with very powerful dev tools.

I suggest you read the redux quick start to understand how to architecture you application and the difference between smart and dumb components.

Since the application is small, every component is connected to redux and can be considered a "smart component". Those are higher-order components, wrapped with the connect() method.

To be able to write tests on smart components, we need to work on the non-wrapped components. That is why we export both the connected component by default and the non-connected component.

In the application we can import the connected component with import Component from 'component'. In tests, we can import {Component} from 'component'.

Router push state

The project uses react-router to handle routes. You can choose several modes to handles the router history. By default, the project uses the browser history, which creates the nicest URLs (/login, /private, etc.).

In development you won’t see much complexity since we use a dev server that proxies requests to the index. However, this leads to additional complexity once the frontend is deployed inside the jar.

There is a whole class that you can remove if you choose to use memory history (no URL change) or hash history (/#/login, /#/private): SinglePageAppConfig

Running the tests

The check tasks will run the tests in both the frontend and the backend:

./gradlew check

You can run the backend/frontend tests only with:

./gradlew backend/frontend:test

To test the backend, we use a simple library that wraps spring mvc test. It results in a better api for writing spock tests. See the auth-spec for an example.

To test the frontend, we use legit-test a simple library that allows writing fluent tests for React components.

Shipping

This command will generate an optimized bundle and include it in the jar.

./gradlew clean assemble

You can then launch it with:

java -jar build/libs/boot-react-0.0.1-SNAPSHOT.jar

With spring boot 1.3, you can install the application as a linux service

NB: each application can be assembled with the assemble task so you can use frontend:assemble or backend:assemble. The backend task depends on the frontend task.

Docker

The project can create a docker container.

Just run:

./gradlew backend:buildDocker

And it will create a docker image named boot-react/boot-react.

> docker images
REPOSITORY                               TAG                 IMAGE ID            CREATED              VIRTUAL SIZE
boot-react/boot-react                    latest              5280d39f660f        About a minute ago   138.9 MB

You can then run it with:

docker run -p 8080:8080 boot-react/boot-react

You can also pass arguments to the application like this:

docker run -p 8080:8080 boot-react/boot-react --spring.profiles.active=redis --spring.redis.host=redis

Docker-compose

There is a simple docker-compose.yml in the root directory of the project. Once you have built the application image with ./gradlew backend:buildDocker, you can run:

docker-compose up -d

This will run the application together with a redis server.

boot-react's People

Contributors

geowarin avatar cedbossneo avatar

Watchers

James Cloos avatar  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.