Skip to content

nandiniverma08/MatchHubProject

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Getting Started

Clone https://github.com/nandiniverma08/MatchHubProject.git

Install Dependencies

  1. Mysql-connector

  2. Data-JPA

  3. spring-web

    https://maven.apache.org/

Database configurations in Applications.properties file /com/resources/application.properties

spring.datasource.url=jdbc:mysql://localhost:3306/your_database
spring.datasource.username=your_username
spring.datasource.password=your_password
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

Run Application /com/main/springbootapplication

public class YourSpringBootApplication {

   public static void main(String[] args) {
       SpringApplication.run(YourSpringBootApplication.class, args);
   }
}

Install Database MacOS

brew services start mysql

Linux

sudo apt install mysql-server
sudo systemctl start mysql
sudo systemctl enable mysql

Important : Carefully Connect the Database created in mysql with the name given in application.properties file.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published