diff --git a/application.properties b/application.properties index 7cb0131..1dd7a67 100644 --- a/application.properties +++ b/application.properties @@ -6,7 +6,6 @@ events.name=events teams.name=teams # DB Properties -spring.datasource.url = jdbc:mysql://localhost:3306/users spring.datasource.username = root spring.datasource.password = root spring.jpa.generate-ddl=true \ No newline at end of file diff --git a/events.properties b/events.properties index 7d9ba79..99bc695 100644 --- a/events.properties +++ b/events.properties @@ -1,2 +1,3 @@ spring.application.name=events -server.port=9020 \ No newline at end of file +server.port=9020 +spring.datasource.url = jdbc:mysql://localhost:3306/events diff --git a/teams.properties b/teams.properties index 435d545..a73137b 100644 --- a/teams.properties +++ b/teams.properties @@ -1,2 +1,3 @@ spring.application.name=teams -server.port=9010 \ No newline at end of file +server.port=9010 +spring.datasource.url = jdbc:mysql://localhost:3306/teams diff --git a/users.properties b/users.properties index 9fe63cf..7bedb06 100644 --- a/users.properties +++ b/users.properties @@ -1,2 +1,3 @@ spring.application.name=users -server.port=8090 \ No newline at end of file +server.port=8090 +spring.datasource.url = jdbc:mysql://localhost:3306/users