README.md

    Spring Boot and ReactJS integration

    Based on the idea from this tutorial

    The integration is provided by using frontend-maven-plugin and maven-resources-plugin which job is managed by relevant profiles.

    Getting started

    After cloning, run this command in the /frontend directory:

    npm i

    and after that run this maven command in the project directory to perform clean installation:

    mvn clean install

    Running in the dev environment

    To start the server, run

    mvn spring-boot:run

    To start the React dev server, run this in the /frontend directory:

    npm start

    The backend runs on localhost:9999 and the React dev server runs on localhost:3000.

    Running in the prod environment

    Run mvn clean install -Pprod to build the production version. Then:

    cd /target
    java -jar demo-0.0.1-SNAPSHOT.jar
    

    Or, alternatively, you can just run

    mvn clean install -Pprod

    The production version of the app runs on localhost:9999.

    How to proxy frontend requests

    The following line in the package.json file defines a proxy to redirect requests from the react development server running on localhost:3000 to the backend server running on localhost:9999:

    "proxy": "http://localhost:9999"
    

    If webpack dependency is installed, the proxy must be defined in the webpack.config.js file instead:

    module.exports = {
      ...
      devServer: {
        port: 3000,
        hot: true,
        open: true,
        proxy: {
          "/api": {
            target: "http://localhost:3000",
            router: () => "http://localhost:9999",
          },
        },
      },
      ...
    
    Описание

    Демо проект с настройкой интеграции Spring Boot бэкенда и ReactJS фронтенда в среде разработки и в промышленной среде

    Конвейеры
    0 успешных
    0 с ошибкой