Git Product home page Git Product logo

react-springboot's Introduction

React-SpringBoot

简体中文

FOSSA Status

Star History

Star History Chart

Desktop display

Desktop

Recently, I improved the performance from 50 to 90.

Page Test Insights

Mobile display

Mobile

Git clone repo

Back-end project: React-SpringBoot Front-end project: movie-helper-front

# cd React-SpringBoot/
git clone https://github.com/zzh1991/movie-helper-front.git

🚀 Usage

Support Java 17 and Spring Boot 3

# add VM options
--add-opens java.base/java.lang.invoke=ALL-UNNAMED

Start application

configure database

configure your database name (an empty database), user, password in src/main/resources/application.yml

You could use PostgreSQL(default configuration) or MySQL. Also, you could use H2 database.

MySQL configuration
spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://localhost:3306/movie?allowPublicKeyRetrieval=true&useConfigs=maxPerformance&useSSL=false&serverTimezone=UTC&characterEncoding=utf8
    password: mysql
    username: root
    initialization-mode: never

  flyway:
    enabled: true
    baseline-on-migrate: true
    validate-on-migrate: false
    locations: classpath:db/migration/mysql

remove postgres dependency and add mysql dependency in pom.xml

<!-- remove -->
<dependency>
    <groupId>org.postgresql</groupId>
    <artifactId>postgresql</artifactId>
</dependency>

<!-- add -->
<dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
</dependency>

Configure Front

  • cd movie-helper-front
  • npm install: install dependency
  • prepare front static files
    • dev mode
      • npm run dev
    • Deploy mode
      • npm run deploy
  • start the web app in IDE
  • open browser

Update front end

cd movie-helper-front
git fetch origin master
git rebase origin/master

Java doc

mvn javadoc:javadoc

open target/site/apidocs/index.html by browser

Reference

Todo

Improvement

  • sync recent / top movies
  • latest sync time
  • search by movie name
  • database upgrade
  • schedule task
  • java doc
  • lazy load
  • use timestamp with time zone

Dependency

Backend

  • Spring Boot 3
  • PostgresQL
  • Guava
  • Swagger
  • Flyway
  • Prometheus
  • GraphQL
  • Mybatis
  • Mybatis-plus

Endpoints

Swagger UI

Monitoring Endpoint

GraphiQL Endpoint

Configuration

Hot deploy for Intellij IDEA

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
    <optional>true</optional>
</dependency>
  • setting -> compiler -> make project automatically
  • ctrl + shift + a -> registry -> auto make enabled

Active dev profile

  1. edit run/debug configuration
  2. add environment variables: spring.profiles.active=dev

Dependency Version Management

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>versions-maven-plugin</artifactId>
</plugin>

Display update

mvn versions:display-dependency-updates

Update dependency

mvn versions:use-next-releases

mvn versions:use-latest-releases

Problems

Migrate flyway 3.x to 5.x issue

firstly should migrate to 4.2.0 and then 5.x

H2 database conflict with druid?

Mybatis timestamptz could not convert to timestamp?

Refer to mybatis/mybatis-3#1644

  1. copy LocalDateTimeTypeHandler.java into project
  2. configure LocalDateTimeTypeHandler bean

Author

👤 Zhihao Zhang

Show your support

Please ⭐️ this repository if this project helped you!

📝 License

Copyright © 2023 zzh1991.
This project is MIT licensed.

react-springboot's People

Contributors

dependabot-preview[bot] avatar dependabot[bot] avatar fossabot avatar snyk-bot avatar zzh1991 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.