Skip to content
This repository was archived by the owner on Apr 15, 2025. It is now read-only.

Latest commit

 

History

History
14 lines (12 loc) · 601 Bytes

File metadata and controls

14 lines (12 loc) · 601 Bytes

spring-react-postgreSQL example

Current project is example of using Spring + JPA + PostgreSQL for backend and react + redux for frontend parts.

For run project

  • install maven
  • install postgreSQ, run it and create database
  • add to src/main/resources file "application.properties" with your db config (like:
    spring.datasource.url=jdbc:postgresql://localhost:5432/{database}
    spring.datasource.username={bd userneme}
    spring.datasource.password={bd passwo}
    spring.jpa.generate-ddl=true
    )
  • run mvn install && mvn spring-boot:run