Skip to content

Latest commit

 

History

History
17 lines (16 loc) · 1.02 KB

note.md

File metadata and controls

17 lines (16 loc) · 1.02 KB

why spring boot

microservices architecture
spring boot web application includes:
refer to spring boot feature

  • It's built on top of the Spring Framework and simplifies its setup and usage.
  • It provides a simpler approach to start Spring projects by auto-configuring the setup based on the included dependencies.
  • It comes with embedded servers like Tomcat, Jetty, or Undertow, so you don't need to deploy your applications onto separate servers.
  • It provides production-ready features like health checks, metrics, etc., through Spring Boot Actuator.

React issue

npm create vite@latest your-app -- --template react-ts
cd your-app
npm install
npm run dev