1 前言
本文是基于Creating Spring Boot and React Java Full Stack Application with Maven
https://www.springboottutorial.com/spring-boot-react-full-stack-crud-maven-application
并且进行了适当的修改,希望能够帮助新手。
我的环境:Ubuntu 18.04, java 11, IntelliJ IDEA
2 准备工作
2.1 下载初始Spring Boot 项目
- 打开 https://start.spring.io/,在dependencies那里注意添加Web, DevTools
- 点击 Generate Project下载.zip然后解压,使用IntelliJ 打开,等到它加载完毕
2.2 初始一个React项目
-
npx create-react-app demo
得到一个叫做demo的react的项目。
2.3 运行react项目
- 进入react文件夹
cd demo
yarn start
- 前往浏览器,在网址内输入
localhost:3000
看到如下