Skip to content

An example project demonstrating how React can be embedded in Spring Boot using Vite

Notifications You must be signed in to change notification settings

seanpolid/spring-react-vite-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Overview

This project will demonstrate how we can combine React with Spring Boot. To accomplish this, we will use Node.js, npm, Vite, and Maven. The advantages of this approach are:

  • We can write our React-based frontend as JSX files without having to manually compile them into JavaScript
  • Our compiled JavaScript will automatically be placed into our src/main/resources/static folder
  • We can take advantage of Spring Boot's hot reload feature (with one caveat)
  • Our backend and frontend can operate on the same port (so we don't have to label our REST controller with @CrossOrigin; If you want to be able to use the Vite dev server, use the annotation @CrossOrigin(origins={"http://localhost:5173"}) above the necessary controllers)

Although the current project works as is, the following instructions will show how we can create it from scratch (I will assume that you have Node.js installed locally on your machine).

Instructions

1. Create a Spring Starter Project. We will only need Spring Web and Spring Boot DevTools as dependencies.

spring dependencies

  1. Either create a controller or configure the class entry point so your endpoint (i'm using '/') returns "index.html" (we state the file type since we're serving static content).

controller

  1. Open up the terminal in your IDE or on your computer and navigate to the project so you're at the root level.

root directory

  1. Run the npm commands below in the given order:
npm create vite@latest frontend -- --template react
cd frontend
npm install

npm commands

  1. Open the vite.config.js file in the frontend folder and specify the outDir so it points to our static resources folder:

vite config

  1. Open the package.json file in the frontend folder and add the 'watch' script (this will automatically compile our jsx on each new save):

package.json

  1. While you're in the frontend folder (terminal), run the following command:
npm run watch
  1. Edit the App.jsx file in the frontend/src folder and save.

  2. Refresh your project and look in src/main/resources/static. You should see an index.html file and an assets folder (confirming that vite is now tracking our changes).

Pre App.jsx edit:

static folder before

Post App.jsx edit:

static folder after

  1. Run the whole project as a Spring Boot Application. Using your preferred browser, navigate to the path indicated by your controller (for me it's http:localhost:8080/). You should see the following:

react display

** If you don't see it, make sure to refresh your project.

  1. Create a simple REST controller that returns "Hello world!" from the endpoint '/api/hello'

rest controller

  1. In the App component, create a new state to track our "Hello world!". Additionally, create a hook that fetches data from our endpoint:

rest controller

  1. Place the 'hello' variable into the App's JSX:

App's JSX

  1. Refresh the project and check your browser. It should look like the following:

hello world!

  1. To deploy the application, right click on your project (if using Eclipse; may be different for other IDEs) and click 'Run as' then 'Maven Build...'.

  2. Specify 'package' as a goal and click run. Check the 'target/' folder in your project to confirm you see a file called 'spring-react-vite-template-0.0.1-SNAPSHOT.jar'.

Maven build

target folder

  1. Make sure that the Spring Boot server from before isn't still running. If it isn't, then navigate to the target folder using the terminal and run the following command:
java -jar spring-react-vite-template-0.0.1-SNAPSHOT.jar

java jar deploy

If you go into a browser and check the same path from before, you should see our React app.

Important Notes

As mentioned above, there is one caveat to this approach. You may have noticed this already, but to see the changes you've made to the frontend, you need to refresh the whole project each time. The reason for this is because Vite creates new files on each build. If it were only modifying them, then a refresh would not be necessary (since Spring Boot's hot reload would make the necessary adjustments).
Also, prior to going with this approach, I did try to use the frontend-maven-plugin instead of a locally installed version of Node.js. I was able to adjust the plugin executions so I could run the necessary npm commands, but I kept running into build issues. Since the script 'Vite build --watch --emptyOutDir' runs indefinitely, whenever Maven would automatically build the project (thus executing the script) it would get stuck. This became too problematic since I would have to forcefully close the IDE each time.

About

An example project demonstrating how React can be embedded in Spring Boot using Vite

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published