Skip to content

Commit 904c456

Browse files
committed
Sockets Handlers
1 parent 9a65e91 commit 904c456

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

Vote/src/main/resources/application.properties

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
spring.application.name=vote-app
2-
spring.datasource.url=jdbc:postgresql://localhost:5432/votingsystem
3-
spring.datasource.username=postgres
4-
spring.datasource.password=aciga200
2+
spring.datasource.url=${DB_URL}
3+
spring.datasource.username=${DB_USER_NAME}
4+
spring.datasource.password=${DB_PASSWORD}
55

66
spring.jpa.hibernate.ddl-auto=update
77
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
8+
spring.jpa.show-sql=true
89

910

1011
#spring.jpa.defer-datasource-initialization=true
Binary file not shown.

Vote/target/generated-sources/annotations/com/websocket/voteApp/Vote/Mappers/CandidateMapperImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
@Generated(
1010
value = "org.mapstruct.ap.MappingProcessor",
11-
date = "2024-08-18T16:38:37-0600",
11+
date = "2024-08-18T16:56:11-0600",
1212
comments = "version: 1.5.0.Final, compiler: javac, environment: Java 22.0.1 (Oracle Corporation)"
1313
)
1414
@Component

Vote/target/generated-sources/annotations/com/websocket/voteApp/Vote/Mappers/PollMapperImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
@Generated(
1414
value = "org.mapstruct.ap.MappingProcessor",
15-
date = "2024-08-18T16:38:37-0600",
15+
date = "2024-08-18T16:56:11-0600",
1616
comments = "version: 1.5.0.Final, compiler: javac, environment: Java 22.0.1 (Oracle Corporation)"
1717
)
1818
@Component

Vote/target/generated-sources/annotations/com/websocket/voteApp/Vote/Mappers/VoteMapperImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
@Generated(
1111
value = "org.mapstruct.ap.MappingProcessor",
12-
date = "2024-08-18T16:38:36-0600",
12+
date = "2024-08-18T16:56:11-0600",
1313
comments = "version: 1.5.0.Final, compiler: javac, environment: Java 22.0.1 (Oracle Corporation)"
1414
)
1515
@Component

0 commit comments

Comments
 (0)