Quick Demo
Live Demo
🚀 Try it online: https://demo-bs.zhxu.cn/ — no deployment needed!
Local Demo
Want to run it locally? Just three steps:
Step 1: Clone
bash
git clone https://gitee.com/troyzhxu/bean-searcher.gitbash
git clone https://github.com/troyzhxu/bean-searcher.gitStep 2: Start a Backend (choose one)
bash
# JDK 21+
cd bean-searcher/bean-searcher-demos/backend-springboot4
./gradlew bootRunbash
# JDK 17+
cd bean-searcher/bean-searcher-demos/backend-springboot3
./gradlew bootRunbash
# JDK 8+
cd bean-searcher/bean-searcher-demos/backend-springboot2
mvn spring-boot:runbash
# JDK 17+
cd bean-searcher/bean-searcher-demos/backend-solon4
# Open and run with IDEAbash
# JDK 8+
cd bean-searcher/bean-searcher-demos/backend-solon3
# Open and run with IDEAStep 3: Start Frontend & See Result
bash
cd bean-searcher/bean-searcher-demos/frontend-vue
npm install && npm run devOpen http://localhost:7300 to view the demo.
This demo follows a frontend-backend separated architecture: one unified frontend + multiple backend services with fully consistent APIs. All backends use H2 in-memory database, zero configuration required.
