From 894685360484b44b2601b11426561a1042df5641 Mon Sep 17 00:00:00 2001 From: Simon Date: Sun, 13 Dec 2020 17:09:08 +0100 Subject: [PATCH 01/35] Css changes to start site --- logs/Voting.log | 4 ++++ src/main/resources/static/styles/start.css | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/logs/Voting.log b/logs/Voting.log index be743f7..a86644c 100644 --- a/logs/Voting.log +++ b/logs/Voting.log @@ -3769,3 +3769,7 @@ java.lang.NullPointerException: null 2020-12-10 23:50:09,131 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' 2020-12-10 23:50:09,137 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... 2020-12-10 23:50:09,152 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-12 00:17:46,630 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-12 00:17:46,632 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-12 00:17:46,633 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown initiated... +2020-12-12 00:17:46,655 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown completed. diff --git a/src/main/resources/static/styles/start.css b/src/main/resources/static/styles/start.css index 7831a91..2584a79 100644 --- a/src/main/resources/static/styles/start.css +++ b/src/main/resources/static/styles/start.css @@ -17,10 +17,10 @@ div.userLogin { input.email_input { background-color: transparent; border: transparent; - border-bottom: 2px solid red; + border-bottom: 2px solid greenyellow; color: #FFF; font-size: xx-large; - width: fit-content; + width: 100%; } input.password_input { From 3b0d0ec98226f5e5ce58d43307858db883d9b436 Mon Sep 17 00:00:00 2001 From: Simon Date: Sun, 13 Dec 2020 17:20:42 +0100 Subject: [PATCH 02/35] Fixed email input bug --- src/main/resources/static/styles/start.css | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/main/resources/static/styles/start.css b/src/main/resources/static/styles/start.css index 2584a79..a550712 100644 --- a/src/main/resources/static/styles/start.css +++ b/src/main/resources/static/styles/start.css @@ -20,7 +20,7 @@ input.email_input { border-bottom: 2px solid greenyellow; color: #FFF; font-size: xx-large; - width: 100%; + width: fit-content; } input.password_input { @@ -50,10 +50,4 @@ label { border-radius: 12px; box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.25); text-shadow: 0 -2px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.2); -} - -@media only screen and (max-device-width: 1024px) { - input.email_input { - font-size: large; - } } \ No newline at end of file From 6d83a513f1a542d066db67ac15dd0809175866df Mon Sep 17 00:00:00 2001 From: Simon Date: Sun, 13 Dec 2020 17:25:27 +0100 Subject: [PATCH 03/35] Make input field static --- src/main/resources/static/styles/start.css | 44 +++++++++++----------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/src/main/resources/static/styles/start.css b/src/main/resources/static/styles/start.css index a550712..203e8a7 100644 --- a/src/main/resources/static/styles/start.css +++ b/src/main/resources/static/styles/start.css @@ -14,28 +14,6 @@ div.userLogin { transform: translate(-50%, -50%); } -input.email_input { - background-color: transparent; - border: transparent; - border-bottom: 2px solid greenyellow; - color: #FFF; - font-size: xx-large; - width: fit-content; -} - -input.password_input { - background-color: transparent; - border: transparent; - color: #FFF; - font-size: medium; - width: fit-content; -} - -label { - color: #FFF; - display: block; -} - #signup_button { display: block; margin: auto; @@ -50,4 +28,26 @@ label { border-radius: 12px; box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.25); text-shadow: 0 -2px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.2); +} + +input.email_input { + background-color: transparent; + border: transparent; + border-bottom: 2px solid greenyellow; + color: #FFF; + font-size: xx-large; + width: 500px; +} + +input.password_input { + background-color: transparent; + border: transparent; + color: #FFF; + font-size: medium; + width: fit-content; +} + +label { + color: #FFF; + display: block; } \ No newline at end of file From a37a1e1a91bfaf3d8584cccab3361ca088c8ae44 Mon Sep 17 00:00:00 2001 From: Simon Date: Sun, 13 Dec 2020 21:29:33 +0100 Subject: [PATCH 04/35] Changed categories --- .../controller/VotingController.java | 6 +- src/main/resources/Categories.txt | 68 ++++++++++++++++--- 2 files changed, 65 insertions(+), 9 deletions(-) diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java index a24e857..7dc6779 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java @@ -27,8 +27,10 @@ public class VotingController { @Value("motto") String motto; + @Value("adding") String adding; + @Value("voting") String voting; @@ -64,7 +66,9 @@ public class VotingController { @PostConstruct public void init() { if (motto != null){ - mottoPhase = true; + mottoPhase = false; + addingPhase = true; + votingPhase = false; } else if (adding != null){ addingPhase = true; } else if (voting != null){ diff --git a/src/main/resources/Categories.txt b/src/main/resources/Categories.txt index 143e51d..3bef5c5 100644 --- a/src/main/resources/Categories.txt +++ b/src/main/resources/Categories.txt @@ -16,21 +16,73 @@ Wer saß am längsten im Klassenschrank? (Schüler) Wer hat die gößte Sauklaue? (Leherer) Wer gründet das nächste Google? (Schüler) Wer kommt am schnellsten in den Knast? (Schüler) -Top 3-Pärchen? (Schüler) -Top 3 Lehrergespanne? (Schüler) +Bestes Pärchen? (Schüler) +Bestes Lehrergespann? Wer ist der motiviertester Lehrer? -Wer ist Google auf zwei Beinen(Schüler)? +Wer ist Google auf zwei Beinen? (Schüler) Wer hat den besten Style (Schüler)? Wer hat den besten Style (Lehrer)? Wer währe ein gutes Pärchen (Lehrer)? -Wer trinkt am meisten Kaffe (Schüler)? -Wer trinkt am meisten Kaffe (Lehrer)? -Tischflip? +(delete) Wer trinkt am meisten Kaffe (Schüler)? +(delete) Wer trinkt am meisten Kaffe (Lehrer)? +Tischflip Wer wird Harzer? Wer hat Wiedererkennungswert (Schüler)? Wen erkennt man an der Lache (Schüler)? Wer bringt die dümmsten Witze? (Lehrer) Wer hat den meisten Schwachsinn erzählt? (Lehrer) Welche Lehrer machen nie das, was die Schüler wollten? (Lehrer) -Wer isst immer? (Lehrer) -Wer hat die meisten peinlichen Momente gebracht? \ No newline at end of file +Wer isst immer? (Schüler) +Wer hat die meisten peinlichen Momente gebracht? + +Vorschläge der Stufe: +Toxic +Unvergesslich +Größter Klugscheißer +Braucht eine neue Leber +Future Celebrity +Pornhub als Abendbeschäftigung (Sehr gut :joy:) +Größte/r Schnorrer/in +Hat gefühlt die meisten Fehlstunden +Beste/r Schwiegersohn/-tochter +Fitnesskanone +Größte Diva +Beautyguru +Der Stufenclown +Größter Tollpatsch +Weltherrschaft 2040 +Größte Schlafmütze +Heiratet bald +Größte Labertasche +Sonnenschein +Kleinster Aufwand, größter Erfolg +Stufenmama/-papa +Ehre wem Ehre gebürt - Der/Die Netteste +Ziemlich beste Freunde +Am faulsten +Immer zu spät +Am ehrgeizigsten +Schwärzeste Lunge +Nobelpreisträger +Lehrers Liebling +For Kanzleramt +Wird als erstes Mutter/Vater +Sieht aus wie in der fünften Klasse +Als erstes im Gefängnis +Größte/r Schleimer/in +Hat sich durchgemogelt +Scheitert bei Jauch an der 100€ Frage +Checkt den Witz als letztes +Größter Bonze +Wohnt mit 40 noch bei Mutti +Verdient später am meisten +Lehrerschreck +Größte Veränderung +Augenschmaus (W) +Augenschmaus (M) +Lästermaul +Hat nie Hausaufgaben +Ist wirklich intelligent +Notenwürfler +Macht alles außer Unterricht +Übermotiviert \ No newline at end of file From 80b20f2098c713944ad15b23498169183c886fe6 Mon Sep 17 00:00:00 2001 From: Simon Date: Wed, 16 Dec 2020 20:03:14 +0100 Subject: [PATCH 05/35] Test --- src/main/resources/Categories.txt | 88 +++++-------------- .../styles/alreadysubmittedcandidates.css | 65 ++++++++++++++ src/main/resources/static/styles/start.css | 2 +- .../errors/alreadysubmittedcandidates.html | 10 ++- src/main/resources/templates/test.html | 66 -------------- 5 files changed, 94 insertions(+), 137 deletions(-) create mode 100644 src/main/resources/static/styles/alreadysubmittedcandidates.css delete mode 100644 src/main/resources/templates/test.html diff --git a/src/main/resources/Categories.txt b/src/main/resources/Categories.txt index 3bef5c5..676c71e 100644 --- a/src/main/resources/Categories.txt +++ b/src/main/resources/Categories.txt @@ -1,88 +1,42 @@ -Wer wird nie von zuhause ausziehen? -Wer ist der/die kreativste Zuspätkommer/in? -Mit wem wird man am ehesten in der Zukunft angeben zur Schule gegangen zu sein? -Wer wohnt im Fittnessstudio? (Schüler) -Wer ist der coolste Leherer? -Wer ist die coolste Lehrerin? -Wer macht den besten Matheunterricht? -Welcher Lehrer hat den Beruf verfehlt? -Welcher Lehrer ist nie da? -Wer hat das Internet erfunden? -Wer sponsort Schollin? (Schüler) -Wer ist am engagiertesten? (Schüler) -Wer wird Bundeskanzler? (Schüler) -Wer hat das Kimpeltum gegründet? (Schüler) -Wer saß am längsten im Klassenschrank? (Schüler) -Wer hat die gößte Sauklaue? (Leherer) -Wer gründet das nächste Google? (Schüler) -Wer kommt am schnellsten in den Knast? (Schüler) -Bestes Pärchen? (Schüler) -Bestes Lehrergespann? -Wer ist der motiviertester Lehrer? -Wer ist Google auf zwei Beinen? (Schüler) -Wer hat den besten Style (Schüler)? -Wer hat den besten Style (Lehrer)? -Wer währe ein gutes Pärchen (Lehrer)? -(delete) Wer trinkt am meisten Kaffe (Schüler)? -(delete) Wer trinkt am meisten Kaffe (Lehrer)? -Tischflip -Wer wird Harzer? -Wer hat Wiedererkennungswert (Schüler)? -Wen erkennt man an der Lache (Schüler)? -Wer bringt die dümmsten Witze? (Lehrer) -Wer hat den meisten Schwachsinn erzählt? (Lehrer) -Welche Lehrer machen nie das, was die Schüler wollten? (Lehrer) -Wer isst immer? (Schüler) -Wer hat die meisten peinlichen Momente gebracht? - -Vorschläge der Stufe: -Toxic -Unvergesslich +Nesthocker +Beste Ausreden +Mathegötter (erklärend) +Falscher Beruf +Verfressenste +Ehre wem Ehre gebührt - Die Engagiertesten +Verhandlungskünstler +Stufenclown +Größte Sauklaue (Lehrer) +Knacki +Traumpaar (Schüler) +Lehrerbuddies +Lebt den Beruf +Lexikon (Schüler) +Harzer +Unvergesslich (Schüler) +Unvergesslich (Lehrer) +Schülerschreck Größter Klugscheißer -Braucht eine neue Leber Future Celebrity -Pornhub als Abendbeschäftigung (Sehr gut :joy:) +Pornhub als Abendbeschäftigung Größte/r Schnorrer/in Hat gefühlt die meisten Fehlstunden -Beste/r Schwiegersohn/-tochter -Fitnesskanone Größte Diva -Beautyguru -Der Stufenclown -Größter Tollpatsch -Weltherrschaft 2040 -Größte Schlafmütze -Heiratet bald +Weltherrschaft 2040 (Schüler) Größte Labertasche Sonnenschein Kleinster Aufwand, größter Erfolg -Stufenmama/-papa -Ehre wem Ehre gebürt - Der/Die Netteste Ziemlich beste Freunde Am faulsten Immer zu spät -Am ehrgeizigsten -Schwärzeste Lunge -Nobelpreisträger Lehrers Liebling -For Kanzleramt -Wird als erstes Mutter/Vater -Sieht aus wie in der fünften Klasse -Als erstes im Gefängnis -Größte/r Schleimer/in -Hat sich durchgemogelt -Scheitert bei Jauch an der 100€ Frage -Checkt den Witz als letztes +Gleich geblieben Größter Bonze -Wohnt mit 40 noch bei Mutti Verdient später am meisten Lehrerschreck -Größte Veränderung Augenschmaus (W) Augenschmaus (M) Lästermaul -Hat nie Hausaufgaben -Ist wirklich intelligent Notenwürfler Macht alles außer Unterricht Übermotiviert \ No newline at end of file diff --git a/src/main/resources/static/styles/alreadysubmittedcandidates.css b/src/main/resources/static/styles/alreadysubmittedcandidates.css new file mode 100644 index 0000000..e0ff00c --- /dev/null +++ b/src/main/resources/static/styles/alreadysubmittedcandidates.css @@ -0,0 +1,65 @@ +body { + background-color: rgb(44, 49, 54); + font-family: Arial, Helvetica, sans-serif; +} + +.center-screen { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + text-align: center; +} + +.centered { + background: transparent; + margin: 0 auto; + padding: 20px; + width: 100%; + overflow: auto; +} + +h1 { + color: #FFF; + font-size: 75px; +} + +h2.categoryHeader { + color: #FFF; + font-size: 50px; +} + +button { + background: transparent; + border: none; + color: #FFF; + font-size: 35px; + font-weight: normal; + letter-spacing: .125rem; + text-transform: uppercase; + text-align: center; + transition: opacity .25s .5s; +} + +.submitButton { + margin-top: 5%; + padding: .25em 0; + border: 0; + outline: 0; + background: #bb1515; + color: rgba(255, 255, 255, 0.85); + font-size: 2rem; + width: 500px; + letter-spacing: .0625rem; + border-radius: 12px; + box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.25); + text-shadow: 0 -2px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.2); +} + +html, +body { + width: 100%; + height: 100%; + background-image: linear-gradient(to bottom right, #111E25 0%, #111 100%); + font-family: 'Lato', sans-serif; +} \ No newline at end of file diff --git a/src/main/resources/static/styles/start.css b/src/main/resources/static/styles/start.css index 203e8a7..76a47b8 100644 --- a/src/main/resources/static/styles/start.css +++ b/src/main/resources/static/styles/start.css @@ -33,7 +33,7 @@ div.userLogin { input.email_input { background-color: transparent; border: transparent; - border-bottom: 2px solid greenyellow; + border-bottom: 2px solid #bb1515; color: #FFF; font-size: xx-large; width: 500px; diff --git a/src/main/resources/templates/errors/alreadysubmittedcandidates.html b/src/main/resources/templates/errors/alreadysubmittedcandidates.html index e976e5b..0a30965 100644 --- a/src/main/resources/templates/errors/alreadysubmittedcandidates.html +++ b/src/main/resources/templates/errors/alreadysubmittedcandidates.html @@ -4,11 +4,15 @@ Title + - -

Du hast deine Kandidaten schon vorgeschlagen!

- Return to Login-Site + +
+

Du hast deine Kandidaten schon vorgeschlagen!

+ Return to Login-Site + +
\ No newline at end of file diff --git a/src/main/resources/templates/test.html b/src/main/resources/templates/test.html deleted file mode 100644 index 77b50c0..0000000 --- a/src/main/resources/templates/test.html +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - Abizeitung 2020/2021 Voting - - - - -

Paragraphes

-

This is a paragraph.

-

This is another paragraph.

- -

Links

- This is a link - -

HTML Images

-

HTML images are defined with the img tag:

- Binary example picture - -

Line breaks

-

This is a
paragraph with a line break.

- -

Styling

-

This is a red paragraph.

- -

Title attribute

-

This is a paragraph.

- -

Quotes in attributes

-

Example 1

-

Example 2

- -

Bigger headings

-

Heading 1

- -

HTML Display

-

- This paragraph contains a lot of lines in the source code, but the browser ignores it. -

-

- This paragraph contains a lot of spaces in the source code, but the browser ignores it. -

- -

Poem Problem

-

- My Bonnie lies over the ocean. My Bonnie lies over the sea. My Bonnie lies over the ocean. Oh, bring back my Bonnie to me. -

- -
Solution:
-
-            My Bonnie lies over the ocean.
-          
-            My Bonnie lies over the sea.
-          
-            My Bonnie lies over the ocean.
-          
-            Oh, bring back my Bonnie to me.
-    
- - - - - - \ No newline at end of file From 5cfade336e8974dae53cd1307a63c4e9c12ea41b Mon Sep 17 00:00:00 2001 From: Simon Date: Wed, 16 Dec 2020 23:41:53 +0100 Subject: [PATCH 06/35] test --- logs/Voting.log | 76 +++++++++++++++++++ .../controller/VotingController.java | 18 +---- .../entities/AuthCode.java | 2 +- .../styles/alreadysubmittedcandidates.css | 18 ----- .../errors/alreadysubmittedcandidates.html | 30 +++++++- 5 files changed, 107 insertions(+), 37 deletions(-) diff --git a/logs/Voting.log b/logs/Voting.log index a86644c..78fdf4b 100644 --- a/logs/Voting.log +++ b/logs/Voting.log @@ -3773,3 +3773,79 @@ java.lang.NullPointerException: null 2020-12-12 00:17:46,632 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' 2020-12-12 00:17:46,633 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown initiated... 2020-12-12 00:17:46,655 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown completed. +2020-12-16 23:08:53,594 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 29783 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-16 23:08:53,597 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-16 23:08:53,662 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-16 23:08:53,662 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-16 23:08:54,075 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-16 23:08:54,124 INFO [restartedMain] Finished Spring Data repository scanning in 42ms. Found 6 JPA repository interfaces. +2020-12-16 23:08:54,748 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-16 23:08:54,757 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-16 23:08:54,758 INFO [restartedMain] Starting service [Tomcat] +2020-12-16 23:08:54,758 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-16 23:08:54,812 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-16 23:08:54,812 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1149 ms +2020-12-16 23:08:54,965 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-16 23:08:54,995 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-16 23:08:55,082 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-16 23:08:55,148 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-16 23:08:55,495 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-16 23:08:55,519 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-16 23:08:56,112 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-16 23:08:56,117 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-16 23:08:56,129 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-16 23:08:56,530 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-16 23:08:56,728 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-16 23:08:56,850 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-16 23:08:57,034 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-16 23:08:57,048 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-16 23:08:57,057 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.782 seconds (JVM running for 4.4) +2020-12-16 23:09:02,314 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-16 23:09:02,314 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-16 23:09:02,320 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms +2020-12-16 23:09:07,865 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2020-12-16 23:09:07,881 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-16 23:09:15,281 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de +2020-12-16 23:09:15,285 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-16 23:09:22,285 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de +2020-12-16 23:09:22,288 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-16 23:09:28,718 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de +2020-12-16 23:09:28,722 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-16 23:09:53,815 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de +2020-12-16 23:09:53,819 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-16 23:10:25,035 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de +2020-12-16 23:10:25,039 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-16 23:19:59,443 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-16 23:19:59,446 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-16 23:26:44,029 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de +2020-12-16 23:26:44,032 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-16 23:27:03,861 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de +2020-12-16 23:27:03,865 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-16 23:28:24,302 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de +2020-12-16 23:28:24,306 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-16 23:29:40,410 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de +2020-12-16 23:29:40,413 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-16 23:30:36,480 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de +2020-12-16 23:30:36,484 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-16 23:30:48,686 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de +2020-12-16 23:30:48,690 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-16 23:34:24,829 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de +2020-12-16 23:34:24,832 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-16 23:34:43,629 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2020-12-16 23:34:43,634 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-16 23:36:23,582 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de +2020-12-16 23:36:23,586 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-16 23:36:51,244 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de +2020-12-16 23:36:51,247 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-16 23:37:06,180 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de +2020-12-16 23:37:06,183 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-16 23:37:39,778 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-16 23:37:39,782 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-16 23:38:01,467 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de +2020-12-16 23:38:01,472 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-16 23:38:27,209 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de +2020-12-16 23:38:27,213 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-16 23:40:06,985 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de +2020-12-16 23:40:06,992 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-16 23:41:01,246 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de +2020-12-16 23:41:01,250 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de has already submitted its candidates diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java index 7dc6779..dad5b36 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java @@ -65,21 +65,9 @@ public class VotingController { @PostConstruct public void init() { - if (motto != null){ - mottoPhase = false; - addingPhase = true; - votingPhase = false; - } else if (adding != null){ - addingPhase = true; - } else if (voting != null){ - votingPhase = true; - } - - -// //TODO: TESTING REMOVE ON SHIPPING -// votingPhase = false; -// mottoPhase = true; -// addingPhase = false; + mottoPhase = false; + votingPhase = false; + addingPhase = true; LOGGER.info("Program started with arguments: votingPhase="+ votingPhase + " mottoPhase=" + mottoPhase + " addingPhase=" + addingPhase); diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/entities/AuthCode.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/entities/AuthCode.java index 84ab6ce..1e1db47 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/entities/AuthCode.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/entities/AuthCode.java @@ -38,7 +38,7 @@ public class AuthCode { } public boolean isExpired(){ - return System.currentTimeMillis() >= (time + 600*1000); + return System.currentTimeMillis() >= (time + 1800*1000); } public void setTime(long time) { diff --git a/src/main/resources/static/styles/alreadysubmittedcandidates.css b/src/main/resources/static/styles/alreadysubmittedcandidates.css index e0ff00c..9e57561 100644 --- a/src/main/resources/static/styles/alreadysubmittedcandidates.css +++ b/src/main/resources/static/styles/alreadysubmittedcandidates.css @@ -24,25 +24,7 @@ h1 { font-size: 75px; } -h2.categoryHeader { - color: #FFF; - font-size: 50px; -} - -button { - background: transparent; - border: none; - color: #FFF; - font-size: 35px; - font-weight: normal; - letter-spacing: .125rem; - text-transform: uppercase; - text-align: center; - transition: opacity .25s .5s; -} - .submitButton { - margin-top: 5%; padding: .25em 0; border: 0; outline: 0; diff --git a/src/main/resources/templates/errors/alreadysubmittedcandidates.html b/src/main/resources/templates/errors/alreadysubmittedcandidates.html index 0a30965..c7749b8 100644 --- a/src/main/resources/templates/errors/alreadysubmittedcandidates.html +++ b/src/main/resources/templates/errors/alreadysubmittedcandidates.html @@ -9,10 +9,34 @@
-

Du hast deine Kandidaten schon vorgeschlagen!

- Return to Login-Site - +

Du hast schon abgestimmt!

+

Nächste Abstimmung in:

+
+ + \ No newline at end of file From 221ebf1c2b97f8e4357c1848774d372f32173795 Mon Sep 17 00:00:00 2001 From: Simon Date: Wed, 16 Dec 2020 23:49:50 +0100 Subject: [PATCH 07/35] fixed bug --- logs/Voting.log | 6 ++++++ .../templates/errors/alreadysubmittedcandidates.html | 10 ++++++---- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/logs/Voting.log b/logs/Voting.log index 78fdf4b..69676ff 100644 --- a/logs/Voting.log +++ b/logs/Voting.log @@ -3849,3 +3849,9 @@ java.lang.NullPointerException: null 2020-12-16 23:40:06,992 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de has already submitted its candidates 2020-12-16 23:41:01,246 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de 2020-12-16 23:41:01,250 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-16 23:46:16,518 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de +2020-12-16 23:46:16,522 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-16 23:47:29,293 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de +2020-12-16 23:47:29,297 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-16 23:49:09,880 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-16 23:49:09,884 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de has already submitted its candidates diff --git a/src/main/resources/templates/errors/alreadysubmittedcandidates.html b/src/main/resources/templates/errors/alreadysubmittedcandidates.html index c7749b8..99868c8 100644 --- a/src/main/resources/templates/errors/alreadysubmittedcandidates.html +++ b/src/main/resources/templates/errors/alreadysubmittedcandidates.html @@ -31,11 +31,13 @@ function showTimeRemaining() { var dateNow = Date.now(); - var days = Math.floor((dateFuture - dateNow) / (1000 * 60 * 60 * 24)) - var hours = Math.floor(((dateFuture - dateNow) - days * 1000 * 60 * 60 * 24) / (1000 * 60 * 60)) - var mins = Math.floor(((dateFuture - dateNow) - days * 1000 * 60 * 60 * 24 - hours * 1000 * 60 * 60) / (1000 * 60)) - var secs = Math.floor(((dateFuture - dateNow) - days * 1000 * 60 * 60 * 24 - hours * 1000 * 60 * 60 - mins * 1000 * 60) / 1000) + var days = Math.floor((dateFuture - dateNow) / (1000 * 60 * 60 * 24)); + var hours = Math.floor(((dateFuture - dateNow) - days * 1000 * 60 * 60 * 24) / (1000 * 60 * 60)); + var mins = Math.floor(((dateFuture - dateNow) - days * 1000 * 60 * 60 * 24 - hours * 1000 * 60 * 60) / (1000 * 60)); + var secs = Math.floor(((dateFuture - dateNow) - days * 1000 * 60 * 60 * 24 - hours * 1000 * 60 * 60 - mins * 1000 * 60) / 1000); document.getElementById("time_remain").innerHTML = "Nächste Abstimmung in: " + days + "D " + hours + ":" + mins + ":" + secs; + console.log("Nächste Abstimmung in: " + days + "D " + hours + ":" + mins + ":" + secs); + } From d0f62b4ca671e1a3d4e83d572b013566f53a262c Mon Sep 17 00:00:00 2001 From: Simon Date: Thu, 17 Dec 2020 03:11:28 +0100 Subject: [PATCH 08/35] Must function now Email is down --- logs/Voting.log | 4964 ++++------------- .../controller/VotingController.java | 41 +- .../entities/AuthCode.java | 4 + .../table/TableAction.java | 5 +- ...mittedcandidates.css => allreadyVoted.css} | 4 + .../resources/static/styles/authenticate.css | 22 +- .../resources/templates/authenticate.html | 47 +- src/main/resources/templates/error.html | 24 +- .../templates/errors/alreadyVoted.html | 40 +- .../errors/alreadyVotedForMotto.html | 14 - .../errors/alreadysubmittedcandidates.html | 44 - .../templates/errors/notRegistered.html | 20 +- 12 files changed, 1379 insertions(+), 3850 deletions(-) rename src/main/resources/static/styles/{alreadysubmittedcandidates.css => allreadyVoted.css} (97%) delete mode 100644 src/main/resources/templates/errors/alreadyVotedForMotto.html delete mode 100644 src/main/resources/templates/errors/alreadysubmittedcandidates.html diff --git a/logs/Voting.log b/logs/Voting.log index 69676ff..c92eebc 100644 --- a/logs/Voting.log +++ b/logs/Voting.log @@ -1,2384 +1,1026 @@ -2020-12-10 00:00:17,752 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 00:00:17,756 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 00:00:17,759 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 00:00:17,767 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 16:54:39,146 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 6818 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 16:54:39,149 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 16:54:39,205 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 16:54:39,205 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 16:54:39,692 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 16:54:39,747 INFO [restartedMain] Finished Spring Data repository scanning in 48ms. Found 5 JPA repository interfaces. -2020-12-10 16:54:40,441 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 16:54:40,451 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 16:54:40,452 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 16:54:40,452 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 16:54:40,518 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 16:54:40,518 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1312 ms -2020-12-10 16:54:40,681 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 16:54:40,725 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 16:54:40,848 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 16:54:40,917 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 16:54:41,335 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 16:54:41,362 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 16:54:41,976 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 16:54:41,983 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 16:54:41,999 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 16:54:42,494 INFO [restartedMain] false -2020-12-10 16:54:42,527 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 16:54:42,629 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 16:54:42,827 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 16:54:42,848 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 16:54:42,859 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.061 seconds (JVM running for 4.635) -2020-12-10 16:54:58,133 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 16:54:58,133 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 16:54:58,137 INFO [http-nio-8000-exec-1] Completed initialization in 4 ms -2020-12-10 16:56:59,496 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de -2020-12-10 16:57:16,436 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de -2020-12-10 16:57:24,248 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-10 16:57:47,594 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 16:57:47,596 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 16:57:47,599 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 16:57:47,608 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 18:53:57,615 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 12716 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 18:53:57,618 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 18:53:57,670 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 18:53:57,671 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 18:53:58,119 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 18:53:58,180 INFO [restartedMain] Finished Spring Data repository scanning in 52ms. Found 5 JPA repository interfaces. -2020-12-10 18:53:58,811 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 18:53:58,822 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 18:53:58,822 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 18:53:58,823 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 18:53:58,887 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 18:53:58,887 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1216 ms -2020-12-10 18:53:59,048 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 18:53:59,079 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 18:53:59,158 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 18:53:59,215 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 18:53:59,523 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 18:53:59,546 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 18:54:00,112 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 18:54:00,119 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 18:54:00,130 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 18:54:00,586 INFO [restartedMain] false -2020-12-10 18:54:00,617 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 18:54:00,725 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 18:54:00,887 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 18:54:00,904 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 18:54:00,914 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.564 seconds (JVM running for 4.041) -2020-12-10 18:54:06,944 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 18:54:06,944 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 18:54:06,950 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms -2020-12-10 18:54:11,351 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-10 18:54:43,322 WARN [http-nio-8000-exec-6] matched -2020-12-10 18:56:59,533 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 12941 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 18:56:59,536 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 18:56:59,601 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 18:56:59,602 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 18:57:00,018 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 18:57:00,064 INFO [restartedMain] Finished Spring Data repository scanning in 40ms. Found 5 JPA repository interfaces. -2020-12-10 18:57:00,682 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 18:57:00,690 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 18:57:00,691 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 18:57:00,691 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 18:57:00,750 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 18:57:00,750 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1148 ms -2020-12-10 18:57:00,903 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 18:57:00,931 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 18:57:01,011 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 18:57:01,075 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 18:57:01,378 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 18:57:01,396 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 18:57:01,944 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 18:57:01,952 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 18:57:01,964 WARN [restartedMain] Unable to start LiveReload server -2020-12-10 18:57:02,440 INFO [restartedMain] false -2020-12-10 18:57:02,472 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 18:57:02,586 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 18:57:02,750 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 18:57:02,754 WARN [restartedMain] Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8000 is already in use -2020-12-10 18:57:02,755 INFO [restartedMain] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 18:57:02,756 INFO [restartedMain] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 18:57:02,759 INFO [restartedMain] HikariPool-1 - Shutdown initiated... -2020-12-10 18:57:02,767 INFO [restartedMain] HikariPool-1 - Shutdown completed. -2020-12-10 18:57:02,770 INFO [restartedMain] Pausing ProtocolHandler ["http-nio-8000"] -2020-12-10 18:57:02,771 INFO [restartedMain] Stopping service [Tomcat] -2020-12-10 18:57:02,775 INFO [restartedMain] Stopping ProtocolHandler ["http-nio-8000"] -2020-12-10 18:57:02,776 INFO [restartedMain] Destroying ProtocolHandler ["http-nio-8000"] -2020-12-10 18:57:02,786 INFO [restartedMain] - -Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. -2020-12-10 18:57:02,788 ERROR [restartedMain] - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8000 was already in use. - -Action: - -Identify and stop the process that's listening on port 8000 or configure this application to listen on another port. - -2020-12-10 18:57:05,546 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 18:57:05,550 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 18:57:05,554 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 18:57:05,562 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 18:57:16,748 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 13047 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 18:57:16,750 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 18:57:16,802 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 18:57:16,803 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 18:57:17,234 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 18:57:17,280 INFO [restartedMain] Finished Spring Data repository scanning in 39ms. Found 5 JPA repository interfaces. -2020-12-10 18:57:17,857 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 18:57:17,865 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 18:57:17,866 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 18:57:17,866 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 18:57:17,924 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 18:57:17,925 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1121 ms -2020-12-10 18:57:18,078 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 18:57:18,109 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 18:57:18,193 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 18:57:18,256 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 18:57:18,560 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 18:57:18,587 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 18:57:19,130 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 18:57:19,138 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 18:57:19,161 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 18:57:19,668 INFO [restartedMain] false -2020-12-10 18:57:19,700 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 18:57:19,804 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 18:57:19,979 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 18:57:19,993 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 18:57:20,003 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.531 seconds (JVM running for 3.999) -2020-12-10 18:57:29,496 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 18:57:29,496 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 18:57:29,500 INFO [http-nio-8000-exec-1] Completed initialization in 4 ms -2020-12-10 18:57:29,533 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-10 18:57:39,081 WARN [http-nio-8000-exec-3] matched -2020-12-10 18:59:58,042 INFO [http-nio-8000-exec-6] Error parsing HTTP request header - Note: further occurrences of HTTP request parsing errors will be logged at DEBUG level. -java.lang.IllegalArgumentException: Invalid character found in method name [0x010x010xe60x0a0x000x080x000x000x000x010x000x000x000x000x000x000x010x040xe60x0a0x000x000x00...]. HTTP method names must be tokens - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:413) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:261) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:630) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:832) -2020-12-10 19:00:35,940 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de -2020-12-10 19:01:51,075 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 19:01:51,078 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 19:01:51,082 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 19:01:51,089 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 19:01:55,208 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 13273 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 19:01:55,211 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 19:01:55,270 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 19:01:55,271 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 19:01:55,707 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 19:01:55,755 INFO [restartedMain] Finished Spring Data repository scanning in 42ms. Found 5 JPA repository interfaces. -2020-12-10 19:01:56,416 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 19:01:56,424 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 19:01:56,425 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 19:01:56,425 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 19:01:56,485 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 19:01:56,486 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1215 ms -2020-12-10 19:01:56,632 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 19:01:56,663 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 19:01:56,739 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 19:01:56,794 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 19:01:57,118 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 19:01:57,135 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 19:01:57,702 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 19:01:57,709 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 19:01:57,722 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 19:01:58,168 INFO [restartedMain] false -2020-12-10 19:01:58,199 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 19:01:58,315 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 19:01:58,488 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 19:01:58,503 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 19:01:58,513 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.574 seconds (JVM running for 4.078) -2020-12-10 19:02:05,532 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 19:02:05,532 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 19:02:05,540 INFO [http-nio-8000-exec-1] Completed initialization in 8 ms -2020-12-10 19:02:09,189 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-10 19:03:15,747 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-10 19:03:59,211 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de -2020-12-10 19:04:23,228 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de -2020-12-10 19:04:59,264 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-10 19:05:51,369 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 19:05:51,372 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 19:05:51,376 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 19:05:51,383 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 19:06:06,722 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 13515 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 19:06:06,724 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 19:06:06,778 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 19:06:06,778 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 19:06:07,261 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 19:06:07,308 INFO [restartedMain] Finished Spring Data repository scanning in 40ms. Found 5 JPA repository interfaces. -2020-12-10 19:06:07,938 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 19:06:07,945 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 19:06:07,946 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 19:06:07,946 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 19:06:08,005 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 19:06:08,005 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1226 ms -2020-12-10 19:06:08,156 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 19:06:08,186 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 19:06:08,265 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 19:06:08,339 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 19:06:08,657 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 19:06:08,675 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 19:06:09,244 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 19:06:09,251 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 19:06:09,261 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 19:06:09,693 INFO [restartedMain] false -2020-12-10 19:06:09,726 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 19:06:09,842 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 19:06:09,999 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 19:06:10,014 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 19:06:10,027 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.567 seconds (JVM running for 4.036) -2020-12-10 19:06:13,324 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 19:06:13,324 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 19:06:13,328 INFO [http-nio-8000-exec-1] Completed initialization in 4 ms -2020-12-10 19:06:16,880 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-10 19:07:20,198 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 19:07:20,201 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 19:07:20,204 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 19:07:20,214 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 19:08:40,213 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 13777 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 19:08:40,217 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 19:08:40,276 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 19:08:40,277 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 19:08:40,702 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 19:08:40,755 INFO [restartedMain] Finished Spring Data repository scanning in 46ms. Found 5 JPA repository interfaces. -2020-12-10 19:08:41,376 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 19:08:41,384 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 19:08:41,385 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 19:08:41,385 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 19:08:41,441 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 19:08:41,442 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1165 ms -2020-12-10 19:08:41,584 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 19:08:41,614 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 19:08:41,703 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 19:08:41,770 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 19:08:42,070 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 19:08:42,093 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 19:08:42,649 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 19:08:42,655 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 19:08:42,666 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 19:08:43,105 INFO [restartedMain] false -2020-12-10 19:08:43,134 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 19:08:43,240 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 19:08:43,405 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 19:08:43,419 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 19:08:43,428 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.488 seconds (JVM running for 4.01) -2020-12-10 19:08:46,616 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 19:08:46,619 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 19:08:46,623 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 19:08:46,632 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 19:09:47,592 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 13955 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 19:09:47,594 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 19:09:47,645 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 19:09:47,645 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 19:09:48,074 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 19:09:48,138 INFO [restartedMain] Finished Spring Data repository scanning in 57ms. Found 5 JPA repository interfaces. -2020-12-10 19:09:48,828 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 19:09:48,836 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 19:09:48,836 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 19:09:48,837 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 19:09:48,897 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 19:09:48,897 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1251 ms -2020-12-10 19:09:49,070 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 19:09:49,104 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 19:09:49,199 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 19:09:49,288 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 19:09:49,629 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 19:09:49,649 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 19:09:50,318 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 19:09:50,327 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 19:09:50,342 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 19:10:31,518 INFO [restartedMain] false -2020-12-10 19:10:31,555 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 19:10:31,742 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 19:10:31,923 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 19:10:31,939 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 19:10:31,950 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 45.566 seconds (JVM running for 83.915) -2020-12-10 19:10:41,898 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 19:10:41,898 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 19:10:41,904 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms -2020-12-10 19:10:57,909 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-10 19:12:29,770 WARN [http-nio-8000-exec-5] matched -2020-12-10 19:12:41,507 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 19:12:41,510 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 19:12:41,514 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 19:12:41,521 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 19:29:18,214 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 15183 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 19:29:18,217 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 19:29:18,287 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 19:29:18,288 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 19:29:18,770 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 19:29:18,822 INFO [restartedMain] Finished Spring Data repository scanning in 47ms. Found 6 JPA repository interfaces. -2020-12-10 19:29:19,456 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 19:29:19,464 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 19:29:19,464 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 19:29:19,465 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 19:29:19,534 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 19:29:19,535 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1247 ms -2020-12-10 19:29:19,682 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 19:29:19,710 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 19:29:19,789 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 19:29:19,858 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 19:29:20,166 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 19:29:20,183 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 19:29:20,722 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 19:29:20,727 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 19:29:20,737 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 19:29:21,231 INFO [restartedMain] Mottos successfully set up -2020-12-10 19:29:21,238 INFO [restartedMain] false -2020-12-10 19:29:21,275 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 19:29:21,379 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 19:29:21,538 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 19:29:21,553 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 19:29:21,562 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.673 seconds (JVM running for 4.211) -2020-12-10 19:29:31,359 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 19:29:31,359 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 19:29:31,364 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms -2020-12-10 19:29:43,458 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-10 19:29:55,511 WARN [http-nio-8000-exec-6] matched -2020-12-10 19:30:28,081 ERROR [http-nio-8000-exec-8] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NullPointerException] with root cause -java.lang.NullPointerException: null - at com.github.cato447.AbizeitungVotingSystem.table.TableAction.checkToken(TableAction.java:50) - at com.github.cato447.AbizeitungVotingSystem.controller.VotingController.voting_adding(VotingController.java:151) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:564) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:878) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:792) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:630) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:832) -2020-12-10 19:30:34,339 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-10 19:30:59,899 WARN [http-nio-8000-exec-3] matched -2020-12-10 19:31:02,692 ERROR [http-nio-8000-exec-5] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NullPointerException] with root cause -java.lang.NullPointerException: null - at com.github.cato447.AbizeitungVotingSystem.table.TableAction.checkToken(TableAction.java:50) - at com.github.cato447.AbizeitungVotingSystem.controller.VotingController.voting_adding(VotingController.java:151) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:564) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:878) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:792) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:630) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:832) -2020-12-10 19:31:14,924 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 15512 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 19:31:14,927 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 19:31:14,993 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 19:31:14,994 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 19:31:15,427 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 19:31:15,487 INFO [restartedMain] Finished Spring Data repository scanning in 54ms. Found 6 JPA repository interfaces. -2020-12-10 19:31:16,142 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 19:31:16,150 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 19:31:16,151 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 19:31:16,151 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 19:31:16,217 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 19:31:16,217 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1223 ms -2020-12-10 19:31:16,355 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 19:31:16,384 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 19:31:16,460 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 19:31:16,521 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 19:31:16,842 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 19:31:16,859 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 19:31:17,443 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 19:31:17,449 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 19:31:17,458 WARN [restartedMain] Unable to start LiveReload server -2020-12-10 19:31:17,945 INFO [restartedMain] Mottos successfully set up -2020-12-10 19:31:17,952 INFO [restartedMain] false -2020-12-10 19:31:17,981 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 19:31:18,083 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 19:31:18,244 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 19:31:18,248 WARN [restartedMain] Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8000 is already in use -2020-12-10 19:31:18,249 INFO [restartedMain] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 19:31:18,250 INFO [restartedMain] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 19:31:18,253 INFO [restartedMain] HikariPool-1 - Shutdown initiated... -2020-12-10 19:31:18,260 INFO [restartedMain] HikariPool-1 - Shutdown completed. -2020-12-10 19:31:18,262 INFO [restartedMain] Pausing ProtocolHandler ["http-nio-8000"] -2020-12-10 19:31:18,263 INFO [restartedMain] Stopping service [Tomcat] -2020-12-10 19:31:18,267 INFO [restartedMain] Stopping ProtocolHandler ["http-nio-8000"] -2020-12-10 19:31:18,268 INFO [restartedMain] Destroying ProtocolHandler ["http-nio-8000"] -2020-12-10 19:31:18,276 INFO [restartedMain] - -Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. -2020-12-10 19:31:18,278 ERROR [restartedMain] - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8000 was already in use. - -Action: - -Identify and stop the process that's listening on port 8000 or configure this application to listen on another port. - -2020-12-10 19:31:20,750 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 19:31:20,752 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 19:31:20,755 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 19:31:20,762 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 19:31:23,874 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 15598 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 19:31:23,877 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 19:31:23,940 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 19:31:23,941 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 19:31:24,346 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 19:31:24,408 INFO [restartedMain] Finished Spring Data repository scanning in 53ms. Found 6 JPA repository interfaces. -2020-12-10 19:31:25,068 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 19:31:25,077 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 19:31:25,077 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 19:31:25,078 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 19:31:25,137 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 19:31:25,138 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1196 ms -2020-12-10 19:31:25,293 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 19:31:25,324 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 19:31:25,405 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 19:31:25,468 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 19:31:25,793 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 19:31:25,814 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 19:31:26,376 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 19:31:26,383 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 19:31:26,398 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 19:31:26,902 INFO [restartedMain] Mottos successfully set up -2020-12-10 19:31:26,909 INFO [restartedMain] false -2020-12-10 19:31:26,939 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 19:31:27,034 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 19:31:27,195 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 19:31:27,207 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 19:31:27,220 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.609 seconds (JVM running for 4.086) -2020-12-10 19:31:31,654 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 19:31:31,654 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 19:31:31,658 INFO [http-nio-8000-exec-1] Completed initialization in 4 ms -2020-12-10 19:31:34,003 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-10 19:31:46,839 WARN [http-nio-8000-exec-5] matched -2020-12-10 19:31:50,981 ERROR [http-nio-8000-exec-7] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NullPointerException] with root cause -java.lang.NullPointerException: null - at com.github.cato447.AbizeitungVotingSystem.table.TableAction.checkToken(TableAction.java:50) - at com.github.cato447.AbizeitungVotingSystem.controller.VotingController.voting_adding(VotingController.java:151) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:564) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:878) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:792) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:630) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:832) -2020-12-10 19:33:23,497 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 19:33:23,500 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 19:33:23,504 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 19:33:23,513 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 19:33:26,309 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 15754 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 19:33:26,312 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 19:33:26,365 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 19:33:26,365 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 19:33:26,816 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 19:33:26,865 INFO [restartedMain] Finished Spring Data repository scanning in 44ms. Found 6 JPA repository interfaces. -2020-12-10 19:33:27,506 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 19:33:27,514 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 19:33:27,515 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 19:33:27,515 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 19:33:27,586 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 19:33:27,586 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1220 ms -2020-12-10 19:33:27,735 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 19:33:27,767 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 19:33:27,848 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 19:33:27,907 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 19:33:28,207 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 19:33:28,224 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 19:33:28,805 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 19:33:28,811 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 19:33:28,821 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 19:33:29,289 INFO [restartedMain] Mottos successfully set up -2020-12-10 19:33:29,294 INFO [restartedMain] false -2020-12-10 19:33:29,327 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 19:33:29,421 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 19:33:29,608 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 19:33:29,623 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 19:33:29,635 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.596 seconds (JVM running for 4.083) -2020-12-10 19:33:32,735 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 19:33:32,735 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 19:33:32,740 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms -2020-12-10 19:33:34,953 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-10 19:33:45,827 WARN [http-nio-8000-exec-5] matched -2020-12-10 19:35:29,931 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 19:35:29,935 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 19:35:29,939 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 19:35:29,946 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 19:35:36,014 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 15906 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 19:35:36,016 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 19:35:36,065 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 19:35:36,066 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 19:35:36,503 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 19:35:36,549 INFO [restartedMain] Finished Spring Data repository scanning in 40ms. Found 6 JPA repository interfaces. -2020-12-10 19:35:37,209 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 19:35:37,220 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 19:35:37,220 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 19:35:37,221 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 19:35:37,285 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 19:35:37,286 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1220 ms -2020-12-10 19:35:37,459 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 19:35:37,487 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 19:35:37,565 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 19:35:37,630 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 19:35:37,941 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 19:35:37,961 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 19:35:38,537 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 19:35:38,543 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 19:35:38,560 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 19:35:39,074 INFO [restartedMain] Mottos successfully set up -2020-12-10 19:35:39,080 INFO [restartedMain] false -2020-12-10 19:35:39,118 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 19:35:39,219 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 19:35:39,386 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 19:35:39,403 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 19:35:39,415 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.663 seconds (JVM running for 4.126) -2020-12-10 19:35:40,899 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 19:35:40,899 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 19:35:40,904 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms -2020-12-10 19:35:43,551 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-10 19:36:11,296 WARN [http-nio-8000-exec-5] matched -2020-12-10 19:36:11,297 WARN [http-nio-8000-exec-5] expired -2020-12-10 19:36:47,270 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 19:36:47,271 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 19:36:47,274 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 19:36:47,278 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 19:36:50,112 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 16125 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 19:36:50,115 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 19:36:50,180 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 19:36:50,181 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 19:36:50,637 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 19:36:50,683 INFO [restartedMain] Finished Spring Data repository scanning in 41ms. Found 6 JPA repository interfaces. -2020-12-10 19:36:51,308 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 19:36:51,317 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 19:36:51,317 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 19:36:51,318 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 19:36:51,386 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 19:36:51,386 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1204 ms -2020-12-10 19:36:51,536 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 19:36:51,567 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 19:36:51,643 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 19:36:51,699 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 19:36:52,032 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 19:36:52,049 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 19:36:52,609 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 19:36:52,615 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 19:36:52,627 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 19:36:53,099 INFO [restartedMain] Mottos successfully set up -2020-12-10 19:36:53,106 INFO [restartedMain] false -2020-12-10 19:36:53,134 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 19:36:53,233 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 19:36:53,406 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 19:36:53,423 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 19:36:53,435 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.591 seconds (JVM running for 4.062) -2020-12-10 19:36:58,979 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 19:36:58,980 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 19:36:58,988 INFO [http-nio-8000-exec-1] Completed initialization in 8 ms -2020-12-10 19:37:01,738 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-10 19:37:15,859 WARN [http-nio-8000-exec-5] matched -2020-12-10 19:37:15,862 ERROR [http-nio-8000-exec-5] [THYMELEAF][http-nio-8000-exec-5] Exception processing template "fatalError": Error resolving template [fatalError], template might not exist or might not be accessible by any of the configured Template Resolvers -org.thymeleaf.exceptions.TemplateInputException: Error resolving template [fatalError], template might not exist or might not be accessible by any of the configured Template Resolvers - at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:630) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:832) -2020-12-10 19:37:15,864 ERROR [http-nio-8000-exec-5] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: Error resolving template [fatalError], template might not exist or might not be accessible by any of the configured Template Resolvers] with root cause -org.thymeleaf.exceptions.TemplateInputException: Error resolving template [fatalError], template might not exist or might not be accessible by any of the configured Template Resolvers - at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:630) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:832) -2020-12-10 19:40:56,244 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 19:40:56,247 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 19:40:56,251 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 19:40:56,258 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 19:40:59,221 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 16459 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 19:40:59,223 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 19:40:59,291 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 19:40:59,291 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 19:40:59,737 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 19:40:59,799 INFO [restartedMain] Finished Spring Data repository scanning in 56ms. Found 6 JPA repository interfaces. -2020-12-10 19:41:00,479 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 19:41:00,488 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 19:41:00,488 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 19:41:00,489 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 19:41:00,556 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 19:41:00,556 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1265 ms -2020-12-10 19:41:00,697 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 19:41:00,724 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 19:41:00,804 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 19:41:00,862 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 19:41:01,174 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 19:41:01,191 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 19:41:01,771 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 19:41:01,780 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 19:41:01,792 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 19:41:02,296 INFO [restartedMain] Mottos successfully set up -2020-12-10 19:41:02,302 INFO [restartedMain] false -2020-12-10 19:41:02,330 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 19:41:02,442 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 19:41:02,631 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 19:41:02,646 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 19:41:02,654 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.713 seconds (JVM running for 4.21) -2020-12-10 19:41:07,952 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 19:41:07,953 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 19:41:07,959 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms -2020-12-10 19:41:11,003 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-10 19:42:15,740 WARN [http-nio-8000-exec-6] matched -2020-12-10 19:42:15,742 ERROR [http-nio-8000-exec-6] [THYMELEAF][http-nio-8000-exec-6] Exception processing template "fatalError": Error resolving template [fatalError], template might not exist or might not be accessible by any of the configured Template Resolvers -org.thymeleaf.exceptions.TemplateInputException: Error resolving template [fatalError], template might not exist or might not be accessible by any of the configured Template Resolvers - at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:630) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:832) -2020-12-10 19:42:15,743 ERROR [http-nio-8000-exec-6] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: Error resolving template [fatalError], template might not exist or might not be accessible by any of the configured Template Resolvers] with root cause -org.thymeleaf.exceptions.TemplateInputException: Error resolving template [fatalError], template might not exist or might not be accessible by any of the configured Template Resolvers - at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:630) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:832) -2020-12-10 19:43:34,186 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 19:43:34,190 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 19:43:34,194 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 19:43:34,201 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 19:43:37,174 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 16635 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 19:43:37,177 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 19:43:37,236 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 19:43:37,237 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 19:43:37,682 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 19:43:37,739 INFO [restartedMain] Finished Spring Data repository scanning in 50ms. Found 6 JPA repository interfaces. -2020-12-10 19:43:38,366 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 19:43:38,374 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 19:43:38,375 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 19:43:38,375 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 19:43:38,440 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 19:43:38,440 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1203 ms -2020-12-10 19:43:38,596 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 19:43:38,626 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 19:43:38,710 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 19:43:38,770 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 19:43:39,101 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 19:43:39,125 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 19:43:39,710 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 19:43:39,717 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 19:43:39,736 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 19:43:40,249 INFO [restartedMain] Mottos successfully set up -2020-12-10 19:43:40,256 INFO [restartedMain] false -2020-12-10 19:43:40,289 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 19:43:40,399 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 19:43:40,578 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 19:43:40,597 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 19:43:40,606 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.741 seconds (JVM running for 4.231) -2020-12-10 19:43:44,412 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 19:43:44,413 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 19:43:44,419 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms -2020-12-10 19:43:44,448 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-10 19:43:44,470 WARN [http-nio-8000-exec-1] no code -2020-12-10 19:44:07,309 WARN [http-nio-8000-exec-3] matched -2020-12-10 19:44:07,313 ERROR [http-nio-8000-exec-3] [THYMELEAF][http-nio-8000-exec-3] Exception processing template "fatalError": Error resolving template [fatalError], template might not exist or might not be accessible by any of the configured Template Resolvers -org.thymeleaf.exceptions.TemplateInputException: Error resolving template [fatalError], template might not exist or might not be accessible by any of the configured Template Resolvers - at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:630) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:832) -2020-12-10 19:44:07,315 ERROR [http-nio-8000-exec-3] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: Error resolving template [fatalError], template might not exist or might not be accessible by any of the configured Template Resolvers] with root cause -org.thymeleaf.exceptions.TemplateInputException: Error resolving template [fatalError], template might not exist or might not be accessible by any of the configured Template Resolvers - at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:630) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:832) -2020-12-10 19:47:35,697 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 19:47:35,701 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 19:47:35,704 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 19:47:35,713 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 19:47:37,806 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 16847 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 19:47:37,809 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 19:47:37,877 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 19:47:37,878 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 19:47:38,432 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 19:47:38,493 INFO [restartedMain] Finished Spring Data repository scanning in 54ms. Found 6 JPA repository interfaces. -2020-12-10 19:47:39,402 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 19:47:39,416 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 19:47:39,418 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 19:47:39,418 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 19:47:39,506 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 19:47:39,507 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1628 ms -2020-12-10 19:47:39,750 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 19:47:39,797 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 19:47:39,896 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 19:47:39,976 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 19:47:40,365 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 19:47:40,386 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 19:47:40,999 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 19:47:41,006 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 19:47:41,022 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 19:47:41,658 INFO [restartedMain] Mottos successfully set up -2020-12-10 19:47:41,668 INFO [restartedMain] false -2020-12-10 19:47:41,714 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 19:47:41,832 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 19:47:42,034 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 19:47:42,054 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 19:47:42,064 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.566 seconds (JVM running for 5.12) -2020-12-10 19:47:48,922 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 19:47:48,922 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 19:47:48,931 INFO [http-nio-8000-exec-1] Completed initialization in 8 ms -2020-12-10 19:47:48,963 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-10 19:47:48,985 WARN [http-nio-8000-exec-1] no code -2020-12-10 20:04:19,045 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 20:04:19,048 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:04:19,051 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 20:04:19,056 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 20:04:21,126 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 17536 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 20:04:21,128 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 20:04:21,207 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 20:04:21,209 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 20:04:21,736 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 20:04:21,811 INFO [restartedMain] Finished Spring Data repository scanning in 67ms. Found 6 JPA repository interfaces. -2020-12-10 20:04:22,551 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 20:04:22,559 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 20:04:22,560 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 20:04:22,560 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 20:04:22,627 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 20:04:22,628 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1418 ms -2020-12-10 20:04:22,796 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 20:04:22,831 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 20:04:22,916 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 20:04:22,980 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 20:04:23,351 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 20:04:23,372 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 20:04:23,998 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 20:04:24,004 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:04:24,016 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 20:04:24,537 INFO [restartedMain] Mottos successfully set up -2020-12-10 20:04:24,543 INFO [restartedMain] false -2020-12-10 20:04:24,578 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 20:04:24,704 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 20:04:24,907 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 20:04:24,939 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 20:04:24,949 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.096 seconds (JVM running for 4.669) -2020-12-10 20:06:38,841 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 20:06:38,843 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:06:38,847 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 20:06:38,856 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 20:06:54,922 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 17685 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 20:06:54,925 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 20:06:54,986 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 20:06:54,987 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 20:06:55,493 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 20:06:55,556 INFO [restartedMain] Finished Spring Data repository scanning in 56ms. Found 6 JPA repository interfaces. -2020-12-10 20:06:56,346 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 20:06:56,355 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 20:06:56,356 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 20:06:56,356 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 20:06:56,427 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 20:06:56,428 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1440 ms -2020-12-10 20:06:56,632 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 20:06:56,680 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 20:06:56,782 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 20:06:56,877 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 20:06:57,255 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 20:06:57,280 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 20:06:57,972 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 20:06:57,977 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:06:57,993 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 20:07:43,171 INFO [restartedMain] Mottos successfully set up -2020-12-10 20:07:43,177 INFO [restartedMain] false -2020-12-10 20:07:43,210 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 20:07:43,369 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 20:07:43,581 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 20:07:43,599 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 20:07:43,611 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 54.365 seconds (JVM running for 62.456) -2020-12-10 20:08:03,048 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 20:08:03,048 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 20:08:03,056 INFO [http-nio-8000-exec-1] Completed initialization in 8 ms -2020-12-10 20:08:08,965 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-10 20:08:55,791 WARN [HikariPool-1 housekeeper] HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=57s667ms964µs501ns). -2020-12-10 20:16:20,852 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 20:16:20,854 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:16:20,856 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 20:16:20,864 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 20:16:23,005 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 18540 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 20:16:23,008 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 20:16:23,078 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 20:16:23,078 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 20:16:23,582 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 20:16:23,640 INFO [restartedMain] Finished Spring Data repository scanning in 51ms. Found 6 JPA repository interfaces. -2020-12-10 20:16:24,315 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 20:16:24,326 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 20:16:24,327 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 20:16:24,328 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 20:16:24,416 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 20:16:24,417 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1338 ms -2020-12-10 20:16:24,575 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 20:16:24,603 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 20:16:24,680 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 20:16:24,741 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 20:16:25,115 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 20:16:25,147 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 20:16:25,746 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 20:16:25,754 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:16:25,767 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 20:16:26,266 INFO [restartedMain] Mottos successfully set up -2020-12-10 20:16:26,272 INFO [restartedMain] false -2020-12-10 20:16:26,309 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 20:16:26,446 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 20:16:26,656 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 20:16:26,675 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 20:16:26,687 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.002 seconds (JVM running for 4.527) -2020-12-10 20:16:33,587 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 20:16:33,588 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 20:16:33,592 INFO [http-nio-8000-exec-1] Completed initialization in 4 ms -2020-12-10 20:16:41,768 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-10 20:17:14,032 WARN [http-nio-8000-exec-5] expired -2020-12-10 20:17:18,399 WARN [http-nio-8000-exec-7] wrong -2020-12-10 20:18:43,733 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 20:18:43,737 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:18:43,740 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 20:18:43,751 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 20:18:46,769 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 18738 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 20:18:46,772 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 20:18:46,850 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 20:18:46,851 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 20:18:47,336 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 20:18:47,410 INFO [restartedMain] Finished Spring Data repository scanning in 66ms. Found 6 JPA repository interfaces. -2020-12-10 20:18:48,178 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 20:18:48,190 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 20:18:48,190 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 20:18:48,190 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 20:18:48,260 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 20:18:48,260 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1409 ms -2020-12-10 20:18:48,455 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 20:18:48,486 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 20:18:48,580 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 20:18:48,642 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 20:18:48,987 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 20:18:49,010 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 20:18:49,632 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 20:18:49,640 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:18:49,652 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 20:18:50,188 INFO [restartedMain] Mottos successfully set up -2020-12-10 20:18:50,193 INFO [restartedMain] false -2020-12-10 20:18:50,223 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 20:18:50,335 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 20:18:50,517 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 20:18:50,530 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 20:18:50,540 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.053 seconds (JVM running for 4.612) -2020-12-10 20:19:07,047 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 20:19:07,048 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 20:19:07,056 INFO [http-nio-8000-exec-1] Completed initialization in 8 ms -2020-12-10 20:19:09,603 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-10 20:19:09,620 WARN [http-nio-8000-exec-3] no code -2020-12-10 20:19:25,009 WARN [http-nio-8000-exec-5] matched -2020-12-10 20:19:25,012 ERROR [http-nio-8000-exec-5] [THYMELEAF][http-nio-8000-exec-5] Exception processing template "fatalError": Error resolving template [fatalError], template might not exist or might not be accessible by any of the configured Template Resolvers -org.thymeleaf.exceptions.TemplateInputException: Error resolving template [fatalError], template might not exist or might not be accessible by any of the configured Template Resolvers - at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:630) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:832) -2020-12-10 20:19:25,013 ERROR [http-nio-8000-exec-5] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: Error resolving template [fatalError], template might not exist or might not be accessible by any of the configured Template Resolvers] with root cause -org.thymeleaf.exceptions.TemplateInputException: Error resolving template [fatalError], template might not exist or might not be accessible by any of the configured Template Resolvers - at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:630) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:832) -2020-12-10 20:19:51,473 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 20:19:51,475 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:19:51,479 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 20:19:51,489 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 20:19:57,840 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 18970 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 20:19:57,843 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 20:19:57,909 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 20:19:57,910 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 20:19:58,570 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 20:19:58,659 INFO [restartedMain] Finished Spring Data repository scanning in 79ms. Found 6 JPA repository interfaces. -2020-12-10 20:19:59,453 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 20:19:59,461 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 20:19:59,462 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 20:19:59,462 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 20:19:59,537 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 20:19:59,537 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1627 ms -2020-12-10 20:19:59,725 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 20:19:59,764 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 20:19:59,869 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 20:19:59,967 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 20:20:00,336 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 20:20:00,357 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 20:20:01,031 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 20:20:01,038 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:20:01,058 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 20:20:12,480 INFO [restartedMain] Mottos successfully set up -2020-12-10 20:20:12,486 INFO [restartedMain] false -2020-12-10 20:20:12,528 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 20:20:12,751 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 20:20:13,036 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 20:20:13,057 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 20:20:13,069 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 15.685 seconds (JVM running for 20.399) -2020-12-10 20:20:23,472 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 20:20:23,472 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 20:20:23,479 INFO [http-nio-8000-exec-1] Completed initialization in 7 ms -2020-12-10 20:20:27,486 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-10 20:20:27,510 WARN [http-nio-8000-exec-3] no code -2020-12-10 20:23:15,178 WARN [http-nio-8000-exec-5] matched -2020-12-10 20:23:15,179 WARN [HikariPool-1 housekeeper] HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=2m43s140ms957µs319ns). -2020-12-10 20:23:15,185 ERROR [http-nio-8000-exec-5] [THYMELEAF][http-nio-8000-exec-5] Exception processing template "fatalError": Error resolving template [fatalError], template might not exist or might not be accessible by any of the configured Template Resolvers -org.thymeleaf.exceptions.TemplateInputException: Error resolving template [fatalError], template might not exist or might not be accessible by any of the configured Template Resolvers - at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:630) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:832) -2020-12-10 20:23:15,189 ERROR [http-nio-8000-exec-5] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: Error resolving template [fatalError], template might not exist or might not be accessible by any of the configured Template Resolvers] with root cause -org.thymeleaf.exceptions.TemplateInputException: Error resolving template [fatalError], template might not exist or might not be accessible by any of the configured Template Resolvers - at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:630) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:832) -2020-12-10 20:23:15,258 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 20:23:15,261 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:23:15,266 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 20:23:15,273 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 20:28:20,015 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 19396 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 20:28:20,018 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 20:28:20,086 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 20:28:20,086 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 20:28:20,525 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 20:28:20,581 INFO [restartedMain] Finished Spring Data repository scanning in 49ms. Found 6 JPA repository interfaces. -2020-12-10 20:28:21,393 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 20:28:21,407 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 20:28:21,408 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 20:28:21,408 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 20:28:21,476 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 20:28:21,476 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1389 ms -2020-12-10 20:28:21,658 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 20:28:21,693 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 20:28:21,804 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 20:28:21,875 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 20:28:22,318 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 20:28:22,349 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 20:28:23,021 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 20:28:23,027 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:28:23,041 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 20:28:23,468 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=false addingPhase=false -2020-12-10 20:28:23,675 INFO [restartedMain] Mottos successfully set up -2020-12-10 20:28:23,683 INFO [restartedMain] false -2020-12-10 20:28:23,735 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 20:28:23,861 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 20:28:24,058 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 20:28:24,089 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 20:28:24,099 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.44 seconds (JVM running for 5.23) -2020-12-10 20:29:01,985 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 20:29:01,988 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:29:01,991 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 20:29:02,005 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 20:29:05,328 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 19503 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 20:29:05,330 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 20:29:05,400 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 20:29:05,400 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 20:29:05,842 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 20:29:05,897 INFO [restartedMain] Finished Spring Data repository scanning in 49ms. Found 6 JPA repository interfaces. -2020-12-10 20:29:06,552 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 20:29:06,562 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 20:29:06,563 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 20:29:06,563 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 20:29:06,626 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 20:29:06,626 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1225 ms -2020-12-10 20:29:06,803 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 20:29:06,836 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 20:29:06,927 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 20:29:07,000 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 20:29:07,383 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 20:29:07,406 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 20:29:08,025 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 20:29:08,033 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:29:08,049 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 20:29:08,510 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=false addingPhase=false -2020-12-10 20:29:08,690 INFO [restartedMain] Mottos successfully set up -2020-12-10 20:29:08,732 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 20:29:08,843 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 20:29:09,047 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 20:29:09,076 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 20:29:09,087 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.14 seconds (JVM running for 4.726) -2020-12-10 20:31:02,125 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 20:31:02,128 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:31:02,132 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 20:31:02,142 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 20:31:07,738 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 19709 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 20:31:07,741 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 20:31:07,807 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 20:31:07,807 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 20:31:08,417 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 20:31:08,483 INFO [restartedMain] Finished Spring Data repository scanning in 58ms. Found 6 JPA repository interfaces. -2020-12-10 20:31:09,266 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 20:31:09,276 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 20:31:09,277 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 20:31:09,277 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 20:31:09,347 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 20:31:09,347 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1540 ms -2020-12-10 20:31:09,539 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 20:31:09,576 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 20:31:09,681 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 20:31:09,771 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 20:31:10,188 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 20:31:10,213 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 20:31:10,972 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 20:31:10,981 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:31:10,995 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 20:32:02,291 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=false addingPhase=false -2020-12-10 20:32:02,445 INFO [restartedMain] Mottos successfully set up -2020-12-10 20:32:02,503 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 20:32:02,651 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 20:32:02,866 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 20:32:02,886 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 20:32:02,898 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 55.655 seconds (JVM running for 59.502) -2020-12-10 20:34:09,316 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 20:34:09,320 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:34:09,324 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 20:34:09,336 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 20:34:24,696 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 20494 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 20:34:24,698 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 20:34:24,764 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 20:34:24,765 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 20:34:25,272 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 20:34:25,342 INFO [restartedMain] Finished Spring Data repository scanning in 62ms. Found 6 JPA repository interfaces. -2020-12-10 20:34:26,115 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 20:34:26,127 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 20:34:26,127 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 20:34:26,128 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 20:34:26,197 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 20:34:26,198 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1433 ms -2020-12-10 20:34:26,417 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 20:34:26,459 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 20:34:26,578 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 20:34:26,660 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 20:34:27,081 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 20:34:27,104 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 20:34:27,832 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 20:34:27,843 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:34:27,859 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 20:39:01,945 WARN [HikariPool-1 housekeeper] HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=4m4s129ms646µs670ns). -2020-12-10 20:39:01,959 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=false addingPhase=false -2020-12-10 20:43:07,367 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 21326 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 20:43:07,370 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 20:43:07,433 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 20:43:07,433 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 20:43:07,836 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 20:43:07,888 INFO [restartedMain] Finished Spring Data repository scanning in 46ms. Found 6 JPA repository interfaces. -2020-12-10 20:43:08,523 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 20:43:08,531 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 20:43:08,532 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 20:43:08,532 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 20:43:08,585 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 20:43:08,585 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1152 ms -2020-12-10 20:43:08,735 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 20:43:08,765 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 20:43:08,848 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 20:43:08,912 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 20:43:09,234 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 20:43:09,253 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 20:43:09,851 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 20:43:09,857 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:43:09,872 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 20:43:10,264 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=false addingPhase=false -2020-12-10 20:43:10,403 INFO [restartedMain] Mottos successfully set up -2020-12-10 20:43:10,441 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 20:43:10,543 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 20:43:10,741 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 20:43:10,759 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 20:43:10,771 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.749 seconds (JVM running for 4.31) -2020-12-10 20:43:30,619 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 20:43:30,622 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:43:30,627 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 20:43:30,637 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 20:43:32,548 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 21449 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 20:43:32,550 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 20:43:32,618 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 20:43:32,618 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 20:43:32,984 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 20:43:33,034 INFO [restartedMain] Finished Spring Data repository scanning in 44ms. Found 6 JPA repository interfaces. -2020-12-10 20:43:33,659 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 20:43:33,667 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 20:43:33,668 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 20:43:33,668 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 20:43:33,721 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 20:43:33,722 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1104 ms -2020-12-10 20:43:33,874 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 20:43:33,905 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 20:43:33,987 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 20:43:34,049 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 20:43:34,387 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 20:43:34,407 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 20:43:35,060 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 20:43:35,066 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:43:35,078 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 20:43:35,462 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=false addingPhase=false -2020-12-10 20:43:35,607 INFO [restartedMain] Mottos successfully set up -2020-12-10 20:43:35,643 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 20:43:35,734 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 20:43:35,908 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 20:43:35,922 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 20:43:35,931 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.718 seconds (JVM running for 4.246) -2020-12-10 20:45:07,838 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 20:45:07,841 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:45:07,845 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 20:45:07,859 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 20:45:09,890 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 21612 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 20:45:09,893 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 20:45:09,954 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 20:45:09,955 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 20:45:10,341 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 20:45:10,395 INFO [restartedMain] Finished Spring Data repository scanning in 48ms. Found 6 JPA repository interfaces. -2020-12-10 20:45:11,045 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 20:45:11,055 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 20:45:11,055 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 20:45:11,056 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 20:45:11,114 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 20:45:11,114 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1159 ms -2020-12-10 20:45:11,287 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 20:45:11,321 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 20:45:11,409 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 20:45:11,477 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 20:45:11,845 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 20:45:11,873 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 20:45:12,507 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 20:45:12,516 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:45:12,530 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 20:45:12,910 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=false addingPhase=false -2020-12-10 20:45:13,069 INFO [restartedMain] Mottos successfully set up -2020-12-10 20:45:13,106 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 20:45:13,201 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 20:45:13,385 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 20:45:13,399 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 20:45:13,412 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.885 seconds (JVM running for 4.452) -2020-12-10 20:52:38,685 INFO [Thread-4] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 20:52:38,688 INFO [Thread-4] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:52:38,698 INFO [Thread-4] HikariPool-1 - Shutdown initiated... -2020-12-10 20:52:38,713 INFO [Thread-4] HikariPool-1 - Shutdown completed. -2020-12-10 20:52:38,797 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 21612 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 20:52:38,797 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 20:52:38,958 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 20:52:38,978 INFO [restartedMain] Finished Spring Data repository scanning in 19ms. Found 6 JPA repository interfaces. -2020-12-10 20:52:39,133 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 20:52:39,134 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 20:52:39,135 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 20:52:39,135 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 20:52:39,147 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 20:52:39,147 INFO [restartedMain] Root WebApplicationContext: initialization completed in 346 ms -2020-12-10 20:52:39,207 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 20:52:39,212 INFO [restartedMain] HikariPool-2 - Starting... -2020-12-10 20:52:39,301 INFO [restartedMain] HikariPool-2 - Start completed. -2020-12-10 20:52:39,305 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 20:52:39,564 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 20:52:39,565 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:52:39,571 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 20:52:39,576 WARN [restartedMain] Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'votingController': Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'votingPhase' in value "${votingPhase}" -2020-12-10 20:52:39,577 INFO [restartedMain] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:52:39,578 INFO [restartedMain] HikariPool-2 - Shutdown initiated... -2020-12-10 20:52:39,610 INFO [restartedMain] HikariPool-2 - Shutdown completed. -2020-12-10 20:52:39,611 INFO [restartedMain] Stopping service [Tomcat] -2020-12-10 20:52:39,618 INFO [restartedMain] - -Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. -2020-12-10 20:52:39,625 ERROR [restartedMain] Application run failed -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'votingController': Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'votingPhase' in value "${votingPhase}" - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:405) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1420) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:593) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:516) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:324) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:322) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:202) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:897) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:879) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:551) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:143) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:758) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:750) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:397) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:315) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1237) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226) - at com.github.cato447.AbizeitungVotingSystem.AbizeitungVotingSystemApplication.main(AbizeitungVotingSystemApplication.java:15) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:566) - at org.springframework.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) -Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder 'votingPhase' in value "${votingPhase}" - at org.springframework.util.PropertyPlaceholderHelper.parseStringValue(PropertyPlaceholderHelper.java:178) - at org.springframework.util.PropertyPlaceholderHelper.replacePlaceholders(PropertyPlaceholderHelper.java:124) - at org.springframework.core.env.AbstractPropertyResolver.doResolvePlaceholders(AbstractPropertyResolver.java:239) - at org.springframework.core.env.AbstractPropertyResolver.resolveRequiredPlaceholders(AbstractPropertyResolver.java:210) - at org.springframework.context.support.PropertySourcesPlaceholderConfigurer.lambda$processProperties$0(PropertySourcesPlaceholderConfigurer.java:175) - at org.springframework.beans.factory.support.AbstractBeanFactory.resolveEmbeddedValue(AbstractBeanFactory.java:918) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1248) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1227) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:640) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:130) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:399) - ... 23 common frames omitted -2020-12-10 20:52:39,978 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 22178 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 20:52:39,982 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 20:52:40,054 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 20:52:40,055 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 20:52:40,441 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 20:52:40,490 INFO [restartedMain] Finished Spring Data repository scanning in 42ms. Found 6 JPA repository interfaces. -2020-12-10 20:52:41,112 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 20:52:41,120 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 20:52:41,121 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 20:52:41,122 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 20:52:41,182 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 20:52:41,182 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1127 ms -2020-12-10 20:52:41,343 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 20:52:41,384 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 20:52:41,466 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 20:52:41,531 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 20:52:41,883 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 20:52:41,905 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 20:52:42,485 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 20:52:42,493 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:52:42,504 WARN [restartedMain] Unable to start LiveReload server -2020-12-10 20:52:42,509 WARN [restartedMain] Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'votingController': Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'votingPhase' in value "${votingPhase}" -2020-12-10 20:52:42,509 INFO [restartedMain] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:52:42,513 INFO [restartedMain] HikariPool-1 - Shutdown initiated... -2020-12-10 20:52:42,528 INFO [restartedMain] HikariPool-1 - Shutdown completed. -2020-12-10 20:52:42,531 INFO [restartedMain] Stopping service [Tomcat] -2020-12-10 20:52:42,544 INFO [restartedMain] - -Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. -2020-12-10 20:52:42,547 ERROR [restartedMain] Application run failed -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'votingController': Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'votingPhase' in value "${votingPhase}" - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:405) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1420) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:593) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:516) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:324) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:322) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:202) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:897) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:879) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:551) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:143) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:758) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:750) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:397) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:315) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1237) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226) - at com.github.cato447.AbizeitungVotingSystem.AbizeitungVotingSystemApplication.main(AbizeitungVotingSystemApplication.java:15) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:566) - at org.springframework.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) -Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder 'votingPhase' in value "${votingPhase}" - at org.springframework.util.PropertyPlaceholderHelper.parseStringValue(PropertyPlaceholderHelper.java:178) - at org.springframework.util.PropertyPlaceholderHelper.replacePlaceholders(PropertyPlaceholderHelper.java:124) - at org.springframework.core.env.AbstractPropertyResolver.doResolvePlaceholders(AbstractPropertyResolver.java:239) - at org.springframework.core.env.AbstractPropertyResolver.resolveRequiredPlaceholders(AbstractPropertyResolver.java:210) - at org.springframework.context.support.PropertySourcesPlaceholderConfigurer.lambda$processProperties$0(PropertySourcesPlaceholderConfigurer.java:175) - at org.springframework.beans.factory.support.AbstractBeanFactory.resolveEmbeddedValue(AbstractBeanFactory.java:918) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1248) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1227) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:640) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:130) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:399) - ... 23 common frames omitted -2020-12-10 20:54:53,304 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 21612 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 20:54:53,304 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 20:54:53,418 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 20:54:53,438 INFO [restartedMain] Finished Spring Data repository scanning in 19ms. Found 6 JPA repository interfaces. -2020-12-10 20:54:53,564 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 22335 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 20:54:53,571 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 20:54:53,579 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 20:54:53,581 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 20:54:53,582 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 20:54:53,583 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 20:54:53,593 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 20:54:53,594 INFO [restartedMain] Root WebApplicationContext: initialization completed in 287 ms -2020-12-10 20:54:53,633 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 20:54:53,635 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 20:54:53,641 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 20:54:53,647 INFO [restartedMain] HikariPool-3 - Starting... -2020-12-10 20:54:53,691 INFO [restartedMain] HikariPool-3 - Start completed. -2020-12-10 20:54:53,693 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 20:54:53,821 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 20:54:53,822 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:54:53,826 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 20:54:53,961 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=false addingPhase=true -2020-12-10 20:54:53,992 INFO [restartedMain] Mottos successfully set up -2020-12-10 20:54:54,012 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 20:54:54,048 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 20:54:54,110 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 20:54:54,127 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 20:54:54,131 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 0.847 seconds (JVM running for 585.171) -2020-12-10 20:54:54,133 INFO [restartedMain] Condition evaluation unchanged -2020-12-10 20:54:54,159 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 20:54:54,213 INFO [restartedMain] Finished Spring Data repository scanning in 48ms. Found 6 JPA repository interfaces. -2020-12-10 20:54:54,798 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 20:54:54,808 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 20:54:54,809 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 20:54:54,809 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 20:54:54,864 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 20:54:54,864 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1228 ms -2020-12-10 20:54:55,036 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 20:54:55,074 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 20:54:55,156 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 20:54:55,219 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 20:54:55,547 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 20:54:55,567 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 20:54:56,161 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 20:54:56,167 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:54:56,177 WARN [restartedMain] Unable to start LiveReload server -2020-12-10 20:54:56,560 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=false addingPhase=true -2020-12-10 20:54:56,712 INFO [restartedMain] Mottos successfully set up -2020-12-10 20:54:56,756 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 20:54:56,860 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 20:54:57,037 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 20:54:57,041 WARN [restartedMain] Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8000 is already in use -2020-12-10 20:54:57,042 INFO [restartedMain] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 20:54:57,043 INFO [restartedMain] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:54:57,046 INFO [restartedMain] HikariPool-1 - Shutdown initiated... -2020-12-10 20:54:57,060 INFO [restartedMain] HikariPool-1 - Shutdown completed. -2020-12-10 20:54:57,063 INFO [restartedMain] Pausing ProtocolHandler ["http-nio-8000"] -2020-12-10 20:54:57,063 INFO [restartedMain] Stopping service [Tomcat] -2020-12-10 20:54:57,068 INFO [restartedMain] Stopping ProtocolHandler ["http-nio-8000"] -2020-12-10 20:54:57,069 INFO [restartedMain] Destroying ProtocolHandler ["http-nio-8000"] -2020-12-10 20:54:57,076 INFO [restartedMain] - -Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. -2020-12-10 20:54:57,078 ERROR [restartedMain] - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8000 was already in use. - -Action: - -Identify and stop the process that's listening on port 8000 or configure this application to listen on another port. - -2020-12-10 20:55:14,337 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 20:55:14,339 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:55:14,340 INFO [SpringContextShutdownHook] HikariPool-3 - Shutdown initiated... -2020-12-10 20:55:14,348 INFO [SpringContextShutdownHook] HikariPool-3 - Shutdown completed. -2020-12-10 20:55:17,792 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 22477 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 20:55:17,795 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 20:55:17,860 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 20:55:17,861 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 20:55:18,303 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 20:55:18,367 INFO [restartedMain] Finished Spring Data repository scanning in 58ms. Found 6 JPA repository interfaces. -2020-12-10 20:55:19,067 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 20:55:19,077 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 20:55:19,078 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 20:55:19,078 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 20:55:19,145 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 20:55:19,145 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1281 ms -2020-12-10 20:55:19,337 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 20:55:19,381 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 20:55:19,486 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 20:55:19,550 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 20:55:19,953 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 20:55:19,981 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 20:55:20,663 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 20:55:20,672 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:55:20,686 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 20:55:21,184 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=false addingPhase=true -2020-12-10 20:55:21,326 INFO [restartedMain] Mottos successfully set up -2020-12-10 20:55:21,365 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 20:55:21,463 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 20:55:21,688 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 20:55:21,706 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 20:55:21,719 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.306 seconds (JVM running for 4.996) -2020-12-10 20:55:46,689 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 20:55:46,689 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 20:55:46,694 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms -2020-12-10 20:55:49,461 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-10 20:55:49,484 WARN [http-nio-8000-exec-4] no code -2020-12-10 20:56:01,915 WARN [http-nio-8000-exec-6] matched -2020-12-10 20:56:13,517 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 20:56:13,519 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:56:13,524 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 20:56:13,534 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 20:56:16,800 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 22775 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 20:56:16,802 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 20:56:16,861 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 20:56:16,861 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 20:56:17,277 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 20:56:17,340 INFO [restartedMain] Finished Spring Data repository scanning in 56ms. Found 6 JPA repository interfaces. -2020-12-10 20:56:18,055 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 20:56:18,064 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 20:56:18,065 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 20:56:18,065 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 20:56:18,126 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 20:56:18,127 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1266 ms -2020-12-10 20:56:18,324 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 20:56:18,362 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 20:56:18,464 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 20:56:18,539 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 20:56:18,935 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 20:56:18,957 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 20:56:19,603 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 20:56:19,611 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:56:19,624 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 20:56:20,071 INFO [restartedMain] Program started with arguments: votingPhase=true mottoVoting=false addingPhase=false -2020-12-10 20:56:20,223 INFO [restartedMain] Mottos successfully set up -2020-12-10 20:56:20,294 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 20:56:20,444 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 20:56:20,671 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 20:56:20,692 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 20:56:20,706 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.29 seconds (JVM running for 4.895) -2020-12-10 20:56:28,249 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 20:56:28,250 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 20:56:28,257 INFO [http-nio-8000-exec-1] Completed initialization in 7 ms -2020-12-10 20:56:30,589 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-10 20:56:30,612 WARN [http-nio-8000-exec-3] no code -2020-12-10 20:57:14,975 WARN [http-nio-8000-exec-5] matched -2020-12-10 20:58:12,485 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 20:58:12,487 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:58:12,493 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 20:58:12,502 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 20:58:15,665 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 23029 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 20:58:15,668 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 20:58:15,729 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 20:58:15,730 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 20:58:16,133 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 20:58:16,188 INFO [restartedMain] Finished Spring Data repository scanning in 49ms. Found 6 JPA repository interfaces. -2020-12-10 20:58:16,912 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 20:58:16,928 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 20:58:16,929 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 20:58:16,929 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 20:58:16,993 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 20:58:16,993 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1263 ms -2020-12-10 20:58:17,186 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 20:58:17,225 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 20:58:17,331 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 20:58:17,400 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 20:58:17,773 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 20:58:17,795 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 20:58:18,435 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 20:58:18,444 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:58:18,458 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 20:58:18,857 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=true addingPhase=false -2020-12-10 20:58:19,009 INFO [restartedMain] Mottos successfully set up -2020-12-10 20:58:19,052 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 20:58:19,165 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 20:58:19,373 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 20:58:19,396 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 20:58:19,409 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.114 seconds (JVM running for 4.731) -2020-12-10 20:58:29,419 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 20:58:29,420 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 20:58:29,425 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms -2020-12-10 20:58:31,682 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-10 20:58:31,700 WARN [http-nio-8000-exec-4] no code -2020-12-10 20:58:44,364 WARN [http-nio-8000-exec-6] matched -2020-12-10 20:59:59,937 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 20:59:59,939 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 20:59:59,942 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 20:59:59,952 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 21:00:03,305 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 23187 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 21:00:03,308 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 21:00:03,371 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 21:00:03,371 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 21:00:03,808 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 21:00:03,867 INFO [restartedMain] Finished Spring Data repository scanning in 51ms. Found 6 JPA repository interfaces. -2020-12-10 21:00:04,569 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 21:00:04,578 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 21:00:04,579 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 21:00:04,579 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 21:00:04,639 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 21:00:04,639 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1267 ms -2020-12-10 21:00:04,816 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 21:00:04,853 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 21:00:04,944 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 21:00:05,034 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 21:00:05,391 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 21:00:05,416 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 21:00:06,142 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 21:00:06,148 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 21:00:06,168 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 21:00:06,610 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=true addingPhase=false -2020-12-10 21:00:06,764 INFO [restartedMain] Mottos successfully set up -2020-12-10 21:00:06,803 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 21:00:06,919 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 21:00:07,138 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 21:00:07,169 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 21:00:07,180 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.245 seconds (JVM running for 4.848) -2020-12-10 21:00:08,516 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 21:00:08,517 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 21:00:08,524 INFO [http-nio-8000-exec-1] Completed initialization in 7 ms -2020-12-10 21:00:15,254 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-10 21:00:15,275 WARN [http-nio-8000-exec-4] no code -2020-12-10 21:00:53,186 WARN [http-nio-8000-exec-6] matched -2020-12-10 21:00:53,192 ERROR [http-nio-8000-exec-6] [THYMELEAF][http-nio-8000-exec-6] Exception processing template "mottoVoting.html": Error resolving template [mottoVoting.html], template might not exist or might not be accessible by any of the configured Template Resolvers -org.thymeleaf.exceptions.TemplateInputException: Error resolving template [mottoVoting.html], template might not exist or might not be accessible by any of the configured Template Resolvers - at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-10 21:00:53,193 ERROR [http-nio-8000-exec-6] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: Error resolving template [mottoVoting.html], template might not exist or might not be accessible by any of the configured Template Resolvers] with root cause -org.thymeleaf.exceptions.TemplateInputException: Error resolving template [mottoVoting.html], template might not exist or might not be accessible by any of the configured Template Resolvers - at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-10 21:01:24,374 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de -2020-12-10 21:01:24,379 WARN [http-nio-8000-exec-10] no code -2020-12-10 21:01:38,655 WARN [http-nio-8000-exec-2] matched -2020-12-10 21:01:38,661 ERROR [http-nio-8000-exec-2] [THYMELEAF][http-nio-8000-exec-2] Exception processing template "mottoVoting.html": Error resolving template [mottoVoting.html], template might not exist or might not be accessible by any of the configured Template Resolvers -org.thymeleaf.exceptions.TemplateInputException: Error resolving template [mottoVoting.html], template might not exist or might not be accessible by any of the configured Template Resolvers - at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-10 21:01:38,662 ERROR [http-nio-8000-exec-2] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: Error resolving template [mottoVoting.html], template might not exist or might not be accessible by any of the configured Template Resolvers] with root cause -org.thymeleaf.exceptions.TemplateInputException: Error resolving template [mottoVoting.html], template might not exist or might not be accessible by any of the configured Template Resolvers - at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-10 21:05:55,426 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 21:05:55,429 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 21:05:55,434 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 21:05:55,449 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 21:05:57,956 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 23698 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 21:05:57,960 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 21:05:58,018 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 21:05:58,019 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 21:05:58,429 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 21:05:58,499 INFO [restartedMain] Finished Spring Data repository scanning in 61ms. Found 6 JPA repository interfaces. -2020-12-10 21:05:59,274 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 21:05:59,284 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 21:05:59,284 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 21:05:59,284 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 21:05:59,348 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 21:05:59,348 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1328 ms -2020-12-10 21:05:59,564 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 21:05:59,599 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 21:05:59,684 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 21:05:59,747 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 21:06:00,104 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 21:06:00,127 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 21:06:00,811 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 21:06:00,818 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 21:06:00,831 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 21:06:01,251 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=true addingPhase=false -2020-12-10 21:06:01,471 INFO [restartedMain] Mottos successfully set up -2020-12-10 21:06:01,538 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 21:06:01,666 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 21:06:01,862 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 21:06:01,879 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 21:06:01,891 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.28 seconds (JVM running for 4.936) -2020-12-10 21:06:05,910 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 21:06:05,911 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 21:06:05,919 INFO [http-nio-8000-exec-1] Completed initialization in 8 ms -2020-12-10 21:06:08,471 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-10 21:06:08,492 WARN [http-nio-8000-exec-3] no code -2020-12-10 21:06:29,834 WARN [http-nio-8000-exec-6] matched -2020-12-10 21:09:14,576 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 21:09:14,580 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 21:09:14,584 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 21:09:14,595 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 21:09:16,824 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 24214 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 21:09:16,827 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 21:09:16,895 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 21:09:16,896 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 21:09:17,332 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 21:09:17,393 INFO [restartedMain] Finished Spring Data repository scanning in 54ms. Found 6 JPA repository interfaces. -2020-12-10 21:09:18,108 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 21:09:18,118 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 21:09:18,118 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 21:09:18,119 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 21:09:18,179 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 21:09:18,179 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1283 ms -2020-12-10 21:09:18,381 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 21:09:18,420 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 21:09:18,514 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 21:09:18,592 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 21:09:19,016 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 21:09:19,038 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 21:09:19,689 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 21:09:19,699 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 21:09:19,717 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 21:09:20,131 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=true addingPhase=false -2020-12-10 21:09:20,327 INFO [restartedMain] Mottos successfully set up -2020-12-10 21:09:20,377 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 21:09:20,482 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 21:09:20,697 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 21:09:20,724 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 21:09:20,735 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.309 seconds (JVM running for 4.893) -2020-12-10 21:09:38,291 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 21:09:38,292 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 21:09:38,300 INFO [http-nio-8000-exec-1] Completed initialization in 8 ms -2020-12-10 21:09:38,351 WARN [http-nio-8000-exec-1] wrong -2020-12-10 21:09:46,425 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de -2020-12-10 21:09:46,432 WARN [http-nio-8000-exec-5] no code -2020-12-10 21:09:57,301 WARN [http-nio-8000-exec-7] matched -2020-12-10 21:09:59,771 ERROR [http-nio-8000-exec-9] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NumberFormatException: For input string: ""] with root cause -java.lang.NumberFormatException: For input string: "" - at java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) - at java.base/java.lang.Long.parseLong(Long.java:702) - at java.base/java.lang.Long.valueOf(Long.java:1144) - at com.github.cato447.AbizeitungVotingSystem.table.TableAction.voteFor(TableAction.java:73) - at com.github.cato447.AbizeitungVotingSystem.controller.VotingController.ProcessVote(VotingController.java:229) +2020-12-17 00:01:18,835 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2020-12-17 00:01:18,839 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-17 00:01:40,081 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de +2020-12-17 00:01:40,084 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-17 00:02:04,294 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de +2020-12-17 00:02:04,297 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-17 00:05:34,484 INFO [Thread-4] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 00:05:34,486 INFO [Thread-4] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 00:05:34,491 INFO [Thread-4] HikariPool-1 - Shutdown initiated... +2020-12-17 00:05:34,498 INFO [Thread-4] HikariPool-1 - Shutdown completed. +2020-12-17 00:05:34,584 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 29783 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 00:05:34,585 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 00:05:34,704 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 00:05:34,721 INFO [restartedMain] Finished Spring Data repository scanning in 16ms. Found 6 JPA repository interfaces. +2020-12-17 00:05:34,874 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 00:05:34,876 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 00:05:34,877 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 00:05:34,877 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 00:05:34,890 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 00:05:34,891 INFO [restartedMain] Root WebApplicationContext: initialization completed in 303 ms +2020-12-17 00:05:34,946 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 00:05:34,953 INFO [restartedMain] HikariPool-2 - Starting... +2020-12-17 00:05:34,979 INFO [restartedMain] HikariPool-2 - Start completed. +2020-12-17 00:05:34,980 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 00:05:35,131 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 00:05:35,132 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 00:05:35,138 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 00:05:35,300 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-17 00:05:35,353 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 00:05:35,390 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 00:05:35,452 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 00:05:35,462 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 00:05:35,468 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 0.91 seconds (JVM running for 3402.811) +2020-12-17 00:05:35,472 INFO [restartedMain] Condition evaluation unchanged +2020-12-17 00:05:42,714 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-17 00:05:42,715 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-17 00:05:42,720 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms +2020-12-17 00:05:42,732 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de +2020-12-17 00:05:42,738 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-17 00:05:51,031 WARN [http-nio-8000-exec-5] alba.bussmann@adolfinum.de +2020-12-17 00:05:51,038 ERROR [http-nio-8000-exec-5] alba.bussmann@adolfinum.de is not allowed to vote +2020-12-17 00:06:06,333 WARN [http-nio-8000-exec-7] alba.bussmann@adolfinum.de +2020-12-17 00:06:06,337 ERROR [http-nio-8000-exec-7] alba.bussmann@adolfinum.de is not allowed to vote +2020-12-17 00:06:11,806 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 00:06:11,807 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 00:06:11,808 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown initiated... +2020-12-17 00:06:11,818 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown completed. +2020-12-17 00:06:14,001 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 35624 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 00:06:14,004 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 00:06:14,061 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-17 00:06:14,061 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-17 00:06:14,484 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 00:06:14,534 INFO [restartedMain] Finished Spring Data repository scanning in 42ms. Found 6 JPA repository interfaces. +2020-12-17 00:06:15,246 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 00:06:15,257 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 00:06:15,257 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 00:06:15,258 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 00:06:15,319 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 00:06:15,320 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1258 ms +2020-12-17 00:06:15,506 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 00:06:15,541 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-17 00:06:15,628 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-17 00:06:15,691 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-17 00:06:16,046 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-17 00:06:16,068 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 00:06:16,690 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 00:06:16,700 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 00:06:16,711 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 00:06:17,108 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-17 00:06:17,302 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 00:06:17,401 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 00:06:17,585 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 00:06:17,607 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 00:06:17,623 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.002 seconds (JVM running for 4.59) +2020-12-17 00:06:18,741 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-17 00:06:18,741 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-17 00:06:18,746 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms +2020-12-17 00:06:24,441 WARN [http-nio-8000-exec-3] alba.bussmann@adolfinum.de +2020-12-17 00:06:24,456 ERROR [http-nio-8000-exec-3] alba.bussmann@adolfinum.de is not allowed to vote +2020-12-17 00:09:05,968 WARN [http-nio-8000-exec-6] alba.bussmann@adolfinum.de +2020-12-17 00:09:05,972 ERROR [http-nio-8000-exec-6] alba.bussmann@adolfinum.de is not allowed to vote +2020-12-17 00:09:12,465 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de +2020-12-17 00:09:12,468 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-17 00:10:01,436 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2020-12-17 00:11:47,109 WARN [http-nio-8000-exec-7] matched +2020-12-17 00:12:02,684 WARN [http-nio-8000-exec-9] wrong +2020-12-17 00:12:25,097 WARN [http-nio-8000-exec-1] wrong +2020-12-17 00:16:07,449 INFO [Thread-4] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 00:16:07,451 INFO [Thread-4] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 00:16:07,455 INFO [Thread-4] HikariPool-1 - Shutdown initiated... +2020-12-17 00:16:07,469 INFO [Thread-4] HikariPool-1 - Shutdown completed. +2020-12-17 00:16:07,562 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 35624 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 00:16:07,563 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 00:16:07,689 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 00:16:07,702 INFO [restartedMain] Finished Spring Data repository scanning in 12ms. Found 6 JPA repository interfaces. +2020-12-17 00:16:07,809 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 00:16:07,810 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 00:16:07,810 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 00:16:07,810 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 00:16:07,818 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 00:16:07,818 INFO [restartedMain] Root WebApplicationContext: initialization completed in 252 ms +2020-12-17 00:16:07,847 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 00:16:07,850 INFO [restartedMain] HikariPool-2 - Starting... +2020-12-17 00:16:07,880 INFO [restartedMain] HikariPool-2 - Start completed. +2020-12-17 00:16:07,880 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 00:16:07,991 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 00:16:07,992 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 00:16:07,996 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 00:16:08,147 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 00:16:08,174 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 00:16:08,239 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 00:16:08,264 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 00:16:08,284 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 0.753 seconds (JVM running for 595.25) +2020-12-17 00:16:08,288 INFO [restartedMain] Condition evaluation unchanged +2020-12-17 00:16:19,562 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 00:16:19,564 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 00:16:19,565 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown initiated... +2020-12-17 00:16:19,577 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown completed. +2020-12-17 00:16:22,818 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 36374 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 00:16:22,821 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 00:16:22,886 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-17 00:16:22,887 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-17 00:16:23,270 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 00:16:23,320 INFO [restartedMain] Finished Spring Data repository scanning in 43ms. Found 6 JPA repository interfaces. +2020-12-17 00:16:23,981 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 00:16:23,990 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 00:16:23,991 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 00:16:23,991 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 00:16:24,047 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 00:16:24,047 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1159 ms +2020-12-17 00:16:24,220 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 00:16:24,253 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-17 00:16:24,348 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-17 00:16:24,414 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-17 00:16:24,760 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-17 00:16:24,780 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 00:16:25,399 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 00:16:25,406 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 00:16:25,420 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 00:16:25,861 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-17 00:16:26,057 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 00:16:26,180 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 00:16:26,362 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 00:16:26,376 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 00:16:26,387 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.907 seconds (JVM running for 4.521) +2020-12-17 00:16:28,370 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-17 00:16:28,371 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-17 00:16:28,379 INFO [http-nio-8000-exec-1] Completed initialization in 8 ms +2020-12-17 00:16:28,408 WARN [http-nio-8000-exec-1] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required Boolean parameter 'hadCode' is not present] +2020-12-17 00:16:34,389 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de +2020-12-17 00:16:34,411 WARN [http-nio-8000-exec-5] no code +2020-12-17 00:18:15,868 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de +2020-12-17 00:18:19,379 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de +2020-12-17 00:19:25,602 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2020-12-17 00:19:45,071 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 00:19:45,074 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 00:19:45,077 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-17 00:19:45,084 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-17 00:19:47,284 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 36790 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 00:19:47,287 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 00:19:47,345 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-17 00:19:47,346 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-17 00:19:47,755 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 00:19:47,812 INFO [restartedMain] Finished Spring Data repository scanning in 50ms. Found 6 JPA repository interfaces. +2020-12-17 00:19:48,447 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 00:19:48,457 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 00:19:48,457 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 00:19:48,458 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 00:19:48,527 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 00:19:48,528 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1182 ms +2020-12-17 00:19:48,715 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 00:19:48,757 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-17 00:19:48,859 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-17 00:19:48,931 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-17 00:19:49,288 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-17 00:19:49,313 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 00:19:49,913 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 00:19:49,918 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 00:19:49,929 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 00:19:50,313 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-17 00:19:50,496 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 00:19:50,602 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 00:19:50,769 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 00:19:50,785 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 00:19:50,794 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.89 seconds (JVM running for 4.486) +2020-12-17 00:19:51,462 INFO [http-nio-8000-exec-2] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-17 00:19:51,463 INFO [http-nio-8000-exec-2] Initializing Servlet 'dispatcherServlet' +2020-12-17 00:19:51,469 INFO [http-nio-8000-exec-2] Completed initialization in 6 ms +2020-12-17 00:19:54,489 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-17 00:20:57,188 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de +2020-12-17 00:21:24,883 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de +2020-12-17 00:22:21,046 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de +2020-12-17 00:22:42,676 WARN [http-nio-8000-exec-1] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required Boolean parameter 'hadCode' is not present] +2020-12-17 00:22:51,382 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de +2020-12-17 00:22:52,911 WARN [http-nio-8000-exec-8] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required Boolean parameter 'hadCode' is not present] +2020-12-17 00:22:57,662 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de +2020-12-17 00:23:41,837 INFO [Thread-4] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 00:23:41,841 INFO [Thread-4] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 00:23:41,845 INFO [Thread-4] HikariPool-1 - Shutdown initiated... +2020-12-17 00:23:41,853 INFO [Thread-4] HikariPool-1 - Shutdown completed. +2020-12-17 00:23:41,951 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 36790 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 00:23:41,951 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 00:23:42,097 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 00:23:42,115 INFO [restartedMain] Finished Spring Data repository scanning in 17ms. Found 6 JPA repository interfaces. +2020-12-17 00:23:42,250 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 00:23:42,251 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 00:23:42,252 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 00:23:42,252 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 00:23:42,262 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 00:23:42,263 INFO [restartedMain] Root WebApplicationContext: initialization completed in 309 ms +2020-12-17 00:23:42,311 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 00:23:42,316 INFO [restartedMain] HikariPool-2 - Starting... +2020-12-17 00:23:42,363 INFO [restartedMain] HikariPool-2 - Start completed. +2020-12-17 00:23:42,363 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 00:23:42,508 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 00:23:42,509 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 00:23:42,513 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 00:23:42,689 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-17 00:23:42,750 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 00:23:42,790 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 00:23:42,864 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 00:23:42,880 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 00:23:42,885 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 0.96 seconds (JVM running for 236.577) +2020-12-17 00:23:42,888 INFO [restartedMain] Condition evaluation unchanged +2020-12-17 00:23:43,951 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-17 00:23:43,952 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-17 00:23:43,955 INFO [http-nio-8000-exec-1] Completed initialization in 3 ms +2020-12-17 00:23:43,961 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de +2020-12-17 00:23:45,594 WARN [http-nio-8000-exec-3] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required Boolean parameter 'hadCode' is not present] +2020-12-17 00:23:49,499 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de +2020-12-17 00:24:00,238 WARN [http-nio-8000-exec-9] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required Boolean parameter 'hadCode' is not present] +2020-12-17 00:24:03,345 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-17 00:24:07,861 WARN [http-nio-8000-exec-5] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required Boolean parameter 'hadCode' is not present] +2020-12-17 00:24:11,205 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de +2020-12-17 00:24:41,967 WARN [http-nio-8000-exec-1] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required Boolean parameter 'hadCode' is not present] +2020-12-17 00:24:51,078 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de +2020-12-17 00:26:19,718 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 00:26:19,720 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 00:26:19,721 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown initiated... +2020-12-17 00:26:19,734 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown completed. +2020-12-17 00:26:22,744 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 37302 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 00:26:22,748 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 00:26:22,809 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-17 00:26:22,810 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-17 00:26:23,182 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 00:26:23,233 INFO [restartedMain] Finished Spring Data repository scanning in 45ms. Found 6 JPA repository interfaces. +2020-12-17 00:26:23,953 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 00:26:23,962 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 00:26:23,963 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 00:26:23,963 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 00:26:24,036 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 00:26:24,037 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1226 ms +2020-12-17 00:26:24,200 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 00:26:24,233 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-17 00:26:24,320 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-17 00:26:24,382 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-17 00:26:24,723 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-17 00:26:24,749 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 00:26:25,376 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 00:26:25,383 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 00:26:25,395 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 00:26:25,807 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-17 00:26:25,992 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 00:26:26,091 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 00:26:26,280 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 00:26:26,298 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 00:26:26,311 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.924 seconds (JVM running for 4.487) +2020-12-17 00:26:31,957 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-17 00:26:31,958 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-17 00:26:31,966 INFO [http-nio-8000-exec-1] Completed initialization in 8 ms +2020-12-17 00:26:34,631 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-17 00:26:36,490 WARN [http-nio-8000-exec-5] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required Boolean parameter 'hadCode' is not present] +2020-12-17 00:26:39,597 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de +2020-12-17 00:26:43,180 WARN [http-nio-8000-exec-1] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required Boolean parameter 'hadCode' is not present] +2020-12-17 00:29:05,168 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 00:29:05,170 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 00:29:05,175 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-17 00:29:05,184 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-17 00:29:08,298 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 37635 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 00:29:08,302 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 00:29:08,361 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-17 00:29:08,362 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-17 00:29:08,763 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 00:29:08,818 INFO [restartedMain] Finished Spring Data repository scanning in 49ms. Found 6 JPA repository interfaces. +2020-12-17 00:29:09,471 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 00:29:09,479 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 00:29:09,480 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 00:29:09,480 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 00:29:09,539 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 00:29:09,539 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1177 ms +2020-12-17 00:29:09,710 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 00:29:09,749 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-17 00:29:09,833 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-17 00:29:09,894 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-17 00:29:10,250 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-17 00:29:10,270 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 00:29:10,866 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 00:29:10,875 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 00:29:10,888 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 00:29:11,276 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-17 00:29:11,464 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 00:29:11,562 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 00:29:11,754 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 00:29:11,776 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 00:29:11,787 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.827 seconds (JVM running for 4.416) +2020-12-17 00:29:16,043 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-17 00:29:16,044 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-17 00:29:16,053 INFO [http-nio-8000-exec-1] Completed initialization in 9 ms +2020-12-17 00:29:18,278 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2020-12-17 00:29:19,545 WARN [http-nio-8000-exec-6] wrong +2020-12-17 00:29:23,678 WARN [http-nio-8000-exec-8] wrong +2020-12-17 00:29:27,026 WARN [http-nio-8000-exec-10] wrong +2020-12-17 00:29:37,101 WARN [http-nio-8000-exec-2] wrong +2020-12-17 00:29:50,920 WARN [http-nio-8000-exec-4] wrong +2020-12-17 00:30:04,432 WARN [http-nio-8000-exec-6] wrong +2020-12-17 00:30:13,761 WARN [http-nio-8000-exec-8] wrong +2020-12-17 00:30:16,463 WARN [http-nio-8000-exec-10] wrong +2020-12-17 00:30:25,857 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de +2020-12-17 00:31:11,696 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de +2020-12-17 00:31:40,191 WARN [http-nio-8000-exec-1] matched +2020-12-17 00:31:45,431 WARN [http-nio-8000-exec-3] wrong +2020-12-17 00:33:24,206 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 00:33:24,210 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 00:33:24,235 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-17 00:33:24,251 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-17 00:33:27,338 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 37960 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 00:33:27,341 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 00:33:27,405 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-17 00:33:27,406 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-17 00:33:27,775 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 00:33:27,824 INFO [restartedMain] Finished Spring Data repository scanning in 43ms. Found 6 JPA repository interfaces. +2020-12-17 00:33:28,491 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 00:33:28,500 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 00:33:28,501 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 00:33:28,502 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 00:33:28,569 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 00:33:28,570 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1164 ms +2020-12-17 00:33:28,739 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 00:33:28,772 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-17 00:33:28,862 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-17 00:33:28,929 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-17 00:33:29,274 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-17 00:33:29,298 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 00:33:29,929 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 00:33:29,934 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 00:33:29,946 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 00:33:30,367 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-17 00:33:30,550 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 00:33:30,647 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 00:33:30,829 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 00:33:30,847 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 00:33:30,860 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.886 seconds (JVM running for 4.452) +2020-12-17 00:33:35,456 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-17 00:33:35,456 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-17 00:33:35,462 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms +2020-12-17 00:33:37,993 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-17 00:33:38,014 WARN [http-nio-8000-exec-3] no code +2020-12-17 00:33:51,894 WARN [http-nio-8000-exec-5] matched +2020-12-17 00:33:56,350 WARN [http-nio-8000-exec-8] wrong +2020-12-17 00:36:51,967 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 00:36:51,970 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 00:36:51,974 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-17 00:36:51,997 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-17 00:36:55,104 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 38218 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 00:36:55,108 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 00:36:55,181 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-17 00:36:55,182 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-17 00:36:55,623 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 00:36:55,674 INFO [restartedMain] Finished Spring Data repository scanning in 45ms. Found 6 JPA repository interfaces. +2020-12-17 00:36:56,405 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 00:36:56,418 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 00:36:56,419 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 00:36:56,419 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 00:36:56,492 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 00:36:56,492 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1310 ms +2020-12-17 00:36:56,705 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 00:36:56,741 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-17 00:36:56,833 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-17 00:36:56,912 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-17 00:36:57,294 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-17 00:36:57,314 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 00:36:57,909 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 00:36:57,916 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 00:36:57,931 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 00:36:58,340 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-17 00:36:58,558 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 00:36:58,667 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 00:36:58,873 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 00:36:58,892 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 00:36:58,901 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.137 seconds (JVM running for 4.715) +2020-12-17 00:37:04,606 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-17 00:37:04,607 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-17 00:37:04,612 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms +2020-12-17 00:37:06,894 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2020-12-17 00:37:06,913 WARN [http-nio-8000-exec-4] no code +2020-12-17 00:37:20,932 WARN [http-nio-8000-exec-6] matched +2020-12-17 00:37:23,629 WARN [http-nio-8000-exec-8] wrong +2020-12-17 00:39:09,619 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 00:39:09,622 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 00:39:09,626 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-17 00:39:09,636 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-17 00:39:12,783 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 38431 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 00:39:12,786 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 00:39:12,841 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-17 00:39:12,842 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-17 00:39:13,291 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 00:39:13,357 INFO [restartedMain] Finished Spring Data repository scanning in 60ms. Found 6 JPA repository interfaces. +2020-12-17 00:39:14,057 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 00:39:14,066 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 00:39:14,067 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 00:39:14,067 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 00:39:14,139 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 00:39:14,140 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1298 ms +2020-12-17 00:39:14,310 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 00:39:14,343 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-17 00:39:14,442 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-17 00:39:14,518 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-17 00:39:14,877 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-17 00:39:14,901 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 00:39:15,550 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 00:39:15,556 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 00:39:15,571 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 00:39:15,968 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-17 00:39:16,173 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 00:39:16,286 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 00:39:16,476 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 00:39:16,500 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 00:39:16,512 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.081 seconds (JVM running for 4.695) +2020-12-17 00:39:21,124 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-17 00:39:21,124 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-17 00:39:21,130 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms +2020-12-17 00:39:23,669 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-17 00:39:23,693 WARN [http-nio-8000-exec-3] no code +2020-12-17 00:40:08,664 WARN [http-nio-8000-exec-5] 560787 +2020-12-17 00:40:08,665 WARN [http-nio-8000-exec-5] matched +2020-12-17 00:40:15,700 WARN [http-nio-8000-exec-7] 560787 +2020-12-17 00:40:15,701 WARN [http-nio-8000-exec-7] wrong +2020-12-17 00:43:28,367 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 00:43:28,369 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 00:43:28,373 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-17 00:43:28,382 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-17 00:43:31,726 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 38742 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 00:43:31,729 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 00:43:31,784 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-17 00:43:31,785 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-17 00:43:32,202 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 00:43:32,260 INFO [restartedMain] Finished Spring Data repository scanning in 52ms. Found 6 JPA repository interfaces. +2020-12-17 00:43:33,000 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 00:43:33,010 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 00:43:33,011 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 00:43:33,012 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 00:43:33,076 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 00:43:33,076 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1291 ms +2020-12-17 00:43:33,277 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 00:43:33,321 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-17 00:43:33,412 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-17 00:43:33,491 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-17 00:43:33,850 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-17 00:43:33,875 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 00:43:34,539 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 00:43:34,547 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 00:43:34,559 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 00:43:35,026 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-17 00:43:35,233 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 00:43:35,350 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 00:43:35,526 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 00:43:35,543 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 00:43:35,555 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.215 seconds (JVM running for 4.801) +2020-12-17 00:43:40,805 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-17 00:43:40,806 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-17 00:43:40,813 INFO [http-nio-8000-exec-1] Completed initialization in 7 ms +2020-12-17 00:43:44,228 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-17 00:43:44,246 WARN [http-nio-8000-exec-3] no code +2020-12-17 00:43:56,767 WARN [http-nio-8000-exec-6] 000931 +2020-12-17 00:43:56,768 WARN [http-nio-8000-exec-6] matched +2020-12-17 00:43:59,919 WARN [http-nio-8000-exec-8] 000931 +2020-12-17 00:43:59,920 WARN [http-nio-8000-exec-8] matched +2020-12-17 00:44:05,670 WARN [http-nio-8000-exec-10] 000931 +2020-12-17 00:44:05,670 WARN [http-nio-8000-exec-10] matched +2020-12-17 00:44:12,753 WARN [http-nio-8000-exec-2] 000931 +2020-12-17 00:44:12,754 WARN [http-nio-8000-exec-2] matched +2020-12-17 00:44:38,690 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de +2020-12-17 00:44:38,694 WARN [http-nio-8000-exec-7] no code +2020-12-17 00:58:14,617 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 00:58:14,619 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 00:58:14,622 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-17 00:58:14,630 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-17 00:58:17,809 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 40900 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 00:58:17,813 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 00:58:17,878 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-17 00:58:17,879 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-17 00:58:18,303 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 00:58:18,365 INFO [restartedMain] Finished Spring Data repository scanning in 55ms. Found 6 JPA repository interfaces. +2020-12-17 00:58:19,117 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 00:58:19,133 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 00:58:19,134 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 00:58:19,134 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 00:58:19,197 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 00:58:19,197 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1318 ms +2020-12-17 00:58:19,374 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 00:58:19,411 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-17 00:58:19,501 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-17 00:58:19,571 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-17 00:58:19,924 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-17 00:58:19,949 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 00:58:20,601 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 00:58:20,608 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 00:58:20,623 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 00:58:21,104 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-17 00:58:21,343 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 00:58:21,456 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 00:58:21,668 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 00:58:21,686 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 00:58:21,695 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.262 seconds (JVM running for 4.835) +2020-12-17 00:58:27,036 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-17 00:58:27,037 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-17 00:58:27,048 INFO [http-nio-8000-exec-1] Completed initialization in 11 ms +2020-12-17 00:58:32,904 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2020-12-17 01:00:21,813 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de +2020-12-17 01:00:27,728 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de +2020-12-17 01:01:15,312 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-17 01:01:40,225 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de +2020-12-17 01:01:48,875 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de +2020-12-17 01:02:57,655 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de +2020-12-17 01:03:06,194 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de +2020-12-17 01:03:44,079 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de +2020-12-17 01:04:01,563 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de +2020-12-17 01:05:37,837 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2020-12-17 01:06:05,787 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de +2020-12-17 01:06:22,808 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de +2020-12-17 01:07:10,174 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de +2020-12-17 01:07:27,311 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de +2020-12-17 01:07:51,629 WARN [http-nio-8000-exec-7] +2020-12-17 01:07:51,630 WARN [http-nio-8000-exec-7] wrong +2020-12-17 01:07:54,817 WARN [http-nio-8000-exec-9] +2020-12-17 01:07:54,818 WARN [http-nio-8000-exec-9] wrong +2020-12-17 01:07:55,654 WARN [http-nio-8000-exec-1] +2020-12-17 01:07:55,654 WARN [http-nio-8000-exec-1] wrong +2020-12-17 01:07:56,331 WARN [http-nio-8000-exec-3] +2020-12-17 01:07:56,331 WARN [http-nio-8000-exec-3] wrong +2020-12-17 01:07:56,984 WARN [http-nio-8000-exec-5] +2020-12-17 01:07:56,985 WARN [http-nio-8000-exec-5] wrong +2020-12-17 01:08:00,892 WARN [http-nio-8000-exec-7] +2020-12-17 01:08:00,892 WARN [http-nio-8000-exec-7] wrong +2020-12-17 01:08:17,354 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 01:08:17,357 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 01:08:17,362 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-17 01:08:17,372 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-17 01:08:19,641 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 42201 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 01:08:19,644 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 01:08:19,712 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-17 01:08:19,712 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-17 01:08:20,158 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 01:08:20,226 INFO [restartedMain] Finished Spring Data repository scanning in 58ms. Found 6 JPA repository interfaces. +2020-12-17 01:08:20,936 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 01:08:20,946 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 01:08:20,946 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 01:08:20,947 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 01:08:21,021 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 01:08:21,022 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1309 ms +2020-12-17 01:08:21,218 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 01:08:21,253 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-17 01:08:21,358 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-17 01:08:21,430 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-17 01:08:21,855 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-17 01:08:21,879 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 01:08:22,563 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 01:08:22,569 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 01:08:22,582 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 01:08:23,067 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-17 01:08:23,314 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 01:08:23,426 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 01:08:23,652 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 01:08:23,690 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 01:08:23,701 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.446 seconds (JVM running for 5.08) +2020-12-17 01:08:29,110 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-17 01:08:29,111 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-17 01:08:29,119 INFO [http-nio-8000-exec-1] Completed initialization in 8 ms +2020-12-17 01:08:32,005 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2020-12-17 01:09:11,341 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de +2020-12-17 01:09:39,590 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de +2020-12-17 01:10:12,411 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de +2020-12-17 01:10:56,040 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-17 01:11:14,442 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de +2020-12-17 01:12:54,537 WARN [http-nio-8000-exec-1] 151308 +2020-12-17 01:12:54,538 WARN [http-nio-8000-exec-1] matched +2020-12-17 01:12:59,210 WARN [http-nio-8000-exec-4] 151308 +2020-12-17 01:12:59,210 WARN [http-nio-8000-exec-4] matched +2020-12-17 01:13:08,701 WARN [http-nio-8000-exec-8] 151308 +2020-12-17 01:13:08,702 WARN [http-nio-8000-exec-8] matched +2020-12-17 01:13:50,560 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de +2020-12-17 01:34:00,486 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 01:34:00,489 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 01:34:00,493 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-17 01:34:00,503 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-17 01:34:03,300 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 43280 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 01:34:03,303 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 01:34:03,379 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-17 01:34:03,380 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-17 01:34:03,781 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 01:34:03,842 INFO [restartedMain] Finished Spring Data repository scanning in 52ms. Found 6 JPA repository interfaces. +2020-12-17 01:34:04,515 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 01:34:04,527 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 01:34:04,528 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 01:34:04,528 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 01:34:04,613 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 01:34:04,613 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1233 ms +2020-12-17 01:34:04,805 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 01:34:04,839 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-17 01:34:04,937 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-17 01:34:05,009 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-17 01:34:05,364 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-17 01:34:05,385 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 01:34:06,036 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 01:34:06,042 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 01:34:06,055 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 01:34:06,493 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-17 01:34:06,744 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 01:34:06,867 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 01:34:07,067 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 01:34:07,084 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 01:34:07,097 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.161 seconds (JVM running for 4.816) +2020-12-17 01:34:30,968 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-17 01:34:30,969 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-17 01:34:30,980 INFO [http-nio-8000-exec-1] Completed initialization in 11 ms +2020-12-17 01:34:33,530 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2020-12-17 01:34:33,556 WARN [http-nio-8000-exec-4] no code +2020-12-17 01:35:02,444 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 01:35:02,447 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 01:35:02,451 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-17 01:35:02,461 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-17 01:35:05,295 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 43517 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 01:35:05,299 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 01:35:05,364 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-17 01:35:05,365 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-17 01:35:05,738 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 01:35:05,798 INFO [restartedMain] Finished Spring Data repository scanning in 55ms. Found 6 JPA repository interfaces. +2020-12-17 01:35:06,432 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 01:35:06,444 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 01:35:06,446 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 01:35:06,446 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 01:35:06,515 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 01:35:06,516 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1151 ms +2020-12-17 01:35:06,697 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 01:35:06,732 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-17 01:35:06,833 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-17 01:35:06,901 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-17 01:35:07,264 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-17 01:35:07,285 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 01:35:07,935 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 01:35:07,944 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 01:35:07,961 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 01:35:08,396 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-17 01:35:08,614 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 01:35:08,720 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 01:35:08,911 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 01:35:08,931 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 01:35:08,942 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.011 seconds (JVM running for 4.642) +2020-12-17 01:35:24,084 INFO [http-nio-8000-exec-2] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-17 01:35:24,085 INFO [http-nio-8000-exec-2] Initializing Servlet 'dispatcherServlet' +2020-12-17 01:35:24,090 INFO [http-nio-8000-exec-2] Completed initialization in 5 ms +2020-12-17 01:35:37,878 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de +2020-12-17 01:35:37,899 WARN [http-nio-8000-exec-1] no code +2020-12-17 01:37:12,144 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 01:37:12,148 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 01:37:12,152 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-17 01:37:12,163 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-17 01:37:15,001 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 43827 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 01:37:15,005 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 01:37:15,069 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-17 01:37:15,070 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-17 01:37:15,458 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 01:37:15,505 INFO [restartedMain] Finished Spring Data repository scanning in 41ms. Found 6 JPA repository interfaces. +2020-12-17 01:37:16,213 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 01:37:16,222 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 01:37:16,222 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 01:37:16,223 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 01:37:16,300 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 01:37:16,301 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1231 ms +2020-12-17 01:37:16,493 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 01:37:16,529 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-17 01:37:16,618 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-17 01:37:16,687 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-17 01:37:17,095 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-17 01:37:17,121 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 01:37:17,761 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 01:37:17,768 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 01:37:17,784 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 01:37:18,273 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-17 01:37:18,555 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 01:37:18,694 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 01:37:18,918 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 01:37:18,943 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 01:37:18,955 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.344 seconds (JVM running for 4.935) +2020-12-17 01:37:24,122 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-17 01:37:24,123 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-17 01:37:24,133 INFO [http-nio-8000-exec-1] Completed initialization in 10 ms +2020-12-17 01:37:26,412 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2020-12-17 01:37:26,434 WARN [http-nio-8000-exec-4] no code +2020-12-17 01:41:26,906 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 01:41:26,910 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 01:41:26,915 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-17 01:41:26,926 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-17 01:41:29,780 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 44352 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 01:41:29,783 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 01:41:29,841 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-17 01:41:29,841 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-17 01:41:30,228 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 01:41:30,277 INFO [restartedMain] Finished Spring Data repository scanning in 42ms. Found 6 JPA repository interfaces. +2020-12-17 01:41:30,916 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 01:41:30,929 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 01:41:30,930 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 01:41:30,930 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 01:41:30,997 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 01:41:30,997 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1155 ms +2020-12-17 01:41:31,201 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 01:41:31,248 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-17 01:41:31,338 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-17 01:41:31,409 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-17 01:41:31,772 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-17 01:41:31,793 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 01:41:32,436 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 01:41:32,443 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 01:41:32,455 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 01:41:32,907 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-17 01:41:33,137 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 01:41:33,257 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 01:41:33,462 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 01:41:33,482 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 01:41:33,492 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.075 seconds (JVM running for 4.678) +2020-12-17 01:41:44,257 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-17 01:41:44,258 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-17 01:41:44,269 INFO [http-nio-8000-exec-1] Completed initialization in 11 ms +2020-12-17 01:41:47,077 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2020-12-17 01:42:13,172 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 01:42:13,175 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 01:42:13,178 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-17 01:42:13,186 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-17 01:42:16,318 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 44532 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 01:42:16,320 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 01:42:16,373 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-17 01:42:16,373 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-17 01:42:16,754 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 01:42:16,811 INFO [restartedMain] Finished Spring Data repository scanning in 49ms. Found 6 JPA repository interfaces. +2020-12-17 01:42:17,520 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 01:42:17,535 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 01:42:17,535 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 01:42:17,536 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 01:42:17,601 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 01:42:17,602 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1228 ms +2020-12-17 01:42:17,782 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 01:42:17,817 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-17 01:42:17,920 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-17 01:42:17,996 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-17 01:42:18,375 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-17 01:42:18,402 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 01:42:19,113 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 01:42:19,119 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 01:42:19,138 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 01:42:19,561 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-17 01:42:19,785 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 01:42:19,902 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 01:42:20,093 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 01:42:20,107 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 01:42:20,118 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.147 seconds (JVM running for 4.776) +2020-12-17 01:42:23,177 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-17 01:42:23,178 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-17 01:42:23,187 INFO [http-nio-8000-exec-1] Completed initialization in 9 ms +2020-12-17 01:42:25,509 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-17 01:42:43,228 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de +2020-12-17 01:42:43,235 WARN [http-nio-8000-exec-5] no code +2020-12-17 01:43:02,181 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de +2020-12-17 01:43:02,187 WARN [http-nio-8000-exec-7] no code +2020-12-17 01:43:15,008 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de +2020-12-17 01:43:23,894 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de +2020-12-17 01:43:23,900 WARN [http-nio-8000-exec-1] no code +2020-12-17 01:44:21,890 WARN [http-nio-8000-exec-3] 146059 +2020-12-17 01:44:21,891 WARN [http-nio-8000-exec-3] matched +2020-12-17 01:44:25,376 WARN [http-nio-8000-exec-5] 146059 +2020-12-17 01:44:25,376 WARN [http-nio-8000-exec-5] matched +2020-12-17 01:44:33,503 WARN [http-nio-8000-exec-7] 146059 +2020-12-17 01:44:33,504 WARN [http-nio-8000-exec-7] matched +2020-12-17 01:45:33,798 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de +2020-12-17 02:25:34,204 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 02:25:34,205 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 02:25:34,209 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-17 02:25:34,224 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-17 02:25:36,549 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 46477 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 02:25:36,553 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 02:25:36,627 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-17 02:25:36,628 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-17 02:25:37,084 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 02:25:37,138 INFO [restartedMain] Finished Spring Data repository scanning in 49ms. Found 6 JPA repository interfaces. +2020-12-17 02:25:37,849 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 02:25:37,859 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 02:25:37,860 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 02:25:37,860 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 02:25:37,925 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 02:25:37,926 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1298 ms +2020-12-17 02:25:38,121 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 02:25:38,157 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-17 02:25:38,267 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-17 02:25:38,347 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-17 02:25:38,717 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-17 02:25:38,742 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 02:25:39,445 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 02:25:39,454 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 02:25:39,466 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 02:25:39,883 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-17 02:25:40,085 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 02:25:40,212 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 02:25:40,439 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 02:25:40,457 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 02:25:40,470 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.345 seconds (JVM running for 4.965) +2020-12-17 02:25:46,253 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-17 02:25:46,254 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-17 02:25:46,265 INFO [http-nio-8000-exec-1] Completed initialization in 11 ms +2020-12-17 02:25:48,999 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-17 02:25:54,148 ERROR [http-nio-8000-exec-3] simon.bussmann@adolfinum.de is not allowed to vote +2020-12-17 02:26:04,437 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de +2020-12-17 02:26:11,170 WARN [http-nio-8000-exec-9] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'name' is not present] +2020-12-17 02:26:16,756 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-17 02:29:11,268 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de +2020-12-17 02:29:50,616 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de +2020-12-17 02:30:44,302 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2020-12-17 02:31:03,190 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de +2020-12-17 02:31:33,963 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de +2020-12-17 02:32:09,168 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de +2020-12-17 02:32:37,921 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-17 02:33:06,298 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de +2020-12-17 02:33:13,096 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de +2020-12-17 02:34:10,287 WARN [http-nio-8000-exec-3] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'name' is not present] +2020-12-17 02:34:13,821 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de +2020-12-17 02:34:42,279 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 02:34:42,280 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 02:34:42,286 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-17 02:34:42,296 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-17 02:34:44,649 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 47536 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 02:34:44,651 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 02:34:44,727 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-17 02:34:44,728 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-17 02:34:45,175 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 02:34:45,230 INFO [restartedMain] Finished Spring Data repository scanning in 49ms. Found 6 JPA repository interfaces. +2020-12-17 02:34:45,967 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 02:34:45,978 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 02:34:45,979 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 02:34:45,980 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 02:34:46,054 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 02:34:46,055 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1327 ms +2020-12-17 02:34:46,245 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 02:34:46,281 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-17 02:34:46,382 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-17 02:34:46,469 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-17 02:34:46,878 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-17 02:34:46,909 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 02:34:47,596 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 02:34:47,605 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 02:34:47,620 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 02:34:48,085 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-17 02:34:48,302 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 02:34:48,448 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 02:34:48,671 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 02:34:48,690 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 02:34:48,701 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.445 seconds (JVM running for 5.068) +2020-12-17 02:34:51,118 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-17 02:34:51,119 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-17 02:34:51,128 INFO [http-nio-8000-exec-1] Completed initialization in 9 ms +2020-12-17 02:34:53,620 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-17 02:35:50,343 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de +2020-12-17 02:35:57,472 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de +2020-12-17 02:37:26,223 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2020-12-17 02:38:02,792 WARN [http-nio-8000-exec-7] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'name' is not present] +2020-12-17 02:38:09,878 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de +2020-12-17 02:38:26,575 WARN [http-nio-8000-exec-3] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'name' is not present] +2020-12-17 02:38:29,892 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de +2020-12-17 02:39:29,090 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de +2020-12-17 02:39:44,331 WARN [http-nio-8000-exec-1] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'name' is not present] +2020-12-17 02:39:47,981 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de +2020-12-17 02:40:09,202 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de +2020-12-17 02:40:26,904 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de +2020-12-17 02:44:19,690 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de +2020-12-17 02:44:48,902 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de +2020-12-17 02:45:26,568 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de +2020-12-17 02:45:56,865 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de +2020-12-17 02:46:10,887 WARN [http-nio-8000-exec-1] 146059 +2020-12-17 02:46:10,887 WARN [http-nio-8000-exec-1] wrong +2020-12-17 02:50:46,437 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 02:50:46,440 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 02:50:46,445 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-17 02:50:46,454 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-17 02:50:49,794 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 49135 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 02:50:49,799 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 02:50:49,867 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-17 02:50:49,868 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-17 02:50:50,327 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 02:50:50,385 INFO [restartedMain] Finished Spring Data repository scanning in 51ms. Found 6 JPA repository interfaces. +2020-12-17 02:50:51,087 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 02:50:51,097 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 02:50:51,098 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 02:50:51,098 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 02:50:51,160 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 02:50:51,160 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1291 ms +2020-12-17 02:50:51,321 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 02:50:51,353 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-17 02:50:51,444 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-17 02:50:51,513 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-17 02:50:51,934 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-17 02:50:51,963 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 02:50:52,646 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 02:50:52,655 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 02:50:52,670 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 02:50:53,151 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-17 02:50:53,392 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 02:50:53,516 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 02:50:53,745 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 02:50:53,766 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 02:50:53,778 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.403 seconds (JVM running for 5.036) +2020-12-17 02:51:06,752 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 02:51:06,755 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 02:51:06,759 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-17 02:51:06,771 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-17 02:51:08,961 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 49280 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 02:51:08,965 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 02:51:09,029 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-17 02:51:09,030 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-17 02:51:09,447 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 02:51:09,503 INFO [restartedMain] Finished Spring Data repository scanning in 50ms. Found 6 JPA repository interfaces. +2020-12-17 02:51:10,212 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 02:51:10,222 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 02:51:10,222 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 02:51:10,223 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 02:51:10,290 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 02:51:10,291 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1261 ms +2020-12-17 02:51:10,477 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 02:51:10,513 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-17 02:51:10,602 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-17 02:51:10,676 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-17 02:51:11,044 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-17 02:51:11,065 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 02:51:11,704 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 02:51:11,709 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 02:51:11,723 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 02:51:12,298 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-17 02:51:12,541 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 02:51:12,663 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 02:51:12,874 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 02:51:12,892 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 02:51:12,906 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.295 seconds (JVM running for 4.901) +2020-12-17 02:51:16,709 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-17 02:51:16,711 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-17 02:51:16,716 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms +2020-12-17 02:51:16,768 WARN [http-nio-8000-exec-1] 146059 +2020-12-17 02:51:16,768 WARN [http-nio-8000-exec-1] wrong +2020-12-17 02:51:19,286 WARN [http-nio-8000-exec-4] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'name' is not present] +2020-12-17 02:52:05,865 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 02:52:05,868 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 02:52:05,872 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-17 02:52:05,881 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-17 02:52:08,078 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 49395 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 02:52:08,080 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 02:52:08,138 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-17 02:52:08,138 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-17 02:52:08,574 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 02:52:08,630 INFO [restartedMain] Finished Spring Data repository scanning in 48ms. Found 6 JPA repository interfaces. +2020-12-17 02:52:09,308 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 02:52:09,318 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 02:52:09,319 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 02:52:09,319 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 02:52:09,392 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 02:52:09,393 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1255 ms +2020-12-17 02:52:09,615 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 02:52:09,660 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-17 02:52:09,761 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-17 02:52:09,873 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-17 02:52:10,267 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-17 02:52:10,288 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 02:52:10,948 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 02:52:10,955 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 02:52:10,971 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 02:52:11,459 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-17 02:52:11,677 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 02:52:11,823 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 02:52:12,098 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 02:52:12,119 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 02:52:12,128 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.416 seconds (JVM running for 5.023) +2020-12-17 02:52:21,618 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-17 02:52:21,619 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-17 02:52:21,628 INFO [http-nio-8000-exec-1] Completed initialization in 8 ms +2020-12-17 02:52:21,664 WARN [http-nio-8000-exec-1] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'name' is not present] +2020-12-17 02:52:24,135 WARN [http-nio-8000-exec-3] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'name' is not present] +2020-12-17 02:52:27,954 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de +2020-12-17 02:52:32,182 WARN [http-nio-8000-exec-9] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'name' is not present] +2020-12-17 02:52:36,483 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-17 02:53:16,630 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de +2020-12-17 02:53:18,705 WARN [http-nio-8000-exec-7] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'name' is not present] +2020-12-17 02:54:06,884 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de +2020-12-17 02:54:13,161 ERROR [http-nio-8000-exec-9] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.mail.MailSendException: Mail server connection failed; nested exception is javax.mail.MessagingException: Exception reading response; + nested exception is: + java.net.SocketTimeoutException: Read timed out. Failed messages: javax.mail.MessagingException: Exception reading response; + nested exception is: + java.net.SocketTimeoutException: Read timed out; message exceptions (1) are: +Failed message 1: javax.mail.MessagingException: Exception reading response; + nested exception is: + java.net.SocketTimeoutException: Read timed out] with root cause +java.net.SocketTimeoutException: Read timed out + at java.base/java.net.SocketInputStream.socketRead0(Native Method) + at java.base/java.net.SocketInputStream.socketRead(SocketInputStream.java:115) + at java.base/java.net.SocketInputStream.read(SocketInputStream.java:168) + at java.base/java.net.SocketInputStream.read(SocketInputStream.java:140) + at com.sun.mail.util.TraceInputStream.read(TraceInputStream.java:102) + at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:252) + at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:271) + at com.sun.mail.util.LineInputStream.readLine(LineInputStream.java:100) + at com.sun.mail.smtp.SMTPTransport.readServerResponse(SMTPTransport.java:2456) + at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:2172) + at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:722) + at javax.mail.Service.connect(Service.java:342) + at org.springframework.mail.javamail.JavaMailSenderImpl.connectTransport(JavaMailSenderImpl.java:518) + at org.springframework.mail.javamail.JavaMailSenderImpl.doSend(JavaMailSenderImpl.java:437) + at org.springframework.mail.javamail.JavaMailSenderImpl.send(JavaMailSenderImpl.java:323) + at org.springframework.mail.javamail.JavaMailSenderImpl.send(JavaMailSenderImpl.java:312) + at com.github.cato447.AbizeitungVotingSystem.controller.VotingController.sendSimpleMessage(VotingController.java:105) + at com.github.cato447.AbizeitungVotingSystem.controller.VotingController.provideNewCode(VotingController.java:151) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) @@ -2429,359 +1071,34 @@ java.lang.NumberFormatException: For input string: "" at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-10 21:10:39,244 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 21:10:39,247 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 21:10:39,251 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 21:10:39,262 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 21:10:41,517 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 24390 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 21:10:41,521 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 21:10:41,584 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 21:10:41,585 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 21:10:42,004 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 21:10:42,061 INFO [restartedMain] Finished Spring Data repository scanning in 49ms. Found 6 JPA repository interfaces. -2020-12-10 21:10:42,817 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 21:10:42,828 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 21:10:42,828 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 21:10:42,829 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 21:10:42,895 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 21:10:42,895 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1310 ms -2020-12-10 21:10:43,075 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 21:10:43,110 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 21:10:43,217 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 21:10:43,310 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 21:10:43,734 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 21:10:43,757 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 21:10:44,399 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 21:10:44,404 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 21:10:44,419 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 21:10:44,913 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=true addingPhase=false -2020-12-10 21:10:45,127 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 21:10:45,269 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 21:10:45,494 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 21:10:45,515 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 21:10:45,526 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.387 seconds (JVM running for 5.022) -2020-12-10 21:10:49,117 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 21:10:49,118 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 21:10:49,127 INFO [http-nio-8000-exec-1] Completed initialization in 8 ms -2020-12-10 21:10:51,520 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-10 21:10:51,548 WARN [http-nio-8000-exec-3] no code -2020-12-10 21:11:05,210 WARN [http-nio-8000-exec-5] matched -2020-12-10 21:11:54,535 WARN [http-nio-8000-exec-7] wrong -2020-12-10 21:14:07,372 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 21:14:07,375 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 21:14:07,385 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 21:14:07,397 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 21:14:10,726 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 24709 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 21:14:10,731 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 21:14:10,804 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 21:14:10,805 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 21:14:11,239 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 21:14:11,294 INFO [restartedMain] Finished Spring Data repository scanning in 49ms. Found 6 JPA repository interfaces. -2020-12-10 21:14:12,061 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 21:14:12,072 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 21:14:12,073 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 21:14:12,073 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 21:14:12,139 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 21:14:12,139 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1334 ms -2020-12-10 21:14:12,334 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 21:14:12,369 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 21:14:12,454 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 21:14:12,524 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 21:14:12,900 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 21:14:12,920 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 21:14:13,574 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 21:14:13,582 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 21:14:13,595 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 21:14:14,055 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=true addingPhase=false -2020-12-10 21:14:14,247 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 21:14:14,356 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 21:14:14,549 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 21:14:14,570 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 21:14:14,584 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.234 seconds (JVM running for 4.861) -2020-12-10 21:14:19,115 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 21:14:19,116 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 21:14:19,125 INFO [http-nio-8000-exec-1] Completed initialization in 9 ms -2020-12-10 21:14:19,162 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-10 21:14:19,180 WARN [http-nio-8000-exec-1] no code -2020-12-10 21:14:30,562 WARN [http-nio-8000-exec-3] matched -2020-12-10 21:15:32,045 WARN [http-nio-8000-exec-6] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'code' is not present] -2020-12-10 21:15:41,293 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de -2020-12-10 21:15:41,300 WARN [http-nio-8000-exec-9] no code -2020-12-10 21:15:57,181 WARN [http-nio-8000-exec-1] matched -2020-12-10 21:16:24,410 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 21:16:24,413 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 21:16:24,418 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 21:16:24,428 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 21:16:26,657 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 25020 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 21:16:26,666 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 21:16:26,741 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 21:16:26,742 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 21:16:27,184 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 21:16:27,241 INFO [restartedMain] Finished Spring Data repository scanning in 50ms. Found 6 JPA repository interfaces. -2020-12-10 21:16:27,977 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 21:16:27,987 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 21:16:27,988 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 21:16:27,988 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 21:16:28,061 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 21:16:28,062 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1320 ms -2020-12-10 21:16:28,266 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 21:16:28,303 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 21:16:28,397 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 21:16:28,483 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 21:16:28,850 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 21:16:28,871 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 21:16:29,580 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 21:16:29,590 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 21:16:29,608 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 21:16:30,068 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=true addingPhase=false -2020-12-10 21:16:30,291 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 21:16:30,400 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 21:16:30,595 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 21:16:30,611 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 21:16:30,620 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.312 seconds (JVM running for 4.958) -2020-12-10 21:16:35,052 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 21:16:35,052 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 21:16:35,060 INFO [http-nio-8000-exec-1] Completed initialization in 7 ms -2020-12-10 21:16:37,610 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-10 21:16:37,632 WARN [http-nio-8000-exec-3] no code -2020-12-10 21:16:50,233 WARN [http-nio-8000-exec-5] matched -2020-12-10 21:17:56,284 WARN [http-nio-8000-exec-8] wrong -2020-12-10 21:18:21,065 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de -2020-12-10 21:18:21,070 WARN [http-nio-8000-exec-2] no code -2020-12-10 21:18:32,335 WARN [http-nio-8000-exec-4] matched -2020-12-10 21:36:13,367 INFO [Thread-4] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 21:36:13,370 INFO [Thread-4] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 21:36:13,375 INFO [Thread-4] HikariPool-1 - Shutdown initiated... -2020-12-10 21:36:13,393 INFO [Thread-4] HikariPool-1 - Shutdown completed. -2020-12-10 21:36:13,528 INFO [main] Neither @ContextConfiguration nor @ContextHierarchy found for test class [com.github.cato447.AbizeitungVotingSystem.AbizeitungVotingSystemApplicationTests], using SpringBootContextLoader -2020-12-10 21:36:13,530 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 25020 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 21:36:13,531 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 21:36:13,555 INFO [main] Could not detect default resource locations for test class [com.github.cato447.AbizeitungVotingSystem.AbizeitungVotingSystemApplicationTests]: no resource found for suffixes {-context.xml, Context.groovy}. -2020-12-10 21:36:13,557 INFO [main] Could not detect default configuration classes for test class [com.github.cato447.AbizeitungVotingSystem.AbizeitungVotingSystemApplicationTests]: AbizeitungVotingSystemApplicationTests does not declare any static, non-private, non-final, nested classes annotated with @Configuration. -2020-12-10 21:36:13,707 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 21:36:13,717 INFO [main] Found @SpringBootConfiguration com.github.cato447.AbizeitungVotingSystem.AbizeitungVotingSystemApplication for test class com.github.cato447.AbizeitungVotingSystem.AbizeitungVotingSystemApplicationTests -2020-12-10 21:36:13,724 INFO [restartedMain] Finished Spring Data repository scanning in 16ms. Found 6 JPA repository interfaces. -2020-12-10 21:36:13,830 INFO [main] Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener] -2020-12-10 21:36:13,846 INFO [main] Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@74960bfa, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@42721fe, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@40844aab, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@1f6c9cd8, org.springframework.test.context.support.DirtiesContextTestExecutionListener@5b619d14, org.springframework.test.context.transaction.TransactionalTestExecutionListener@66746f57, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@447a020, org.springframework.test.context.event.EventPublishingTestExecutionListener@7f36662c, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@28e8dde3, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@6d23017e, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@54dcfa5a, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@1817f1eb, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@767e20cf, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@3a3e78f] -2020-12-10 21:36:13,887 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 21:36:13,889 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 21:36:13,890 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 21:36:13,890 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 21:36:13,899 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 21:36:13,901 INFO [restartedMain] Root WebApplicationContext: initialization completed in 366 ms -2020-12-10 21:36:13,965 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 21:36:13,971 INFO [restartedMain] HikariPool-2 - Starting... -2020-12-10 21:36:14,008 INFO [restartedMain] HikariPool-2 - Start completed. -2020-12-10 21:36:14,008 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 21:36:14,182 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 21:36:14,183 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 21:36:14,194 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 21:36:14,338 INFO [main] Starting AbizeitungVotingSystemApplicationTests on bitecoding-System-Product-Name with PID 25874 (started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 21:36:14,340 INFO [main] No active profile set, falling back to default profiles: default -2020-12-10 21:36:14,412 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=true addingPhase=false -2020-12-10 21:36:14,535 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 21:36:14,592 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 21:36:14,665 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 21:36:14,679 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 21:36:14,686 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 1.215 seconds (JVM running for 1189.024) -2020-12-10 21:36:14,688 INFO [restartedMain] Condition evaluation unchanged -2020-12-10 21:36:15,006 INFO [main] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 21:36:15,074 INFO [main] Finished Spring Data repository scanning in 58ms. Found 6 JPA repository interfaces. -2020-12-10 21:36:15,761 INFO [main] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 21:36:15,794 INFO [main] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 21:36:15,881 INFO [main] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 21:36:15,960 INFO [main] HikariPool-1 - Starting... -2020-12-10 21:36:16,315 INFO [main] HikariPool-1 - Start completed. -2020-12-10 21:36:16,336 INFO [main] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 21:36:16,959 INFO [main] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 21:36:16,963 INFO [main] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 21:36:17,433 INFO [main] Program started with arguments: votingPhase=false mottoVoting=true addingPhase=false -2020-12-10 21:36:17,791 WARN [main] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 21:36:17,983 INFO [main] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 21:36:18,287 INFO [main] Started AbizeitungVotingSystemApplicationTests in 4.374 seconds (JVM running for 5.484) -2020-12-10 21:36:18,470 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 21:36:18,473 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 21:36:18,476 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 21:36:18,485 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 21:39:50,774 INFO [main] Neither @ContextConfiguration nor @ContextHierarchy found for test class [com.github.cato447.AbizeitungVotingSystem.AbizeitungVotingSystemApplicationTests], using SpringBootContextLoader -2020-12-10 21:39:50,779 INFO [main] Could not detect default resource locations for test class [com.github.cato447.AbizeitungVotingSystem.AbizeitungVotingSystemApplicationTests]: no resource found for suffixes {-context.xml, Context.groovy}. -2020-12-10 21:39:50,780 INFO [main] Could not detect default configuration classes for test class [com.github.cato447.AbizeitungVotingSystem.AbizeitungVotingSystemApplicationTests]: AbizeitungVotingSystemApplicationTests does not declare any static, non-private, non-final, nested classes annotated with @Configuration. -2020-12-10 21:39:50,873 INFO [main] Found @SpringBootConfiguration com.github.cato447.AbizeitungVotingSystem.AbizeitungVotingSystemApplication for test class com.github.cato447.AbizeitungVotingSystem.AbizeitungVotingSystemApplicationTests -2020-12-10 21:39:50,962 INFO [main] Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener] -2020-12-10 21:39:50,973 INFO [main] Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@74960bfa, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@42721fe, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@40844aab, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@1f6c9cd8, org.springframework.test.context.support.DirtiesContextTestExecutionListener@5b619d14, org.springframework.test.context.transaction.TransactionalTestExecutionListener@66746f57, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@447a020, org.springframework.test.context.event.EventPublishingTestExecutionListener@7f36662c, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@28e8dde3, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@6d23017e, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@54dcfa5a, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@1817f1eb, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@767e20cf, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@3a3e78f] -2020-12-10 21:39:51,195 INFO [main] Starting AbizeitungVotingSystemApplicationTests on bitecoding-System-Product-Name with PID 26214 (started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 21:39:51,196 INFO [main] No active profile set, falling back to default profiles: default -2020-12-10 21:39:51,479 INFO [Thread-9] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 21:39:51,485 INFO [Thread-9] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 21:39:51,491 INFO [Thread-9] HikariPool-2 - Shutdown initiated... -2020-12-10 21:39:51,507 INFO [Thread-9] HikariPool-2 - Shutdown completed. -2020-12-10 21:39:51,617 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 25020 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 21:39:51,618 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 21:39:51,763 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 21:39:51,778 INFO [main] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 21:39:51,788 INFO [restartedMain] Finished Spring Data repository scanning in 23ms. Found 6 JPA repository interfaces. -2020-12-10 21:39:51,878 INFO [main] Finished Spring Data repository scanning in 87ms. Found 6 JPA repository interfaces. -2020-12-10 21:39:51,949 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 21:39:51,950 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 21:39:51,951 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 21:39:51,951 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 21:39:51,962 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 21:39:51,963 INFO [restartedMain] Root WebApplicationContext: initialization completed in 341 ms -2020-12-10 21:39:52,014 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 21:39:52,018 INFO [restartedMain] HikariPool-3 - Starting... -2020-12-10 21:39:52,048 INFO [restartedMain] HikariPool-3 - Start completed. -2020-12-10 21:39:52,049 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 21:39:52,200 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 21:39:52,200 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 21:39:52,208 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 21:39:52,414 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=true addingPhase=false -2020-12-10 21:39:52,478 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 21:39:52,527 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 21:39:52,592 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 21:39:52,603 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 21:39:52,608 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 1.015 seconds (JVM running for 1406.947) -2020-12-10 21:39:52,612 INFO [restartedMain] Condition evaluation unchanged -2020-12-10 21:39:52,878 INFO [main] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 21:39:52,909 INFO [main] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 21:39:53,000 INFO [main] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 21:39:53,063 INFO [main] HikariPool-1 - Starting... -2020-12-10 21:39:53,393 INFO [main] HikariPool-1 - Start completed. -2020-12-10 21:39:53,419 INFO [main] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 21:39:54,073 INFO [main] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 21:39:54,080 INFO [main] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 21:39:54,544 INFO [main] Program started with arguments: votingPhase=false mottoVoting=true addingPhase=false -2020-12-10 21:39:54,879 WARN [main] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 21:39:55,087 INFO [main] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 21:39:55,382 INFO [main] Started AbizeitungVotingSystemApplicationTests in 4.376 seconds (JVM running for 5.263) -2020-12-10 21:39:55,551 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 21:39:55,553 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 21:39:55,556 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 21:39:55,565 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 22:05:12,025 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 22:05:12,027 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 22:05:12,028 INFO [SpringContextShutdownHook] HikariPool-3 - Shutdown initiated... -2020-12-10 22:05:12,039 INFO [SpringContextShutdownHook] HikariPool-3 - Shutdown completed. -2020-12-10 22:05:15,346 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 26937 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 22:05:15,350 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 22:05:15,412 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 22:05:15,412 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 22:05:15,800 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 22:05:15,851 INFO [restartedMain] Finished Spring Data repository scanning in 45ms. Found 6 JPA repository interfaces. -2020-12-10 22:05:16,589 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 22:05:16,598 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 22:05:16,599 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 22:05:16,600 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 22:05:16,662 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 22:05:16,663 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1250 ms -2020-12-10 22:05:16,833 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 22:05:16,870 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 22:05:16,959 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 22:05:17,023 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 22:05:17,392 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 22:05:17,419 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 22:05:18,046 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 22:05:18,051 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 22:05:18,062 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 22:05:18,443 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=true addingPhase=false -2020-12-10 22:05:18,670 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 22:05:18,778 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 22:05:18,969 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 22:05:18,987 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 22:05:19,002 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.034 seconds (JVM running for 4.622) -2020-12-10 22:05:30,599 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 22:05:30,600 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 22:05:30,607 INFO [http-nio-8000-exec-1] Completed initialization in 7 ms -2020-12-10 22:05:30,648 WARN [http-nio-8000-exec-1] wrong -2020-12-10 22:05:38,617 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de -2020-12-10 22:05:38,627 WARN [http-nio-8000-exec-6] no code -2020-12-10 22:05:50,537 WARN [http-nio-8000-exec-8] matched -2020-12-10 22:08:18,088 WARN [http-nio-8000-exec-1] wrong -2020-12-10 22:08:38,315 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de -2020-12-10 22:08:38,321 WARN [http-nio-8000-exec-6] no code -2020-12-10 22:08:51,100 WARN [http-nio-8000-exec-8] matched -2020-12-10 22:21:19,135 WARN [http-nio-8000-exec-1] wrong -2020-12-10 22:22:46,431 WARN [http-nio-8000-exec-3] wrong -2020-12-10 22:22:52,136 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de -2020-12-10 22:22:52,142 WARN [http-nio-8000-exec-8] no code -2020-12-10 22:23:18,677 WARN [http-nio-8000-exec-10] matched -2020-12-10 22:23:43,837 WARN [http-nio-8000-exec-2] wrong -2020-12-10 22:23:50,068 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de -2020-12-10 22:23:50,072 WARN [http-nio-8000-exec-6] no code -2020-12-10 22:24:00,350 WARN [http-nio-8000-exec-8] matched -2020-12-10 22:24:54,784 WARN [http-nio-8000-exec-10] wrong -2020-12-10 22:25:00,566 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de -2020-12-10 22:25:00,571 WARN [http-nio-8000-exec-5] no code -2020-12-10 22:25:20,829 WARN [http-nio-8000-exec-7] matched -2020-12-10 22:41:18,287 WARN [http-nio-8000-exec-6] wrong -2020-12-10 22:41:25,717 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de -2020-12-10 22:41:25,722 WARN [http-nio-8000-exec-9] no code -2020-12-10 22:41:32,228 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-10 22:41:40,858 WARN [http-nio-8000-exec-6] matched -2020-12-10 22:42:08,868 WARN [http-nio-8000-exec-8] wrong -2020-12-10 22:42:17,122 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de -2020-12-10 22:42:17,127 WARN [http-nio-8000-exec-2] no code -2020-12-10 22:42:25,127 WARN [http-nio-8000-exec-4] matched -2020-12-10 22:46:24,332 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de -2020-12-10 22:46:24,337 WARN [http-nio-8000-exec-10] no code -2020-12-10 22:46:31,725 WARN [http-nio-8000-exec-2] matched -2020-12-10 22:47:33,422 WARN [http-nio-8000-exec-5] wrong -2020-12-10 22:47:37,744 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de -2020-12-10 22:47:37,749 WARN [http-nio-8000-exec-9] no code -2020-12-10 22:47:48,023 WARN [http-nio-8000-exec-1] matched -2020-12-10 22:48:10,902 WARN [http-nio-8000-exec-3] wrong -2020-12-10 22:48:16,728 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de -2020-12-10 22:48:16,732 WARN [http-nio-8000-exec-7] no code -2020-12-10 22:48:24,312 WARN [http-nio-8000-exec-9] matched -2020-12-10 22:48:41,489 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-10 22:48:41,494 WARN [http-nio-8000-exec-3] no code -2020-12-10 22:48:53,198 WARN [http-nio-8000-exec-5] matched -2020-12-10 22:50:55,466 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-10 22:50:55,470 WARN [http-nio-8000-exec-1] no code -2020-12-10 22:51:02,740 WARN [http-nio-8000-exec-3] matched -2020-12-10 22:51:43,231 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 22:51:43,234 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 22:51:43,238 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 22:51:43,244 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 22:52:21,031 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 29260 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 22:52:21,033 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 22:52:21,080 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 22:52:21,080 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 22:52:21,438 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 22:52:21,484 INFO [restartedMain] Finished Spring Data repository scanning in 39ms. Found 6 JPA repository interfaces. -2020-12-10 22:52:22,035 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 22:52:22,044 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 22:52:22,045 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 22:52:22,045 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 22:52:22,099 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 22:52:22,099 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1019 ms -2020-12-10 22:52:22,253 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 22:52:22,287 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 22:52:22,376 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 22:52:22,441 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 22:52:22,799 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 22:52:22,819 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 22:52:23,393 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 22:52:23,401 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 22:52:23,411 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 22:52:23,764 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=true addingPhase=false -2020-12-10 22:52:23,932 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 22:52:24,021 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 22:52:24,182 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 22:52:24,198 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 22:52:24,207 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.491 seconds (JVM running for 3.999) -2020-12-10 22:52:35,932 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 22:52:35,932 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 22:52:35,939 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms -2020-12-10 22:52:39,664 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-10 22:52:39,683 WARN [http-nio-8000-exec-3] no code -2020-12-10 22:52:48,268 WARN [http-nio-8000-exec-5] matched -2020-12-10 22:52:55,937 ERROR [http-nio-8000-exec-7] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NumberFormatException: For input string: ""] with root cause -java.lang.NumberFormatException: For input string: "" - at java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) - at java.base/java.lang.Long.parseLong(Long.java:702) - at java.base/java.lang.Long.valueOf(Long.java:1144) - at com.github.cato447.AbizeitungVotingSystem.table.TableAction.voteFor(TableAction.java:73) - at com.github.cato447.AbizeitungVotingSystem.controller.VotingController.ProcessVote(VotingController.java:228) +2020-12-17 02:54:51,323 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-17 02:55:22,546 ERROR [http-nio-8000-exec-6] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.mail.MailSendException: Mail server connection failed; nested exception is javax.mail.MessagingException: Exception reading response; + nested exception is: + java.net.SocketTimeoutException: Read timed out. Failed messages: javax.mail.MessagingException: Exception reading response; + nested exception is: + java.net.SocketTimeoutException: Read timed out; message exceptions (1) are: +Failed message 1: javax.mail.MessagingException: Exception reading response; + nested exception is: + java.net.SocketTimeoutException: Read timed out] with root cause +java.net.SocketTimeoutException: Read timed out + at java.base/java.net.SocketInputStream.socketRead0(Native Method) + at java.base/java.net.SocketInputStream.socketRead(SocketInputStream.java:115) + at java.base/java.net.SocketInputStream.read(SocketInputStream.java:168) + at java.base/java.net.SocketInputStream.read(SocketInputStream.java:140) + at com.sun.mail.util.TraceInputStream.read(TraceInputStream.java:102) + at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:252) + at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:271) + at com.sun.mail.util.LineInputStream.readLine(LineInputStream.java:100) + at com.sun.mail.smtp.SMTPTransport.readServerResponse(SMTPTransport.java:2456) + at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:2172) + at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:722) + at javax.mail.Service.connect(Service.java:342) + at org.springframework.mail.javamail.JavaMailSenderImpl.connectTransport(JavaMailSenderImpl.java:518) + at org.springframework.mail.javamail.JavaMailSenderImpl.doSend(JavaMailSenderImpl.java:437) + at org.springframework.mail.javamail.JavaMailSenderImpl.send(JavaMailSenderImpl.java:323) + at org.springframework.mail.javamail.JavaMailSenderImpl.send(JavaMailSenderImpl.java:312) + at com.github.cato447.AbizeitungVotingSystem.controller.VotingController.sendSimpleMessage(VotingController.java:105) + at com.github.cato447.AbizeitungVotingSystem.controller.VotingController.provideNewCode(VotingController.java:151) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) @@ -2832,1026 +1149,159 @@ java.lang.NumberFormatException: For input string: "" at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-10 23:23:53,049 INFO [Thread-4] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 23:23:53,052 INFO [Thread-4] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 23:23:53,057 INFO [Thread-4] HikariPool-1 - Shutdown initiated... -2020-12-10 23:23:53,068 INFO [Thread-4] HikariPool-1 - Shutdown completed. -2020-12-10 23:23:53,162 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 29260 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 23:23:53,163 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 23:23:53,308 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 23:23:53,333 INFO [restartedMain] Finished Spring Data repository scanning in 23ms. Found 6 JPA repository interfaces. -2020-12-10 23:23:53,527 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 23:23:53,530 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 23:23:53,531 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 23:23:53,531 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 23:23:53,547 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 23:23:53,548 INFO [restartedMain] Root WebApplicationContext: initialization completed in 382 ms -2020-12-10 23:23:53,591 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 23:23:53,596 INFO [restartedMain] HikariPool-2 - Starting... -2020-12-10 23:23:53,616 INFO [restartedMain] HikariPool-2 - Start completed. -2020-12-10 23:23:53,617 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 23:23:53,790 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 23:23:53,791 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 23:23:53,801 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 23:23:54,000 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=true addingPhase=false -2020-12-10 23:23:54,061 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 23:23:54,101 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 23:23:54,175 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 23:23:54,191 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 23:23:54,195 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 1.061 seconds (JVM running for 1893.987) -2020-12-10 23:23:54,199 INFO [restartedMain] Condition evaluation unchanged -2020-12-10 23:23:54,272 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 23:23:54,274 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 23:23:54,277 INFO [http-nio-8000-exec-1] Completed initialization in 3 ms -2020-12-10 23:24:06,331 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de -2020-12-10 23:24:06,342 WARN [http-nio-8000-exec-6] no code -2020-12-10 23:24:19,029 WARN [http-nio-8000-exec-8] matched -2020-12-10 23:24:23,224 ERROR [http-nio-8000-exec-10] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.util.NoSuchElementException: No value present] with root cause -java.util.NoSuchElementException: No value present - at java.base/java.util.Optional.get(Optional.java:148) - at com.github.cato447.AbizeitungVotingSystem.table.TableAction.voteFor(TableAction.java:80) - at com.github.cato447.AbizeitungVotingSystem.controller.VotingController.ProcessVote(VotingController.java:239) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:566) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:878) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:792) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-10 23:25:50,226 INFO [Thread-9] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 23:25:50,229 INFO [Thread-9] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 23:25:50,230 INFO [Thread-9] HikariPool-2 - Shutdown initiated... -2020-12-10 23:25:50,237 INFO [Thread-9] HikariPool-2 - Shutdown completed. -2020-12-10 23:25:50,329 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 29260 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 23:25:50,330 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 23:25:50,457 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 23:25:50,476 INFO [restartedMain] Finished Spring Data repository scanning in 18ms. Found 6 JPA repository interfaces. -2020-12-10 23:25:50,612 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 23:25:50,613 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 23:25:50,614 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 23:25:50,614 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 23:25:50,624 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 23:25:50,624 INFO [restartedMain] Root WebApplicationContext: initialization completed in 290 ms -2020-12-10 23:25:50,657 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 23:25:50,663 INFO [restartedMain] HikariPool-3 - Starting... -2020-12-10 23:25:50,682 INFO [restartedMain] HikariPool-3 - Start completed. -2020-12-10 23:25:50,683 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 23:25:50,824 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 23:25:50,824 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 23:25:50,830 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 23:25:50,997 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=true addingPhase=false -2020-12-10 23:25:51,054 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 23:25:51,091 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 23:25:51,140 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 23:25:51,156 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 23:25:51,161 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 0.871 seconds (JVM running for 2010.953) -2020-12-10 23:25:51,164 INFO [restartedMain] Condition evaluation unchanged -2020-12-10 23:25:51,223 INFO [http-nio-8000-exec-2] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 23:25:51,223 INFO [http-nio-8000-exec-2] Initializing Servlet 'dispatcherServlet' -2020-12-10 23:25:51,226 INFO [http-nio-8000-exec-2] Completed initialization in 2 ms -2020-12-10 23:25:56,306 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-10 23:25:56,315 WARN [http-nio-8000-exec-3] no code -2020-12-10 23:26:08,150 WARN [http-nio-8000-exec-5] matched -2020-12-10 23:26:11,145 WARN [http-nio-8000-exec-7] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'voteValue' is not present] -2020-12-10 23:28:56,642 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de -2020-12-10 23:28:56,646 WARN [http-nio-8000-exec-5] no code -2020-12-10 23:29:11,779 WARN [http-nio-8000-exec-7] matched -2020-12-10 23:29:13,825 WARN [http-nio-8000-exec-9] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'voteValue' is not present] -2020-12-10 23:33:23,019 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 23:33:23,020 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 23:33:23,021 INFO [SpringContextShutdownHook] HikariPool-3 - Shutdown initiated... -2020-12-10 23:33:23,028 INFO [SpringContextShutdownHook] HikariPool-3 - Shutdown completed. -2020-12-10 23:33:26,472 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 30570 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 23:33:26,474 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 23:33:26,521 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 23:33:26,521 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 23:33:26,973 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 23:33:27,027 INFO [restartedMain] Finished Spring Data repository scanning in 47ms. Found 6 JPA repository interfaces. -2020-12-10 23:33:27,726 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 23:33:27,738 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 23:33:27,739 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 23:33:27,740 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 23:33:27,812 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 23:33:27,813 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1290 ms -2020-12-10 23:33:28,006 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 23:33:28,046 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 23:33:28,151 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 23:33:28,230 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 23:33:28,624 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 23:33:28,647 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 23:33:29,286 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 23:33:29,294 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 23:33:29,312 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 23:33:29,805 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=true addingPhase=false -2020-12-10 23:33:30,030 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 23:33:30,162 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 23:33:30,379 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 23:33:30,402 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 23:33:30,415 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.294 seconds (JVM running for 4.904) -2020-12-10 23:33:33,898 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 23:33:33,898 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 23:33:33,905 INFO [http-nio-8000-exec-1] Completed initialization in 7 ms -2020-12-10 23:33:37,349 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-10 23:33:37,369 WARN [http-nio-8000-exec-3] no code -2020-12-10 23:33:46,841 WARN [http-nio-8000-exec-5] matched -2020-12-10 23:33:50,048 WARN [http-nio-8000-exec-7] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'voteValue' is not present] -2020-12-10 23:34:15,771 WARN [http-nio-8000-exec-9] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'voteValue' is not present] -2020-12-10 23:34:21,438 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de -2020-12-10 23:34:21,443 WARN [http-nio-8000-exec-2] no code -2020-12-10 23:34:29,833 WARN [http-nio-8000-exec-4] matched -2020-12-10 23:34:32,090 ERROR [http-nio-8000-exec-6] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NullPointerException] with root cause -java.lang.NullPointerException: null - at com.github.cato447.AbizeitungVotingSystem.controller.VotingController.mottoSaving(VotingController.java:223) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:566) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:878) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:792) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-10 23:34:48,479 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 23:34:48,483 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 23:34:48,486 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 23:34:48,494 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 23:34:53,627 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 30821 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 23:34:53,631 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 23:34:53,699 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 23:34:53,700 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 23:34:54,164 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 23:34:54,223 INFO [restartedMain] Finished Spring Data repository scanning in 53ms. Found 6 JPA repository interfaces. -2020-12-10 23:34:54,984 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 23:34:54,994 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 23:34:54,995 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 23:34:54,995 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 23:34:55,064 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 23:34:55,065 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1365 ms -2020-12-10 23:34:55,256 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 23:34:55,309 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 23:34:55,406 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 23:34:55,481 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 23:34:55,849 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 23:34:55,871 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 23:34:56,569 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 23:34:56,577 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 23:34:56,592 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 23:34:57,113 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=true addingPhase=false -2020-12-10 23:34:57,333 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 23:34:57,465 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 23:34:57,680 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 23:34:57,714 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 23:34:57,726 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.45 seconds (JVM running for 5.073) -2020-12-10 23:35:29,496 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 23:35:29,498 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 23:35:29,501 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 23:35:29,512 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 23:35:31,646 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 30990 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 23:35:31,650 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 23:35:31,712 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 23:35:31,712 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 23:35:32,121 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 23:35:32,174 INFO [restartedMain] Finished Spring Data repository scanning in 47ms. Found 6 JPA repository interfaces. -2020-12-10 23:35:32,880 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 23:35:32,892 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 23:35:32,893 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 23:35:32,894 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 23:35:32,977 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 23:35:32,977 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1264 ms -2020-12-10 23:35:33,209 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 23:35:33,244 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 23:35:33,351 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 23:35:33,443 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 23:35:33,834 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 23:35:33,856 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 23:35:34,546 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 23:35:34,555 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 23:35:34,569 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 23:35:35,001 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=true addingPhase=false -2020-12-10 23:35:35,320 INFO [restartedMain] Voters successfully set up -2020-12-10 23:35:35,400 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 23:35:35,523 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 23:35:35,747 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 23:35:35,772 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 23:35:35,785 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.54 seconds (JVM running for 5.159) -2020-12-10 23:35:41,353 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 23:35:41,354 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 23:35:41,359 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms -2020-12-10 23:35:41,395 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-10 23:35:41,416 WARN [http-nio-8000-exec-1] no code -2020-12-10 23:35:49,967 WARN [http-nio-8000-exec-3] matched -2020-12-10 23:35:52,619 ERROR [http-nio-8000-exec-5] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NullPointerException] with root cause -java.lang.NullPointerException: null - at com.github.cato447.AbizeitungVotingSystem.controller.VotingController.mottoSaving(VotingController.java:223) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:566) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:878) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:792) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-10 23:37:26,270 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 23:37:26,272 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 23:37:26,276 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 23:37:26,286 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 23:37:30,459 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 31184 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 23:37:30,462 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 23:37:30,539 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 23:37:30,540 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 23:37:30,960 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 23:37:31,015 INFO [restartedMain] Finished Spring Data repository scanning in 49ms. Found 6 JPA repository interfaces. -2020-12-10 23:37:31,674 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 23:37:31,684 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 23:37:31,685 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 23:37:31,686 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 23:37:31,748 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 23:37:31,748 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1208 ms -2020-12-10 23:37:31,942 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 23:37:31,980 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 23:37:32,075 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 23:37:32,152 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 23:37:32,513 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 23:37:32,538 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 23:37:33,224 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 23:37:33,232 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 23:37:33,246 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 23:37:33,675 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=false addingPhase=true -2020-12-10 23:37:33,874 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 23:37:33,975 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 23:37:34,188 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 23:37:34,207 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 23:37:34,219 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.128 seconds (JVM running for 4.719) -2020-12-10 23:37:39,800 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 23:37:39,801 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 23:37:39,811 INFO [http-nio-8000-exec-1] Completed initialization in 10 ms -2020-12-10 23:37:42,580 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-10 23:37:42,597 WARN [http-nio-8000-exec-3] no code -2020-12-10 23:37:52,463 WARN [http-nio-8000-exec-5] matched -2020-12-10 23:38:19,588 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de -2020-12-10 23:38:19,591 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-10 23:38:19,596 ERROR [http-nio-8000-exec-10] [THYMELEAF][http-nio-8000-exec-10] Exception processing template "errors/alreadysubmittedcandidates.html": Error resolving template [errors/alreadysubmittedcandidates.html], template might not exist or might not be accessible by any of the configured Template Resolvers -org.thymeleaf.exceptions.TemplateInputException: Error resolving template [errors/alreadysubmittedcandidates.html], template might not exist or might not be accessible by any of the configured Template Resolvers - at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-10 23:38:19,598 ERROR [http-nio-8000-exec-10] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: Error resolving template [errors/alreadysubmittedcandidates.html], template might not exist or might not be accessible by any of the configured Template Resolvers] with root cause -org.thymeleaf.exceptions.TemplateInputException: Error resolving template [errors/alreadysubmittedcandidates.html], template might not exist or might not be accessible by any of the configured Template Resolvers - at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-10 23:38:35,773 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-10 23:38:35,776 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-10 23:38:35,778 ERROR [http-nio-8000-exec-3] [THYMELEAF][http-nio-8000-exec-3] Exception processing template "errors/alreadysubmittedcandidates.html": Error resolving template [errors/alreadysubmittedcandidates.html], template might not exist or might not be accessible by any of the configured Template Resolvers -org.thymeleaf.exceptions.TemplateInputException: Error resolving template [errors/alreadysubmittedcandidates.html], template might not exist or might not be accessible by any of the configured Template Resolvers - at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-10 23:38:35,779 ERROR [http-nio-8000-exec-3] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: Error resolving template [errors/alreadysubmittedcandidates.html], template might not exist or might not be accessible by any of the configured Template Resolvers] with root cause -org.thymeleaf.exceptions.TemplateInputException: Error resolving template [errors/alreadysubmittedcandidates.html], template might not exist or might not be accessible by any of the configured Template Resolvers - at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-10 23:39:53,528 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 23:39:53,530 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 23:39:53,538 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 23:39:53,548 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 23:39:55,747 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 31490 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 23:39:55,750 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 23:39:55,819 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 23:39:55,820 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 23:39:56,240 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 23:39:56,308 INFO [restartedMain] Finished Spring Data repository scanning in 61ms. Found 6 JPA repository interfaces. -2020-12-10 23:39:57,039 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 23:39:57,052 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 23:39:57,053 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 23:39:57,053 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 23:39:57,111 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 23:39:57,111 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1291 ms -2020-12-10 23:39:57,293 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 23:39:57,329 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 23:39:57,422 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 23:39:57,490 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 23:39:57,842 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 23:39:57,869 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 23:39:58,577 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 23:39:58,585 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 23:39:58,600 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 23:39:59,042 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=false addingPhase=true -2020-12-10 23:39:59,265 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 23:39:59,373 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 23:39:59,566 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 23:39:59,586 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 23:39:59,599 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.249 seconds (JVM running for 4.846) -2020-12-10 23:40:03,796 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 23:40:03,797 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 23:40:03,804 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms -2020-12-10 23:40:03,834 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-10 23:40:03,852 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-10 23:40:03,965 ERROR [http-nio-8000-exec-1] [THYMELEAF][http-nio-8000-exec-1] Exception processing template "errors/alreadysubmittedcandidates.html": Error resolving template [errors/alreadysubmittedcandidates.html], template might not exist or might not be accessible by any of the configured Template Resolvers -org.thymeleaf.exceptions.TemplateInputException: Error resolving template [errors/alreadysubmittedcandidates.html], template might not exist or might not be accessible by any of the configured Template Resolvers - at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-10 23:40:03,966 ERROR [http-nio-8000-exec-1] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: Error resolving template [errors/alreadysubmittedcandidates.html], template might not exist or might not be accessible by any of the configured Template Resolvers] with root cause -org.thymeleaf.exceptions.TemplateInputException: Error resolving template [errors/alreadysubmittedcandidates.html], template might not exist or might not be accessible by any of the configured Template Resolvers - at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-10 23:40:44,205 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 23:40:44,208 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 23:40:44,211 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 23:40:44,220 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 23:40:46,535 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 31683 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 23:40:46,540 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 23:40:46,605 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 23:40:46,606 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 23:40:47,052 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 23:40:47,106 INFO [restartedMain] Finished Spring Data repository scanning in 47ms. Found 6 JPA repository interfaces. -2020-12-10 23:40:47,936 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 23:40:47,948 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 23:40:47,948 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 23:40:47,949 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 23:40:48,019 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 23:40:48,020 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1414 ms -2020-12-10 23:40:48,225 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 23:40:48,267 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 23:40:48,361 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 23:40:48,450 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 23:40:48,801 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 23:40:48,832 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 23:40:49,490 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 23:40:49,497 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 23:40:49,511 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 23:40:49,936 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=false addingPhase=true -2020-12-10 23:40:50,156 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 23:40:50,289 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 23:40:50,516 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 23:40:50,536 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 23:40:50,550 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.405 seconds (JVM running for 5.033) -2020-12-10 23:40:51,111 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 23:40:51,112 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 23:40:51,118 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms -2020-12-10 23:40:53,576 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-10 23:40:53,596 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-10 23:40:56,838 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de -2020-12-10 23:40:56,840 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-10 23:43:11,813 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 23:43:11,816 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 23:43:11,821 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 23:43:11,832 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 23:43:15,255 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 31842 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 23:43:15,261 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 23:43:15,322 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 23:43:15,323 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 23:43:15,785 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 23:43:35,044 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 31908 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 23:43:35,049 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 23:43:35,108 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 23:43:35,108 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 23:43:35,544 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 23:43:35,599 INFO [restartedMain] Finished Spring Data repository scanning in 48ms. Found 6 JPA repository interfaces. -2020-12-10 23:43:36,278 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 23:43:36,288 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 23:43:36,289 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 23:43:36,289 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 23:43:36,371 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 23:43:36,371 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1262 ms -2020-12-10 23:43:36,553 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 23:43:36,588 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 23:43:36,677 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 23:43:36,775 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 23:43:37,147 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 23:43:37,174 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 23:43:37,850 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 23:43:37,856 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 23:43:37,871 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 23:43:38,305 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=true addingPhase=false -2020-12-10 23:43:38,523 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 23:43:38,665 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 23:43:38,864 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 23:43:38,885 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 23:43:38,899 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.283 seconds (JVM running for 4.892) -2020-12-10 23:43:41,826 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 23:43:41,827 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 23:43:41,833 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms -2020-12-10 23:43:41,861 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-10 23:43:41,874 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-10 23:43:45,903 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de -2020-12-10 23:43:45,905 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-10 23:45:42,188 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 23:45:42,192 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 23:45:42,195 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 23:45:42,204 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 23:46:32,245 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 32160 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 23:46:32,248 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 23:46:32,316 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 23:46:32,317 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 23:46:32,774 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 23:46:32,829 INFO [restartedMain] Finished Spring Data repository scanning in 49ms. Found 6 JPA repository interfaces. -2020-12-10 23:46:33,553 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 23:46:33,565 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 23:46:33,566 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 23:46:33,567 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 23:46:33,634 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 23:46:33,634 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1317 ms -2020-12-10 23:46:33,822 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 23:46:33,859 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 23:46:33,951 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 23:46:34,032 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 23:46:34,398 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 23:46:34,426 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 23:46:35,095 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 23:46:35,103 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 23:46:35,117 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 23:46:35,518 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=true addingPhase=false -2020-12-10 23:46:35,723 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 23:46:35,833 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 23:46:36,034 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 23:46:36,053 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 23:46:36,062 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.224 seconds (JVM running for 4.841) -2020-12-10 23:46:39,852 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 23:46:39,853 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 23:46:39,860 INFO [http-nio-8000-exec-1] Completed initialization in 7 ms -2020-12-10 23:46:39,896 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-10 23:46:39,920 WARN [http-nio-8000-exec-1] no code -2020-12-10 23:46:51,237 WARN [http-nio-8000-exec-3] matched -2020-12-10 23:46:53,375 INFO [http-nio-8000-exec-5] -2020-12-10 23:46:53,382 ERROR [http-nio-8000-exec-5] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NullPointerException] with root cause -java.lang.NullPointerException: null - at com.github.cato447.AbizeitungVotingSystem.controller.VotingController.mottoSaving(VotingController.java:227) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:566) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:878) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:792) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-10 23:48:54,735 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 23:48:54,737 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 23:48:54,740 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 23:48:54,752 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-10 23:48:58,120 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 32339 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-10 23:48:58,129 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-10 23:48:58,186 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-10 23:48:58,187 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-10 23:48:58,626 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-10 23:48:58,677 INFO [restartedMain] Finished Spring Data repository scanning in 44ms. Found 6 JPA repository interfaces. -2020-12-10 23:48:59,423 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-10 23:48:59,433 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-10 23:48:59,434 INFO [restartedMain] Starting service [Tomcat] -2020-12-10 23:48:59,434 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-10 23:48:59,497 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-10 23:48:59,497 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1310 ms -2020-12-10 23:48:59,693 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-10 23:48:59,729 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-10 23:48:59,823 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-10 23:48:59,900 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-10 23:49:00,313 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-10 23:49:00,334 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-10 23:49:01,032 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-10 23:49:01,039 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 23:49:01,057 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-10 23:49:01,527 INFO [restartedMain] Program started with arguments: votingPhase=false mottoVoting=true addingPhase=false -2020-12-10 23:49:01,744 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-10 23:49:01,864 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-10 23:49:02,089 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-10 23:49:02,104 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-10 23:49:02,119 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.366 seconds (JVM running for 5.005) -2020-12-10 23:49:04,473 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-10 23:49:04,474 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-10 23:49:04,479 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms -2020-12-10 23:49:11,924 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-10 23:49:11,943 WARN [http-nio-8000-exec-3] no code -2020-12-10 23:49:21,605 WARN [http-nio-8000-exec-5] matched -2020-12-10 23:49:23,742 INFO [http-nio-8000-exec-7] simon.bussmann@adolfinum.de -2020-12-10 23:49:23,774 INFO [http-nio-8000-exec-7] simon.bussmann@adolfinum.de has choose his motto -2020-12-10 23:50:09,128 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-10 23:50:09,131 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-10 23:50:09,137 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-10 23:50:09,152 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-12 00:17:46,630 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-12 00:17:46,632 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-12 00:17:46,633 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown initiated... -2020-12-12 00:17:46,655 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown completed. -2020-12-16 23:08:53,594 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 29783 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-16 23:08:53,597 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-16 23:08:53,662 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-16 23:08:53,662 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-16 23:08:54,075 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-16 23:08:54,124 INFO [restartedMain] Finished Spring Data repository scanning in 42ms. Found 6 JPA repository interfaces. -2020-12-16 23:08:54,748 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-16 23:08:54,757 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-16 23:08:54,758 INFO [restartedMain] Starting service [Tomcat] -2020-12-16 23:08:54,758 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-16 23:08:54,812 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-16 23:08:54,812 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1149 ms -2020-12-16 23:08:54,965 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-16 23:08:54,995 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-16 23:08:55,082 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-16 23:08:55,148 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-16 23:08:55,495 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-16 23:08:55,519 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-16 23:08:56,112 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-16 23:08:56,117 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-16 23:08:56,129 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-16 23:08:56,530 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-16 23:08:56,728 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-16 23:08:56,850 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-16 23:08:57,034 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-16 23:08:57,048 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-16 23:08:57,057 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.782 seconds (JVM running for 4.4) -2020-12-16 23:09:02,314 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-16 23:09:02,314 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-16 23:09:02,320 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms -2020-12-16 23:09:07,865 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-16 23:09:07,881 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-16 23:09:15,281 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de -2020-12-16 23:09:15,285 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-16 23:09:22,285 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de -2020-12-16 23:09:22,288 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-16 23:09:28,718 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de -2020-12-16 23:09:28,722 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-16 23:09:53,815 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de -2020-12-16 23:09:53,819 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-16 23:10:25,035 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de -2020-12-16 23:10:25,039 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-16 23:19:59,443 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-16 23:19:59,446 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-16 23:26:44,029 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de -2020-12-16 23:26:44,032 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-16 23:27:03,861 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de -2020-12-16 23:27:03,865 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-16 23:28:24,302 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de -2020-12-16 23:28:24,306 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-16 23:29:40,410 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de -2020-12-16 23:29:40,413 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-16 23:30:36,480 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de -2020-12-16 23:30:36,484 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-16 23:30:48,686 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de -2020-12-16 23:30:48,690 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-16 23:34:24,829 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de -2020-12-16 23:34:24,832 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-16 23:34:43,629 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-16 23:34:43,634 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-16 23:36:23,582 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de -2020-12-16 23:36:23,586 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-16 23:36:51,244 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de -2020-12-16 23:36:51,247 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-16 23:37:06,180 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-16 23:37:06,183 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-16 23:37:39,778 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-16 23:37:39,782 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-16 23:38:01,467 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de -2020-12-16 23:38:01,472 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-16 23:38:27,209 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de -2020-12-16 23:38:27,213 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-16 23:40:06,985 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de -2020-12-16 23:40:06,992 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-16 23:41:01,246 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de -2020-12-16 23:41:01,250 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-16 23:46:16,518 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de -2020-12-16 23:46:16,522 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-16 23:47:29,293 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de -2020-12-16 23:47:29,297 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-16 23:49:09,880 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-16 23:49:09,884 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-17 02:55:31,154 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de +2020-12-17 02:56:51,692 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 02:56:51,695 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 02:56:51,699 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-17 02:56:51,708 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-17 02:56:53,969 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 49836 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 02:56:53,972 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 02:56:54,042 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-17 02:56:54,042 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-17 02:56:54,480 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 02:56:54,540 INFO [restartedMain] Finished Spring Data repository scanning in 53ms. Found 6 JPA repository interfaces. +2020-12-17 02:56:55,254 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 02:56:55,265 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 02:56:55,266 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 02:56:55,266 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 02:56:55,332 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 02:56:55,333 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1289 ms +2020-12-17 02:56:55,517 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 02:56:55,553 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-17 02:56:55,647 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-17 02:56:55,716 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-17 02:56:56,086 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-17 02:56:56,118 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 02:56:56,828 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 02:56:56,833 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 02:56:56,848 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 02:56:57,302 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-17 02:56:57,528 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 02:56:57,636 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 02:56:57,850 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 02:56:57,868 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 02:56:57,880 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.282 seconds (JVM running for 4.921) +2020-12-17 02:57:03,943 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-17 02:57:03,943 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-17 02:57:03,952 INFO [http-nio-8000-exec-1] Completed initialization in 9 ms +2020-12-17 02:57:06,651 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2020-12-17 02:57:06,673 WARN [http-nio-8000-exec-4] no code +2020-12-17 02:57:11,787 ERROR [http-nio-8000-exec-4] simon.bussmann@adolfinum.de is not allowed to vote +2020-12-17 02:57:50,723 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de +2020-12-17 02:59:27,414 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2020-12-17 02:59:27,422 WARN [http-nio-8000-exec-4] no code +2020-12-17 02:59:32,474 ERROR [http-nio-8000-exec-4] simon.bussmann@adolfinum.de is not allowed to vote +2020-12-17 03:04:25,022 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 03:04:25,024 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 03:04:25,033 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-17 03:04:25,043 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-17 03:04:28,442 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 50254 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 03:04:28,446 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 03:04:28,507 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-17 03:04:28,508 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-17 03:04:28,984 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 03:04:29,042 INFO [restartedMain] Finished Spring Data repository scanning in 52ms. Found 6 JPA repository interfaces. +2020-12-17 03:04:29,835 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 03:04:29,847 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 03:04:29,848 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 03:04:29,849 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 03:04:29,944 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 03:04:29,944 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1436 ms +2020-12-17 03:04:30,156 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 03:04:30,194 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-17 03:04:30,303 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-17 03:04:30,375 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-17 03:04:30,794 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-17 03:04:30,823 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 03:04:31,666 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 03:04:31,677 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 03:04:31,698 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 03:04:32,274 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-17 03:04:32,518 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 03:04:32,642 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 03:04:32,908 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 03:04:32,931 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 03:04:32,945 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.904 seconds (JVM running for 5.575) +2020-12-17 03:04:41,568 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-17 03:04:41,569 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-17 03:04:41,577 INFO [http-nio-8000-exec-1] Completed initialization in 8 ms +2020-12-17 03:04:44,803 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2020-12-17 03:04:56,186 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de +2020-12-17 03:04:56,196 WARN [http-nio-8000-exec-9] no code +2020-12-17 03:07:47,337 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 03:07:47,340 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 03:07:47,345 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-17 03:07:47,353 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-17 03:07:50,812 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 50470 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 03:07:50,816 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 03:07:50,879 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-17 03:07:50,879 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-17 03:07:51,328 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 03:07:51,397 INFO [restartedMain] Finished Spring Data repository scanning in 63ms. Found 6 JPA repository interfaces. +2020-12-17 03:07:52,154 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 03:07:52,164 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 03:07:52,165 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 03:07:52,166 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 03:07:52,233 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 03:07:52,233 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1353 ms +2020-12-17 03:07:52,443 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 03:07:52,483 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-17 03:07:52,587 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-17 03:07:52,679 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-17 03:07:53,049 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-17 03:07:53,076 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 03:07:53,756 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 03:07:53,766 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 03:07:53,784 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 03:07:54,267 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-17 03:07:54,487 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 03:07:54,591 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 03:07:54,815 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 03:07:54,835 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 03:07:54,846 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.433 seconds (JVM running for 5.075) +2020-12-17 03:08:03,213 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-17 03:08:03,215 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-17 03:08:03,222 INFO [http-nio-8000-exec-1] Completed initialization in 7 ms +2020-12-17 03:08:03,251 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de +2020-12-17 03:08:16,489 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de +2020-12-17 03:08:16,497 WARN [http-nio-8000-exec-5] no code +2020-12-17 03:08:28,122 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de +2020-12-17 03:08:28,131 WARN [http-nio-8000-exec-9] no code +2020-12-17 03:08:36,769 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-17 03:08:36,778 WARN [http-nio-8000-exec-3] no code +2020-12-17 03:09:33,806 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-17 03:09:33,809 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 03:09:33,815 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-17 03:09:33,824 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-17 03:09:36,053 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 50799 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-17 03:09:36,055 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-17 03:09:36,153 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-17 03:09:36,154 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-17 03:09:36,654 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-17 03:09:36,711 INFO [restartedMain] Finished Spring Data repository scanning in 49ms. Found 6 JPA repository interfaces. +2020-12-17 03:09:37,500 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-17 03:09:37,509 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-17 03:09:37,510 INFO [restartedMain] Starting service [Tomcat] +2020-12-17 03:09:37,511 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-17 03:09:37,583 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-17 03:09:37,583 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1429 ms +2020-12-17 03:09:37,750 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-17 03:09:37,782 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-17 03:09:37,888 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-17 03:09:37,967 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-17 03:09:38,371 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-17 03:09:38,399 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-17 03:09:39,232 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-17 03:09:39,240 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-17 03:09:39,255 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-17 03:09:39,703 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-17 03:09:39,930 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-17 03:09:40,051 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-17 03:09:40,294 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-17 03:09:40,324 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-17 03:09:40,337 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.682 seconds (JVM running for 5.3) +2020-12-17 03:09:47,082 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-17 03:09:47,083 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-17 03:09:47,093 INFO [http-nio-8000-exec-1] Completed initialization in 10 ms +2020-12-17 03:09:49,636 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-17 03:09:49,659 WARN [http-nio-8000-exec-3] no code diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java index dad5b36..69f9923 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java @@ -20,6 +20,7 @@ import org.apache.logging.log4j.Logger; import javax.annotation.PostConstruct; import java.util.*; +import java.util.concurrent.ExecutionException; @Controller public class VotingController { @@ -110,16 +111,22 @@ public class VotingController { if (name.strip().toLowerCase().matches("[a-z]+\\.[a-z]+@adolfinum+\\.de$")) { try { LOGGER.warn(name); + try { + Voter voter = voterRepository.findByEmail(name.toLowerCase().strip()); + } catch (Exception e){ + LOGGER.error(name + " is not allowed to vote"); + return "errors/notRegistered.html"; + } Voter voter = voterRepository.findByEmail(name.toLowerCase().strip()); if (voter.getVote_status() && votingPhase) { LOGGER.warn(name + " has already voted"); return "errors/alreadyVoted.html"; } else if (voter.getCandidatesubmit_status() && addingPhase) { LOGGER.warn(name + " has already submitted its candidates"); - return "errors/alreadysubmittedcandidates.html"; + return "errors/alreadyVoted.html"; } else if (voter.getMotto_status() && mottoPhase) { LOGGER.warn(name + " has already chose their motto"); - return "errors/alreadyVotedForMotto.html"; + return "errors/alreadyVoted.html"; } else { if (authCodesRepository.findByName(name) == null) { LOGGER.warn("no code"); @@ -130,30 +137,43 @@ public class VotingController { sendSimpleMessage(name, "Code zur Authentifizierung", "Dein Code lautet: " + authCode.getCode()); } model.addAttribute("name", name); + model.addAttribute("codeTime", authCodesRepository.findByName(name).getExpirationTime()); model.addAttribute("codeExpired", false); model.addAttribute("codeFalse", false); return "authenticate.html"; } } catch (Exception e) { e.printStackTrace(); - LOGGER.error(name + " is not allowed to vote"); - return "errors/notRegistered.html"; + tableAction.deleteToken(name, authCodesRepository); + return "error.html"; } } else { return "errors/falseInput.html"; } } + @RequestMapping("/newCode") + public String provideNewCode(@RequestParam String name, Model model){ + AuthCode authCode = tableAction.generateToken(name, RandomNumber.getRandomNumberString(), authCodesRepository); + sendSimpleMessage(name, "Code zur Authentifizierung", "Dein Code lautet: " + authCode.getCode()); + model.addAttribute("name", name); + model.addAttribute("codeTime", authCodesRepository.findByName(name).getExpirationTime()); + model.addAttribute("codeExpired", false); + model.addAttribute("codeFalse", false); + return "authenticate.html"; + } + @RequestMapping("/vote") public String voting_adding(@RequestParam String code, @RequestParam String name, Model model) { String tokenStatus = tableAction.checkToken(name, code, authCodesRepository); - + LOGGER.warn(code); if (tokenStatus.equals("matched")) { LOGGER.warn("matched"); if (mottoPhase) { List mottos = mottoRepository.findAll(); model.addAttribute("mottos", mottos); model.addAttribute("name", name); + model.addAttribute("code", code); return "mottoVoting.html"; } else if (addingPhase) { PossibleCandidateWrapper possibleCandidates = new PossibleCandidateWrapper(); @@ -164,11 +184,13 @@ public class VotingController { model.addAttribute("categories", categories); model.addAttribute("form", possibleCandidates); model.addAttribute("name", name); + model.addAttribute("code", code); return "addingCandidates.html"; } else if (votingPhase) { List categories = categoryRepository.findAll(); model.addAttribute("categories", categories); model.addAttribute("name", name); + model.addAttribute("code", code); return "voting.html"; } } else if (tokenStatus.equals("expired")) { @@ -188,10 +210,11 @@ public class VotingController { } @RequestMapping("/saveCandidates") - public String candidateSaving(@ModelAttribute PossibleCandidateWrapper possibleCandidates, @RequestParam String name) { + public String candidateSaving(@ModelAttribute PossibleCandidateWrapper possibleCandidates, @RequestParam String name, @RequestParam String code) { if (voterRepository.findByEmail(name).getVote_status()) { return "errors/alreadyVoted.html"; } else { + authCodesRepository.delete(authCodesRepository.findByName(code)); LinkedList posCandidates = possibleCandidates.getPossibleCandidates(); long index = 1; for (PossibleCandidate posCandidate : posCandidates) { @@ -213,11 +236,12 @@ public class VotingController { } @RequestMapping("/saveMotto") - public String mottoSaving(@RequestParam String name, @RequestParam String voteValue) { + public String mottoSaving(@RequestParam String name, @RequestParam String voteValue, @RequestParam String code) { LOGGER.info(name); if (voterRepository.findByEmail(name).getMotto_status()) { return "errors/alreadySubmitted.html"; } else { + authCodesRepository.delete(authCodesRepository.findByName(code)); tableAction.voteForMotto(voteValue, mottoRepository); tableAction.updateMottoStatus(name, voterRepository); LOGGER.info(name + " has choose his motto"); @@ -226,10 +250,11 @@ public class VotingController { } @RequestMapping("/processVote") - public String ProcessVote(@RequestParam String name, @RequestParam String voteValues) { + public String ProcessVote(@RequestParam String name, @RequestParam String voteValues, @RequestParam String code) { if (voterRepository.findByEmail(name).getCandidatesubmit_status()) { return "errors/alreadySubmitted.html"; } else { + authCodesRepository.delete(authCodesRepository.findByName(code)); String[] partVoteValues = voteValues.split(","); for (String s : partVoteValues) { tableAction.voteForCandidate(s, candidateRepository); diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/entities/AuthCode.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/entities/AuthCode.java index 1e1db47..846d666 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/entities/AuthCode.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/entities/AuthCode.java @@ -37,6 +37,10 @@ public class AuthCode { return time; } + public long getExpirationTime(){ + return time + 1800*1000; + } + public boolean isExpired(){ return System.currentTimeMillis() >= (time + 1800*1000); } diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/table/TableAction.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/table/TableAction.java index c2ce93a..c12a984 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/table/TableAction.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/table/TableAction.java @@ -55,7 +55,6 @@ public class TableAction { try { AuthCode authCode = authCodesRepository.findByName(name); if (authCode.getCode().equals(code) && !authCode.isExpired()) { - authCodesRepository.delete(authCode); return "matched"; } else if (authCode.isExpired()) { authCodesRepository.delete(authCode); @@ -67,6 +66,10 @@ public class TableAction { return "wrong"; } + public void deleteToken(String name, AuthCodesRepository authCodesRepository){ + authCodesRepository.delete(authCodesRepository.findByName(name)); + } + private boolean fiveMinutesPassed(Long time){ return System.currentTimeMillis() >= (time + 300*1000); } diff --git a/src/main/resources/static/styles/alreadysubmittedcandidates.css b/src/main/resources/static/styles/allreadyVoted.css similarity index 97% rename from src/main/resources/static/styles/alreadysubmittedcandidates.css rename to src/main/resources/static/styles/allreadyVoted.css index 9e57561..4d4f997 100644 --- a/src/main/resources/static/styles/alreadysubmittedcandidates.css +++ b/src/main/resources/static/styles/allreadyVoted.css @@ -24,6 +24,10 @@ h1 { font-size: 75px; } +h2 { + color: #6d6d78; +} + .submitButton { padding: .25em 0; border: 0; diff --git a/src/main/resources/static/styles/authenticate.css b/src/main/resources/static/styles/authenticate.css index d2178b4..16f0640 100644 --- a/src/main/resources/static/styles/authenticate.css +++ b/src/main/resources/static/styles/authenticate.css @@ -21,9 +21,12 @@ body { } h1 { - margin-top: 5%; color: #FFF; - margin-bottom: 5%; +} + +h1.end { + color: #6d6d78; + margin-bottom: 2%; } h2 { @@ -41,7 +44,7 @@ input { .submitButton { margin-top: 5%; - margin-bottom: 5%; + margin-bottom: 1%; border: 0; outline: 0; background: #bb1515; @@ -54,6 +57,19 @@ input { text-shadow: 0 -2px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.2); } +.newCode { + border: 0; + outline: 0; + background: #bb1515; + color: rgba(255, 255, 255, 0.85); + font-size: 1rem; + width: 250px; + letter-spacing: .0625rem; + border-radius: 12px; + box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.25); + text-shadow: 0 -2px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.2); +} + .errorCode { margin-top: 10%; color: #bb1515; diff --git a/src/main/resources/templates/authenticate.html b/src/main/resources/templates/authenticate.html index d20b486..f57a703 100644 --- a/src/main/resources/templates/authenticate.html +++ b/src/main/resources/templates/authenticate.html @@ -10,14 +10,9 @@ - -

+

Nicht wundern das kann ein wenig dauern!

+

Bitte gebe den Authentifizierungscode ein

@@ -28,11 +23,18 @@ -
+ + +
+ + +
+ +
-

Der Code ist nicht mehr gültig!
Fordere einen neuen an

+

Der Code ist nicht mehr gültig!

@@ -76,6 +78,33 @@ output.value = code; document.getElementById("passForm").submit(); } + + function updateCounter(time) { + const zeroPad = (num, places) => String(num).padStart(places, '0') + + // Show time remaining now. + showTimeRemaining(); + + var dateFuture = time; + console.log(dateFuture); + + // Set a timer to update the displayed clock every 1000 milliseconds. + var updateTimeLoop = setInterval(showTimeRemaining, 1000); + + function showTimeRemaining() { + var dateNow = Date.now(); + var days = zeroPad(Math.floor((dateFuture - dateNow) / (1000 * 60 * 60 * 24)), 2); + var hours = zeroPad(Math.floor(((dateFuture - dateNow) - days * 1000 * 60 * 60 * 24) / (1000 * 60 * 60)), 2); + var mins = zeroPad(Math.floor(((dateFuture - dateNow) - days * 1000 * 60 * 60 * 24 - hours * 1000 * 60 * 60) / (1000 * 60)), 2); + var secs = zeroPad(Math.floor(((dateFuture - dateNow) - days * 1000 * 60 * 60 * 24 - hours * 1000 * 60 * 60 - mins * 1000 * 60) / 1000), 2); + document.getElementById("time_remain").innerHTML = "Der Code gilt noch für " + mins + ":" + secs; + if (hours + mins + secs == 0) { + document.getElementById("time_remain").innerHTML = "Der Code ist abgelaufen"; + } + } + } + + updateCounter(document.getElementById("time_remain").innerHTML); diff --git a/src/main/resources/templates/error.html b/src/main/resources/templates/error.html index 4e05b4b..dcf2207 100644 --- a/src/main/resources/templates/error.html +++ b/src/main/resources/templates/error.html @@ -1,10 +1,24 @@ - + - -

Something went wrong!

-

Our Engineers are on it

- Go Home + + + Title + + + + +
+

Oops irgendwas ist kaputt gegangen

+

Keine Sorge!
Probiers nochmal :D

+ +
+ + \ No newline at end of file diff --git a/src/main/resources/templates/errors/alreadyVoted.html b/src/main/resources/templates/errors/alreadyVoted.html index e6cb039..ad4dc2b 100644 --- a/src/main/resources/templates/errors/alreadyVoted.html +++ b/src/main/resources/templates/errors/alreadyVoted.html @@ -3,12 +3,44 @@ - Abizeitung 2020/2021 Voting + Title + - -

Jeder darf nur einmal abstimmen!

- Return to Login-Site + +
+

Du hast schon abgestimmt!

+

Nächste Abstimmung in:

+ +
+ + \ No newline at end of file diff --git a/src/main/resources/templates/errors/alreadyVotedForMotto.html b/src/main/resources/templates/errors/alreadyVotedForMotto.html deleted file mode 100644 index 572e139..0000000 --- a/src/main/resources/templates/errors/alreadyVotedForMotto.html +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - Title - - - -

Du hast deine Motto schon gewählt!

- Return to Login-Site - - - \ No newline at end of file diff --git a/src/main/resources/templates/errors/alreadysubmittedcandidates.html b/src/main/resources/templates/errors/alreadysubmittedcandidates.html deleted file mode 100644 index 99868c8..0000000 --- a/src/main/resources/templates/errors/alreadysubmittedcandidates.html +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - Title - - - - -
-

Du hast schon abgestimmt!

-

Nächste Abstimmung in:

- -
- - - - - \ No newline at end of file diff --git a/src/main/resources/templates/errors/notRegistered.html b/src/main/resources/templates/errors/notRegistered.html index 6ef3123..4e3129d 100644 --- a/src/main/resources/templates/errors/notRegistered.html +++ b/src/main/resources/templates/errors/notRegistered.html @@ -1,14 +1,24 @@ - + - Abizeitung 2020/2021 Voting + Title + - -

Überprüfe noch einmal die eingegebene E-Mail Adresse Sollte der Fall eintreten, dass du deine E-Mail Adresse richtig eingegeben hast und du Schüler der Q2 bist, schreibe eine Mail an simon.bussmann@adolfinum.de mit dem Betreff LoginFehler

- Return to Login-Site + +
+

Du bist nicht zur Wahl zugelassen!

+

Falls du abstimmen können solltest
schreibe eine Mail an adolfinumvoting@gmail.com

+ +
+ + \ No newline at end of file From f65ff26e48b801e0ab4bb66a70a95aabe836e053 Mon Sep 17 00:00:00 2001 From: Simon Date: Fri, 18 Dec 2020 18:57:29 +0100 Subject: [PATCH 09/35] Finishing touches --- logs/Voting.log | 1390 +---------------- src/main/resources/Categories.txt | 24 +- .../static/styles/addingCandidates.css | 10 +- .../resources/templates/addingCandidates.html | 8 +- 4 files changed, 108 insertions(+), 1324 deletions(-) diff --git a/logs/Voting.log b/logs/Voting.log index c92eebc..dec608e 100644 --- a/logs/Voting.log +++ b/logs/Voting.log @@ -1,1307 +1,83 @@ -2020-12-17 00:01:18,835 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-17 00:01:18,839 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-17 00:01:40,081 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de -2020-12-17 00:01:40,084 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-17 00:02:04,294 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de -2020-12-17 00:02:04,297 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-17 00:05:34,484 INFO [Thread-4] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 00:05:34,486 INFO [Thread-4] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 00:05:34,491 INFO [Thread-4] HikariPool-1 - Shutdown initiated... -2020-12-17 00:05:34,498 INFO [Thread-4] HikariPool-1 - Shutdown completed. -2020-12-17 00:05:34,584 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 29783 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 00:05:34,585 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 00:05:34,704 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 00:05:34,721 INFO [restartedMain] Finished Spring Data repository scanning in 16ms. Found 6 JPA repository interfaces. -2020-12-17 00:05:34,874 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 00:05:34,876 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 00:05:34,877 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 00:05:34,877 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 00:05:34,890 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 00:05:34,891 INFO [restartedMain] Root WebApplicationContext: initialization completed in 303 ms -2020-12-17 00:05:34,946 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 00:05:34,953 INFO [restartedMain] HikariPool-2 - Starting... -2020-12-17 00:05:34,979 INFO [restartedMain] HikariPool-2 - Start completed. -2020-12-17 00:05:34,980 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 00:05:35,131 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 00:05:35,132 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 00:05:35,138 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 00:05:35,300 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-17 00:05:35,353 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 00:05:35,390 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 00:05:35,452 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 00:05:35,462 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 00:05:35,468 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 0.91 seconds (JVM running for 3402.811) -2020-12-17 00:05:35,472 INFO [restartedMain] Condition evaluation unchanged -2020-12-17 00:05:42,714 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-17 00:05:42,715 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-17 00:05:42,720 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms -2020-12-17 00:05:42,732 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-17 00:05:42,738 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-17 00:05:51,031 WARN [http-nio-8000-exec-5] alba.bussmann@adolfinum.de -2020-12-17 00:05:51,038 ERROR [http-nio-8000-exec-5] alba.bussmann@adolfinum.de is not allowed to vote -2020-12-17 00:06:06,333 WARN [http-nio-8000-exec-7] alba.bussmann@adolfinum.de -2020-12-17 00:06:06,337 ERROR [http-nio-8000-exec-7] alba.bussmann@adolfinum.de is not allowed to vote -2020-12-17 00:06:11,806 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 00:06:11,807 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 00:06:11,808 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown initiated... -2020-12-17 00:06:11,818 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown completed. -2020-12-17 00:06:14,001 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 35624 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 00:06:14,004 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 00:06:14,061 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-17 00:06:14,061 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-17 00:06:14,484 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 00:06:14,534 INFO [restartedMain] Finished Spring Data repository scanning in 42ms. Found 6 JPA repository interfaces. -2020-12-17 00:06:15,246 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 00:06:15,257 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 00:06:15,257 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 00:06:15,258 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 00:06:15,319 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 00:06:15,320 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1258 ms -2020-12-17 00:06:15,506 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 00:06:15,541 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-17 00:06:15,628 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-17 00:06:15,691 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-17 00:06:16,046 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-17 00:06:16,068 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 00:06:16,690 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 00:06:16,700 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 00:06:16,711 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 00:06:17,108 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-17 00:06:17,302 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 00:06:17,401 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 00:06:17,585 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 00:06:17,607 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 00:06:17,623 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.002 seconds (JVM running for 4.59) -2020-12-17 00:06:18,741 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-17 00:06:18,741 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-17 00:06:18,746 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms -2020-12-17 00:06:24,441 WARN [http-nio-8000-exec-3] alba.bussmann@adolfinum.de -2020-12-17 00:06:24,456 ERROR [http-nio-8000-exec-3] alba.bussmann@adolfinum.de is not allowed to vote -2020-12-17 00:09:05,968 WARN [http-nio-8000-exec-6] alba.bussmann@adolfinum.de -2020-12-17 00:09:05,972 ERROR [http-nio-8000-exec-6] alba.bussmann@adolfinum.de is not allowed to vote -2020-12-17 00:09:12,465 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de -2020-12-17 00:09:12,468 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-17 00:10:01,436 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-17 00:11:47,109 WARN [http-nio-8000-exec-7] matched -2020-12-17 00:12:02,684 WARN [http-nio-8000-exec-9] wrong -2020-12-17 00:12:25,097 WARN [http-nio-8000-exec-1] wrong -2020-12-17 00:16:07,449 INFO [Thread-4] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 00:16:07,451 INFO [Thread-4] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 00:16:07,455 INFO [Thread-4] HikariPool-1 - Shutdown initiated... -2020-12-17 00:16:07,469 INFO [Thread-4] HikariPool-1 - Shutdown completed. -2020-12-17 00:16:07,562 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 35624 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 00:16:07,563 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 00:16:07,689 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 00:16:07,702 INFO [restartedMain] Finished Spring Data repository scanning in 12ms. Found 6 JPA repository interfaces. -2020-12-17 00:16:07,809 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 00:16:07,810 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 00:16:07,810 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 00:16:07,810 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 00:16:07,818 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 00:16:07,818 INFO [restartedMain] Root WebApplicationContext: initialization completed in 252 ms -2020-12-17 00:16:07,847 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 00:16:07,850 INFO [restartedMain] HikariPool-2 - Starting... -2020-12-17 00:16:07,880 INFO [restartedMain] HikariPool-2 - Start completed. -2020-12-17 00:16:07,880 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 00:16:07,991 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 00:16:07,992 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 00:16:07,996 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 00:16:08,147 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 00:16:08,174 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 00:16:08,239 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 00:16:08,264 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 00:16:08,284 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 0.753 seconds (JVM running for 595.25) -2020-12-17 00:16:08,288 INFO [restartedMain] Condition evaluation unchanged -2020-12-17 00:16:19,562 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 00:16:19,564 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 00:16:19,565 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown initiated... -2020-12-17 00:16:19,577 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown completed. -2020-12-17 00:16:22,818 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 36374 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 00:16:22,821 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 00:16:22,886 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-17 00:16:22,887 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-17 00:16:23,270 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 00:16:23,320 INFO [restartedMain] Finished Spring Data repository scanning in 43ms. Found 6 JPA repository interfaces. -2020-12-17 00:16:23,981 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 00:16:23,990 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 00:16:23,991 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 00:16:23,991 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 00:16:24,047 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 00:16:24,047 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1159 ms -2020-12-17 00:16:24,220 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 00:16:24,253 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-17 00:16:24,348 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-17 00:16:24,414 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-17 00:16:24,760 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-17 00:16:24,780 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 00:16:25,399 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 00:16:25,406 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 00:16:25,420 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 00:16:25,861 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-17 00:16:26,057 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 00:16:26,180 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 00:16:26,362 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 00:16:26,376 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 00:16:26,387 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.907 seconds (JVM running for 4.521) -2020-12-17 00:16:28,370 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-17 00:16:28,371 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-17 00:16:28,379 INFO [http-nio-8000-exec-1] Completed initialization in 8 ms -2020-12-17 00:16:28,408 WARN [http-nio-8000-exec-1] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required Boolean parameter 'hadCode' is not present] -2020-12-17 00:16:34,389 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de -2020-12-17 00:16:34,411 WARN [http-nio-8000-exec-5] no code -2020-12-17 00:18:15,868 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de -2020-12-17 00:18:19,379 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-17 00:19:25,602 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-17 00:19:45,071 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 00:19:45,074 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 00:19:45,077 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-17 00:19:45,084 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-17 00:19:47,284 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 36790 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 00:19:47,287 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 00:19:47,345 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-17 00:19:47,346 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-17 00:19:47,755 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 00:19:47,812 INFO [restartedMain] Finished Spring Data repository scanning in 50ms. Found 6 JPA repository interfaces. -2020-12-17 00:19:48,447 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 00:19:48,457 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 00:19:48,457 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 00:19:48,458 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 00:19:48,527 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 00:19:48,528 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1182 ms -2020-12-17 00:19:48,715 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 00:19:48,757 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-17 00:19:48,859 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-17 00:19:48,931 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-17 00:19:49,288 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-17 00:19:49,313 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 00:19:49,913 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 00:19:49,918 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 00:19:49,929 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 00:19:50,313 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-17 00:19:50,496 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 00:19:50,602 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 00:19:50,769 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 00:19:50,785 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 00:19:50,794 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.89 seconds (JVM running for 4.486) -2020-12-17 00:19:51,462 INFO [http-nio-8000-exec-2] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-17 00:19:51,463 INFO [http-nio-8000-exec-2] Initializing Servlet 'dispatcherServlet' -2020-12-17 00:19:51,469 INFO [http-nio-8000-exec-2] Completed initialization in 6 ms -2020-12-17 00:19:54,489 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-17 00:20:57,188 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de -2020-12-17 00:21:24,883 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de -2020-12-17 00:22:21,046 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de -2020-12-17 00:22:42,676 WARN [http-nio-8000-exec-1] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required Boolean parameter 'hadCode' is not present] -2020-12-17 00:22:51,382 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de -2020-12-17 00:22:52,911 WARN [http-nio-8000-exec-8] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required Boolean parameter 'hadCode' is not present] -2020-12-17 00:22:57,662 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-17 00:23:41,837 INFO [Thread-4] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 00:23:41,841 INFO [Thread-4] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 00:23:41,845 INFO [Thread-4] HikariPool-1 - Shutdown initiated... -2020-12-17 00:23:41,853 INFO [Thread-4] HikariPool-1 - Shutdown completed. -2020-12-17 00:23:41,951 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 36790 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 00:23:41,951 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 00:23:42,097 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 00:23:42,115 INFO [restartedMain] Finished Spring Data repository scanning in 17ms. Found 6 JPA repository interfaces. -2020-12-17 00:23:42,250 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 00:23:42,251 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 00:23:42,252 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 00:23:42,252 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 00:23:42,262 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 00:23:42,263 INFO [restartedMain] Root WebApplicationContext: initialization completed in 309 ms -2020-12-17 00:23:42,311 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 00:23:42,316 INFO [restartedMain] HikariPool-2 - Starting... -2020-12-17 00:23:42,363 INFO [restartedMain] HikariPool-2 - Start completed. -2020-12-17 00:23:42,363 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 00:23:42,508 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 00:23:42,509 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 00:23:42,513 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 00:23:42,689 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-17 00:23:42,750 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 00:23:42,790 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 00:23:42,864 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 00:23:42,880 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 00:23:42,885 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 0.96 seconds (JVM running for 236.577) -2020-12-17 00:23:42,888 INFO [restartedMain] Condition evaluation unchanged -2020-12-17 00:23:43,951 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-17 00:23:43,952 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-17 00:23:43,955 INFO [http-nio-8000-exec-1] Completed initialization in 3 ms -2020-12-17 00:23:43,961 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-17 00:23:45,594 WARN [http-nio-8000-exec-3] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required Boolean parameter 'hadCode' is not present] -2020-12-17 00:23:49,499 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de -2020-12-17 00:24:00,238 WARN [http-nio-8000-exec-9] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required Boolean parameter 'hadCode' is not present] -2020-12-17 00:24:03,345 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-17 00:24:07,861 WARN [http-nio-8000-exec-5] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required Boolean parameter 'hadCode' is not present] -2020-12-17 00:24:11,205 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de -2020-12-17 00:24:41,967 WARN [http-nio-8000-exec-1] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required Boolean parameter 'hadCode' is not present] -2020-12-17 00:24:51,078 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de -2020-12-17 00:26:19,718 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 00:26:19,720 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 00:26:19,721 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown initiated... -2020-12-17 00:26:19,734 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown completed. -2020-12-17 00:26:22,744 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 37302 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 00:26:22,748 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 00:26:22,809 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-17 00:26:22,810 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-17 00:26:23,182 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 00:26:23,233 INFO [restartedMain] Finished Spring Data repository scanning in 45ms. Found 6 JPA repository interfaces. -2020-12-17 00:26:23,953 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 00:26:23,962 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 00:26:23,963 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 00:26:23,963 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 00:26:24,036 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 00:26:24,037 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1226 ms -2020-12-17 00:26:24,200 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 00:26:24,233 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-17 00:26:24,320 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-17 00:26:24,382 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-17 00:26:24,723 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-17 00:26:24,749 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 00:26:25,376 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 00:26:25,383 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 00:26:25,395 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 00:26:25,807 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-17 00:26:25,992 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 00:26:26,091 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 00:26:26,280 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 00:26:26,298 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 00:26:26,311 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.924 seconds (JVM running for 4.487) -2020-12-17 00:26:31,957 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-17 00:26:31,958 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-17 00:26:31,966 INFO [http-nio-8000-exec-1] Completed initialization in 8 ms -2020-12-17 00:26:34,631 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-17 00:26:36,490 WARN [http-nio-8000-exec-5] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required Boolean parameter 'hadCode' is not present] -2020-12-17 00:26:39,597 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de -2020-12-17 00:26:43,180 WARN [http-nio-8000-exec-1] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required Boolean parameter 'hadCode' is not present] -2020-12-17 00:29:05,168 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 00:29:05,170 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 00:29:05,175 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-17 00:29:05,184 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-17 00:29:08,298 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 37635 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 00:29:08,302 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 00:29:08,361 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-17 00:29:08,362 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-17 00:29:08,763 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 00:29:08,818 INFO [restartedMain] Finished Spring Data repository scanning in 49ms. Found 6 JPA repository interfaces. -2020-12-17 00:29:09,471 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 00:29:09,479 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 00:29:09,480 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 00:29:09,480 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 00:29:09,539 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 00:29:09,539 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1177 ms -2020-12-17 00:29:09,710 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 00:29:09,749 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-17 00:29:09,833 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-17 00:29:09,894 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-17 00:29:10,250 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-17 00:29:10,270 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 00:29:10,866 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 00:29:10,875 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 00:29:10,888 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 00:29:11,276 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-17 00:29:11,464 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 00:29:11,562 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 00:29:11,754 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 00:29:11,776 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 00:29:11,787 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.827 seconds (JVM running for 4.416) -2020-12-17 00:29:16,043 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-17 00:29:16,044 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-17 00:29:16,053 INFO [http-nio-8000-exec-1] Completed initialization in 9 ms -2020-12-17 00:29:18,278 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-17 00:29:19,545 WARN [http-nio-8000-exec-6] wrong -2020-12-17 00:29:23,678 WARN [http-nio-8000-exec-8] wrong -2020-12-17 00:29:27,026 WARN [http-nio-8000-exec-10] wrong -2020-12-17 00:29:37,101 WARN [http-nio-8000-exec-2] wrong -2020-12-17 00:29:50,920 WARN [http-nio-8000-exec-4] wrong -2020-12-17 00:30:04,432 WARN [http-nio-8000-exec-6] wrong -2020-12-17 00:30:13,761 WARN [http-nio-8000-exec-8] wrong -2020-12-17 00:30:16,463 WARN [http-nio-8000-exec-10] wrong -2020-12-17 00:30:25,857 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de -2020-12-17 00:31:11,696 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de -2020-12-17 00:31:40,191 WARN [http-nio-8000-exec-1] matched -2020-12-17 00:31:45,431 WARN [http-nio-8000-exec-3] wrong -2020-12-17 00:33:24,206 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 00:33:24,210 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 00:33:24,235 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-17 00:33:24,251 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-17 00:33:27,338 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 37960 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 00:33:27,341 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 00:33:27,405 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-17 00:33:27,406 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-17 00:33:27,775 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 00:33:27,824 INFO [restartedMain] Finished Spring Data repository scanning in 43ms. Found 6 JPA repository interfaces. -2020-12-17 00:33:28,491 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 00:33:28,500 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 00:33:28,501 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 00:33:28,502 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 00:33:28,569 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 00:33:28,570 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1164 ms -2020-12-17 00:33:28,739 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 00:33:28,772 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-17 00:33:28,862 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-17 00:33:28,929 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-17 00:33:29,274 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-17 00:33:29,298 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 00:33:29,929 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 00:33:29,934 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 00:33:29,946 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 00:33:30,367 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-17 00:33:30,550 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 00:33:30,647 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 00:33:30,829 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 00:33:30,847 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 00:33:30,860 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.886 seconds (JVM running for 4.452) -2020-12-17 00:33:35,456 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-17 00:33:35,456 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-17 00:33:35,462 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms -2020-12-17 00:33:37,993 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-17 00:33:38,014 WARN [http-nio-8000-exec-3] no code -2020-12-17 00:33:51,894 WARN [http-nio-8000-exec-5] matched -2020-12-17 00:33:56,350 WARN [http-nio-8000-exec-8] wrong -2020-12-17 00:36:51,967 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 00:36:51,970 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 00:36:51,974 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-17 00:36:51,997 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-17 00:36:55,104 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 38218 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 00:36:55,108 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 00:36:55,181 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-17 00:36:55,182 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-17 00:36:55,623 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 00:36:55,674 INFO [restartedMain] Finished Spring Data repository scanning in 45ms. Found 6 JPA repository interfaces. -2020-12-17 00:36:56,405 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 00:36:56,418 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 00:36:56,419 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 00:36:56,419 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 00:36:56,492 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 00:36:56,492 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1310 ms -2020-12-17 00:36:56,705 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 00:36:56,741 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-17 00:36:56,833 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-17 00:36:56,912 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-17 00:36:57,294 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-17 00:36:57,314 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 00:36:57,909 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 00:36:57,916 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 00:36:57,931 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 00:36:58,340 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-17 00:36:58,558 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 00:36:58,667 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 00:36:58,873 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 00:36:58,892 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 00:36:58,901 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.137 seconds (JVM running for 4.715) -2020-12-17 00:37:04,606 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-17 00:37:04,607 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-17 00:37:04,612 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms -2020-12-17 00:37:06,894 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-17 00:37:06,913 WARN [http-nio-8000-exec-4] no code -2020-12-17 00:37:20,932 WARN [http-nio-8000-exec-6] matched -2020-12-17 00:37:23,629 WARN [http-nio-8000-exec-8] wrong -2020-12-17 00:39:09,619 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 00:39:09,622 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 00:39:09,626 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-17 00:39:09,636 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-17 00:39:12,783 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 38431 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 00:39:12,786 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 00:39:12,841 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-17 00:39:12,842 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-17 00:39:13,291 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 00:39:13,357 INFO [restartedMain] Finished Spring Data repository scanning in 60ms. Found 6 JPA repository interfaces. -2020-12-17 00:39:14,057 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 00:39:14,066 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 00:39:14,067 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 00:39:14,067 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 00:39:14,139 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 00:39:14,140 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1298 ms -2020-12-17 00:39:14,310 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 00:39:14,343 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-17 00:39:14,442 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-17 00:39:14,518 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-17 00:39:14,877 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-17 00:39:14,901 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 00:39:15,550 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 00:39:15,556 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 00:39:15,571 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 00:39:15,968 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-17 00:39:16,173 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 00:39:16,286 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 00:39:16,476 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 00:39:16,500 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 00:39:16,512 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.081 seconds (JVM running for 4.695) -2020-12-17 00:39:21,124 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-17 00:39:21,124 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-17 00:39:21,130 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms -2020-12-17 00:39:23,669 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-17 00:39:23,693 WARN [http-nio-8000-exec-3] no code -2020-12-17 00:40:08,664 WARN [http-nio-8000-exec-5] 560787 -2020-12-17 00:40:08,665 WARN [http-nio-8000-exec-5] matched -2020-12-17 00:40:15,700 WARN [http-nio-8000-exec-7] 560787 -2020-12-17 00:40:15,701 WARN [http-nio-8000-exec-7] wrong -2020-12-17 00:43:28,367 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 00:43:28,369 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 00:43:28,373 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-17 00:43:28,382 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-17 00:43:31,726 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 38742 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 00:43:31,729 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 00:43:31,784 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-17 00:43:31,785 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-17 00:43:32,202 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 00:43:32,260 INFO [restartedMain] Finished Spring Data repository scanning in 52ms. Found 6 JPA repository interfaces. -2020-12-17 00:43:33,000 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 00:43:33,010 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 00:43:33,011 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 00:43:33,012 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 00:43:33,076 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 00:43:33,076 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1291 ms -2020-12-17 00:43:33,277 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 00:43:33,321 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-17 00:43:33,412 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-17 00:43:33,491 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-17 00:43:33,850 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-17 00:43:33,875 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 00:43:34,539 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 00:43:34,547 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 00:43:34,559 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 00:43:35,026 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-17 00:43:35,233 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 00:43:35,350 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 00:43:35,526 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 00:43:35,543 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 00:43:35,555 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.215 seconds (JVM running for 4.801) -2020-12-17 00:43:40,805 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-17 00:43:40,806 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-17 00:43:40,813 INFO [http-nio-8000-exec-1] Completed initialization in 7 ms -2020-12-17 00:43:44,228 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-17 00:43:44,246 WARN [http-nio-8000-exec-3] no code -2020-12-17 00:43:56,767 WARN [http-nio-8000-exec-6] 000931 -2020-12-17 00:43:56,768 WARN [http-nio-8000-exec-6] matched -2020-12-17 00:43:59,919 WARN [http-nio-8000-exec-8] 000931 -2020-12-17 00:43:59,920 WARN [http-nio-8000-exec-8] matched -2020-12-17 00:44:05,670 WARN [http-nio-8000-exec-10] 000931 -2020-12-17 00:44:05,670 WARN [http-nio-8000-exec-10] matched -2020-12-17 00:44:12,753 WARN [http-nio-8000-exec-2] 000931 -2020-12-17 00:44:12,754 WARN [http-nio-8000-exec-2] matched -2020-12-17 00:44:38,690 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de -2020-12-17 00:44:38,694 WARN [http-nio-8000-exec-7] no code -2020-12-17 00:58:14,617 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 00:58:14,619 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 00:58:14,622 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-17 00:58:14,630 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-17 00:58:17,809 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 40900 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 00:58:17,813 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 00:58:17,878 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-17 00:58:17,879 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-17 00:58:18,303 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 00:58:18,365 INFO [restartedMain] Finished Spring Data repository scanning in 55ms. Found 6 JPA repository interfaces. -2020-12-17 00:58:19,117 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 00:58:19,133 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 00:58:19,134 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 00:58:19,134 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 00:58:19,197 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 00:58:19,197 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1318 ms -2020-12-17 00:58:19,374 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 00:58:19,411 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-17 00:58:19,501 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-17 00:58:19,571 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-17 00:58:19,924 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-17 00:58:19,949 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 00:58:20,601 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 00:58:20,608 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 00:58:20,623 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 00:58:21,104 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-17 00:58:21,343 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 00:58:21,456 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 00:58:21,668 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 00:58:21,686 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 00:58:21,695 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.262 seconds (JVM running for 4.835) -2020-12-17 00:58:27,036 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-17 00:58:27,037 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-17 00:58:27,048 INFO [http-nio-8000-exec-1] Completed initialization in 11 ms -2020-12-17 00:58:32,904 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-17 01:00:21,813 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de -2020-12-17 01:00:27,728 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-17 01:01:15,312 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-17 01:01:40,225 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de -2020-12-17 01:01:48,875 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de -2020-12-17 01:02:57,655 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de -2020-12-17 01:03:06,194 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de -2020-12-17 01:03:44,079 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de -2020-12-17 01:04:01,563 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-17 01:05:37,837 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-17 01:06:05,787 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de -2020-12-17 01:06:22,808 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de -2020-12-17 01:07:10,174 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de -2020-12-17 01:07:27,311 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de -2020-12-17 01:07:51,629 WARN [http-nio-8000-exec-7] -2020-12-17 01:07:51,630 WARN [http-nio-8000-exec-7] wrong -2020-12-17 01:07:54,817 WARN [http-nio-8000-exec-9] -2020-12-17 01:07:54,818 WARN [http-nio-8000-exec-9] wrong -2020-12-17 01:07:55,654 WARN [http-nio-8000-exec-1] -2020-12-17 01:07:55,654 WARN [http-nio-8000-exec-1] wrong -2020-12-17 01:07:56,331 WARN [http-nio-8000-exec-3] -2020-12-17 01:07:56,331 WARN [http-nio-8000-exec-3] wrong -2020-12-17 01:07:56,984 WARN [http-nio-8000-exec-5] -2020-12-17 01:07:56,985 WARN [http-nio-8000-exec-5] wrong -2020-12-17 01:08:00,892 WARN [http-nio-8000-exec-7] -2020-12-17 01:08:00,892 WARN [http-nio-8000-exec-7] wrong -2020-12-17 01:08:17,354 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 01:08:17,357 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 01:08:17,362 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-17 01:08:17,372 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-17 01:08:19,641 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 42201 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 01:08:19,644 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 01:08:19,712 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-17 01:08:19,712 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-17 01:08:20,158 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 01:08:20,226 INFO [restartedMain] Finished Spring Data repository scanning in 58ms. Found 6 JPA repository interfaces. -2020-12-17 01:08:20,936 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 01:08:20,946 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 01:08:20,946 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 01:08:20,947 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 01:08:21,021 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 01:08:21,022 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1309 ms -2020-12-17 01:08:21,218 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 01:08:21,253 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-17 01:08:21,358 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-17 01:08:21,430 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-17 01:08:21,855 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-17 01:08:21,879 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 01:08:22,563 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 01:08:22,569 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 01:08:22,582 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 01:08:23,067 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-17 01:08:23,314 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 01:08:23,426 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 01:08:23,652 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 01:08:23,690 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 01:08:23,701 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.446 seconds (JVM running for 5.08) -2020-12-17 01:08:29,110 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-17 01:08:29,111 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-17 01:08:29,119 INFO [http-nio-8000-exec-1] Completed initialization in 8 ms -2020-12-17 01:08:32,005 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-17 01:09:11,341 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de -2020-12-17 01:09:39,590 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de -2020-12-17 01:10:12,411 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-17 01:10:56,040 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-17 01:11:14,442 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de -2020-12-17 01:12:54,537 WARN [http-nio-8000-exec-1] 151308 -2020-12-17 01:12:54,538 WARN [http-nio-8000-exec-1] matched -2020-12-17 01:12:59,210 WARN [http-nio-8000-exec-4] 151308 -2020-12-17 01:12:59,210 WARN [http-nio-8000-exec-4] matched -2020-12-17 01:13:08,701 WARN [http-nio-8000-exec-8] 151308 -2020-12-17 01:13:08,702 WARN [http-nio-8000-exec-8] matched -2020-12-17 01:13:50,560 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de -2020-12-17 01:34:00,486 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 01:34:00,489 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 01:34:00,493 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-17 01:34:00,503 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-17 01:34:03,300 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 43280 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 01:34:03,303 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 01:34:03,379 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-17 01:34:03,380 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-17 01:34:03,781 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 01:34:03,842 INFO [restartedMain] Finished Spring Data repository scanning in 52ms. Found 6 JPA repository interfaces. -2020-12-17 01:34:04,515 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 01:34:04,527 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 01:34:04,528 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 01:34:04,528 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 01:34:04,613 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 01:34:04,613 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1233 ms -2020-12-17 01:34:04,805 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 01:34:04,839 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-17 01:34:04,937 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-17 01:34:05,009 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-17 01:34:05,364 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-17 01:34:05,385 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 01:34:06,036 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 01:34:06,042 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 01:34:06,055 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 01:34:06,493 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-17 01:34:06,744 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 01:34:06,867 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 01:34:07,067 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 01:34:07,084 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 01:34:07,097 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.161 seconds (JVM running for 4.816) -2020-12-17 01:34:30,968 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-17 01:34:30,969 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-17 01:34:30,980 INFO [http-nio-8000-exec-1] Completed initialization in 11 ms -2020-12-17 01:34:33,530 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-17 01:34:33,556 WARN [http-nio-8000-exec-4] no code -2020-12-17 01:35:02,444 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 01:35:02,447 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 01:35:02,451 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-17 01:35:02,461 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-17 01:35:05,295 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 43517 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 01:35:05,299 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 01:35:05,364 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-17 01:35:05,365 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-17 01:35:05,738 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 01:35:05,798 INFO [restartedMain] Finished Spring Data repository scanning in 55ms. Found 6 JPA repository interfaces. -2020-12-17 01:35:06,432 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 01:35:06,444 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 01:35:06,446 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 01:35:06,446 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 01:35:06,515 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 01:35:06,516 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1151 ms -2020-12-17 01:35:06,697 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 01:35:06,732 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-17 01:35:06,833 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-17 01:35:06,901 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-17 01:35:07,264 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-17 01:35:07,285 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 01:35:07,935 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 01:35:07,944 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 01:35:07,961 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 01:35:08,396 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-17 01:35:08,614 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 01:35:08,720 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 01:35:08,911 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 01:35:08,931 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 01:35:08,942 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.011 seconds (JVM running for 4.642) -2020-12-17 01:35:24,084 INFO [http-nio-8000-exec-2] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-17 01:35:24,085 INFO [http-nio-8000-exec-2] Initializing Servlet 'dispatcherServlet' -2020-12-17 01:35:24,090 INFO [http-nio-8000-exec-2] Completed initialization in 5 ms -2020-12-17 01:35:37,878 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-17 01:35:37,899 WARN [http-nio-8000-exec-1] no code -2020-12-17 01:37:12,144 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 01:37:12,148 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 01:37:12,152 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-17 01:37:12,163 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-17 01:37:15,001 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 43827 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 01:37:15,005 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 01:37:15,069 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-17 01:37:15,070 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-17 01:37:15,458 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 01:37:15,505 INFO [restartedMain] Finished Spring Data repository scanning in 41ms. Found 6 JPA repository interfaces. -2020-12-17 01:37:16,213 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 01:37:16,222 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 01:37:16,222 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 01:37:16,223 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 01:37:16,300 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 01:37:16,301 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1231 ms -2020-12-17 01:37:16,493 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 01:37:16,529 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-17 01:37:16,618 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-17 01:37:16,687 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-17 01:37:17,095 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-17 01:37:17,121 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 01:37:17,761 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 01:37:17,768 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 01:37:17,784 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 01:37:18,273 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-17 01:37:18,555 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 01:37:18,694 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 01:37:18,918 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 01:37:18,943 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 01:37:18,955 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.344 seconds (JVM running for 4.935) -2020-12-17 01:37:24,122 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-17 01:37:24,123 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-17 01:37:24,133 INFO [http-nio-8000-exec-1] Completed initialization in 10 ms -2020-12-17 01:37:26,412 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-17 01:37:26,434 WARN [http-nio-8000-exec-4] no code -2020-12-17 01:41:26,906 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 01:41:26,910 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 01:41:26,915 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-17 01:41:26,926 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-17 01:41:29,780 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 44352 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 01:41:29,783 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 01:41:29,841 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-17 01:41:29,841 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-17 01:41:30,228 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 01:41:30,277 INFO [restartedMain] Finished Spring Data repository scanning in 42ms. Found 6 JPA repository interfaces. -2020-12-17 01:41:30,916 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 01:41:30,929 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 01:41:30,930 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 01:41:30,930 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 01:41:30,997 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 01:41:30,997 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1155 ms -2020-12-17 01:41:31,201 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 01:41:31,248 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-17 01:41:31,338 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-17 01:41:31,409 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-17 01:41:31,772 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-17 01:41:31,793 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 01:41:32,436 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 01:41:32,443 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 01:41:32,455 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 01:41:32,907 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-17 01:41:33,137 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 01:41:33,257 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 01:41:33,462 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 01:41:33,482 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 01:41:33,492 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.075 seconds (JVM running for 4.678) -2020-12-17 01:41:44,257 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-17 01:41:44,258 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-17 01:41:44,269 INFO [http-nio-8000-exec-1] Completed initialization in 11 ms -2020-12-17 01:41:47,077 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-17 01:42:13,172 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 01:42:13,175 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 01:42:13,178 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-17 01:42:13,186 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-17 01:42:16,318 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 44532 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 01:42:16,320 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 01:42:16,373 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-17 01:42:16,373 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-17 01:42:16,754 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 01:42:16,811 INFO [restartedMain] Finished Spring Data repository scanning in 49ms. Found 6 JPA repository interfaces. -2020-12-17 01:42:17,520 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 01:42:17,535 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 01:42:17,535 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 01:42:17,536 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 01:42:17,601 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 01:42:17,602 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1228 ms -2020-12-17 01:42:17,782 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 01:42:17,817 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-17 01:42:17,920 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-17 01:42:17,996 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-17 01:42:18,375 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-17 01:42:18,402 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 01:42:19,113 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 01:42:19,119 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 01:42:19,138 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 01:42:19,561 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-17 01:42:19,785 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 01:42:19,902 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 01:42:20,093 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 01:42:20,107 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 01:42:20,118 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.147 seconds (JVM running for 4.776) -2020-12-17 01:42:23,177 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-17 01:42:23,178 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-17 01:42:23,187 INFO [http-nio-8000-exec-1] Completed initialization in 9 ms -2020-12-17 01:42:25,509 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-17 01:42:43,228 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de -2020-12-17 01:42:43,235 WARN [http-nio-8000-exec-5] no code -2020-12-17 01:43:02,181 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de -2020-12-17 01:43:02,187 WARN [http-nio-8000-exec-7] no code -2020-12-17 01:43:15,008 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de -2020-12-17 01:43:23,894 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-17 01:43:23,900 WARN [http-nio-8000-exec-1] no code -2020-12-17 01:44:21,890 WARN [http-nio-8000-exec-3] 146059 -2020-12-17 01:44:21,891 WARN [http-nio-8000-exec-3] matched -2020-12-17 01:44:25,376 WARN [http-nio-8000-exec-5] 146059 -2020-12-17 01:44:25,376 WARN [http-nio-8000-exec-5] matched -2020-12-17 01:44:33,503 WARN [http-nio-8000-exec-7] 146059 -2020-12-17 01:44:33,504 WARN [http-nio-8000-exec-7] matched -2020-12-17 01:45:33,798 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de -2020-12-17 02:25:34,204 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 02:25:34,205 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 02:25:34,209 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-17 02:25:34,224 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-17 02:25:36,549 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 46477 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 02:25:36,553 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 02:25:36,627 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-17 02:25:36,628 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-17 02:25:37,084 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 02:25:37,138 INFO [restartedMain] Finished Spring Data repository scanning in 49ms. Found 6 JPA repository interfaces. -2020-12-17 02:25:37,849 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 02:25:37,859 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 02:25:37,860 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 02:25:37,860 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 02:25:37,925 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 02:25:37,926 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1298 ms -2020-12-17 02:25:38,121 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 02:25:38,157 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-17 02:25:38,267 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-17 02:25:38,347 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-17 02:25:38,717 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-17 02:25:38,742 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 02:25:39,445 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 02:25:39,454 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 02:25:39,466 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 02:25:39,883 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-17 02:25:40,085 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 02:25:40,212 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 02:25:40,439 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 02:25:40,457 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 02:25:40,470 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.345 seconds (JVM running for 4.965) -2020-12-17 02:25:46,253 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-17 02:25:46,254 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-17 02:25:46,265 INFO [http-nio-8000-exec-1] Completed initialization in 11 ms -2020-12-17 02:25:48,999 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-17 02:25:54,148 ERROR [http-nio-8000-exec-3] simon.bussmann@adolfinum.de is not allowed to vote -2020-12-17 02:26:04,437 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de -2020-12-17 02:26:11,170 WARN [http-nio-8000-exec-9] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'name' is not present] -2020-12-17 02:26:16,756 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-17 02:29:11,268 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de -2020-12-17 02:29:50,616 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de -2020-12-17 02:30:44,302 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-17 02:31:03,190 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de -2020-12-17 02:31:33,963 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de -2020-12-17 02:32:09,168 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-17 02:32:37,921 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-17 02:33:06,298 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de -2020-12-17 02:33:13,096 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-17 02:34:10,287 WARN [http-nio-8000-exec-3] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'name' is not present] -2020-12-17 02:34:13,821 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de -2020-12-17 02:34:42,279 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 02:34:42,280 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 02:34:42,286 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-17 02:34:42,296 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-17 02:34:44,649 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 47536 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 02:34:44,651 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 02:34:44,727 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-17 02:34:44,728 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-17 02:34:45,175 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 02:34:45,230 INFO [restartedMain] Finished Spring Data repository scanning in 49ms. Found 6 JPA repository interfaces. -2020-12-17 02:34:45,967 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 02:34:45,978 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 02:34:45,979 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 02:34:45,980 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 02:34:46,054 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 02:34:46,055 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1327 ms -2020-12-17 02:34:46,245 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 02:34:46,281 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-17 02:34:46,382 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-17 02:34:46,469 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-17 02:34:46,878 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-17 02:34:46,909 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 02:34:47,596 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 02:34:47,605 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 02:34:47,620 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 02:34:48,085 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-17 02:34:48,302 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 02:34:48,448 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 02:34:48,671 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 02:34:48,690 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 02:34:48,701 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.445 seconds (JVM running for 5.068) -2020-12-17 02:34:51,118 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-17 02:34:51,119 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-17 02:34:51,128 INFO [http-nio-8000-exec-1] Completed initialization in 9 ms -2020-12-17 02:34:53,620 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-17 02:35:50,343 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de -2020-12-17 02:35:57,472 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-17 02:37:26,223 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-17 02:38:02,792 WARN [http-nio-8000-exec-7] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'name' is not present] -2020-12-17 02:38:09,878 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-17 02:38:26,575 WARN [http-nio-8000-exec-3] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'name' is not present] -2020-12-17 02:38:29,892 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de -2020-12-17 02:39:29,090 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de -2020-12-17 02:39:44,331 WARN [http-nio-8000-exec-1] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'name' is not present] -2020-12-17 02:39:47,981 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de -2020-12-17 02:40:09,202 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de -2020-12-17 02:40:26,904 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de -2020-12-17 02:44:19,690 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de -2020-12-17 02:44:48,902 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de -2020-12-17 02:45:26,568 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de -2020-12-17 02:45:56,865 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de -2020-12-17 02:46:10,887 WARN [http-nio-8000-exec-1] 146059 -2020-12-17 02:46:10,887 WARN [http-nio-8000-exec-1] wrong -2020-12-17 02:50:46,437 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 02:50:46,440 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 02:50:46,445 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-17 02:50:46,454 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-17 02:50:49,794 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 49135 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 02:50:49,799 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 02:50:49,867 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-17 02:50:49,868 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-17 02:50:50,327 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 02:50:50,385 INFO [restartedMain] Finished Spring Data repository scanning in 51ms. Found 6 JPA repository interfaces. -2020-12-17 02:50:51,087 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 02:50:51,097 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 02:50:51,098 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 02:50:51,098 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 02:50:51,160 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 02:50:51,160 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1291 ms -2020-12-17 02:50:51,321 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 02:50:51,353 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-17 02:50:51,444 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-17 02:50:51,513 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-17 02:50:51,934 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-17 02:50:51,963 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 02:50:52,646 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 02:50:52,655 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 02:50:52,670 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 02:50:53,151 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-17 02:50:53,392 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 02:50:53,516 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 02:50:53,745 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 02:50:53,766 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 02:50:53,778 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.403 seconds (JVM running for 5.036) -2020-12-17 02:51:06,752 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 02:51:06,755 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 02:51:06,759 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-17 02:51:06,771 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-17 02:51:08,961 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 49280 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 02:51:08,965 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 02:51:09,029 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-17 02:51:09,030 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-17 02:51:09,447 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 02:51:09,503 INFO [restartedMain] Finished Spring Data repository scanning in 50ms. Found 6 JPA repository interfaces. -2020-12-17 02:51:10,212 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 02:51:10,222 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 02:51:10,222 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 02:51:10,223 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 02:51:10,290 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 02:51:10,291 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1261 ms -2020-12-17 02:51:10,477 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 02:51:10,513 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-17 02:51:10,602 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-17 02:51:10,676 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-17 02:51:11,044 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-17 02:51:11,065 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 02:51:11,704 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 02:51:11,709 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 02:51:11,723 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 02:51:12,298 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-17 02:51:12,541 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 02:51:12,663 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 02:51:12,874 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 02:51:12,892 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 02:51:12,906 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.295 seconds (JVM running for 4.901) -2020-12-17 02:51:16,709 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-17 02:51:16,711 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-17 02:51:16,716 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms -2020-12-17 02:51:16,768 WARN [http-nio-8000-exec-1] 146059 -2020-12-17 02:51:16,768 WARN [http-nio-8000-exec-1] wrong -2020-12-17 02:51:19,286 WARN [http-nio-8000-exec-4] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'name' is not present] -2020-12-17 02:52:05,865 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 02:52:05,868 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 02:52:05,872 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-17 02:52:05,881 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-17 02:52:08,078 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 49395 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 02:52:08,080 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 02:52:08,138 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-17 02:52:08,138 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-17 02:52:08,574 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 02:52:08,630 INFO [restartedMain] Finished Spring Data repository scanning in 48ms. Found 6 JPA repository interfaces. -2020-12-17 02:52:09,308 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 02:52:09,318 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 02:52:09,319 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 02:52:09,319 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 02:52:09,392 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 02:52:09,393 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1255 ms -2020-12-17 02:52:09,615 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 02:52:09,660 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-17 02:52:09,761 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-17 02:52:09,873 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-17 02:52:10,267 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-17 02:52:10,288 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 02:52:10,948 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 02:52:10,955 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 02:52:10,971 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 02:52:11,459 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-17 02:52:11,677 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 02:52:11,823 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 02:52:12,098 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 02:52:12,119 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 02:52:12,128 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.416 seconds (JVM running for 5.023) -2020-12-17 02:52:21,618 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-17 02:52:21,619 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-17 02:52:21,628 INFO [http-nio-8000-exec-1] Completed initialization in 8 ms -2020-12-17 02:52:21,664 WARN [http-nio-8000-exec-1] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'name' is not present] -2020-12-17 02:52:24,135 WARN [http-nio-8000-exec-3] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'name' is not present] -2020-12-17 02:52:27,954 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de -2020-12-17 02:52:32,182 WARN [http-nio-8000-exec-9] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'name' is not present] -2020-12-17 02:52:36,483 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-17 02:53:16,630 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de -2020-12-17 02:53:18,705 WARN [http-nio-8000-exec-7] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'name' is not present] -2020-12-17 02:54:06,884 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de -2020-12-17 02:54:13,161 ERROR [http-nio-8000-exec-9] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.mail.MailSendException: Mail server connection failed; nested exception is javax.mail.MessagingException: Exception reading response; - nested exception is: - java.net.SocketTimeoutException: Read timed out. Failed messages: javax.mail.MessagingException: Exception reading response; - nested exception is: - java.net.SocketTimeoutException: Read timed out; message exceptions (1) are: -Failed message 1: javax.mail.MessagingException: Exception reading response; - nested exception is: - java.net.SocketTimeoutException: Read timed out] with root cause -java.net.SocketTimeoutException: Read timed out - at java.base/java.net.SocketInputStream.socketRead0(Native Method) - at java.base/java.net.SocketInputStream.socketRead(SocketInputStream.java:115) - at java.base/java.net.SocketInputStream.read(SocketInputStream.java:168) - at java.base/java.net.SocketInputStream.read(SocketInputStream.java:140) - at com.sun.mail.util.TraceInputStream.read(TraceInputStream.java:102) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:252) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:271) - at com.sun.mail.util.LineInputStream.readLine(LineInputStream.java:100) - at com.sun.mail.smtp.SMTPTransport.readServerResponse(SMTPTransport.java:2456) - at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:2172) - at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:722) - at javax.mail.Service.connect(Service.java:342) - at org.springframework.mail.javamail.JavaMailSenderImpl.connectTransport(JavaMailSenderImpl.java:518) - at org.springframework.mail.javamail.JavaMailSenderImpl.doSend(JavaMailSenderImpl.java:437) - at org.springframework.mail.javamail.JavaMailSenderImpl.send(JavaMailSenderImpl.java:323) - at org.springframework.mail.javamail.JavaMailSenderImpl.send(JavaMailSenderImpl.java:312) - at com.github.cato447.AbizeitungVotingSystem.controller.VotingController.sendSimpleMessage(VotingController.java:105) - at com.github.cato447.AbizeitungVotingSystem.controller.VotingController.provideNewCode(VotingController.java:151) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:566) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:878) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:792) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-17 02:54:51,323 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-17 02:55:22,546 ERROR [http-nio-8000-exec-6] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.mail.MailSendException: Mail server connection failed; nested exception is javax.mail.MessagingException: Exception reading response; - nested exception is: - java.net.SocketTimeoutException: Read timed out. Failed messages: javax.mail.MessagingException: Exception reading response; - nested exception is: - java.net.SocketTimeoutException: Read timed out; message exceptions (1) are: -Failed message 1: javax.mail.MessagingException: Exception reading response; - nested exception is: - java.net.SocketTimeoutException: Read timed out] with root cause -java.net.SocketTimeoutException: Read timed out - at java.base/java.net.SocketInputStream.socketRead0(Native Method) - at java.base/java.net.SocketInputStream.socketRead(SocketInputStream.java:115) - at java.base/java.net.SocketInputStream.read(SocketInputStream.java:168) - at java.base/java.net.SocketInputStream.read(SocketInputStream.java:140) - at com.sun.mail.util.TraceInputStream.read(TraceInputStream.java:102) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:252) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:271) - at com.sun.mail.util.LineInputStream.readLine(LineInputStream.java:100) - at com.sun.mail.smtp.SMTPTransport.readServerResponse(SMTPTransport.java:2456) - at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:2172) - at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:722) - at javax.mail.Service.connect(Service.java:342) - at org.springframework.mail.javamail.JavaMailSenderImpl.connectTransport(JavaMailSenderImpl.java:518) - at org.springframework.mail.javamail.JavaMailSenderImpl.doSend(JavaMailSenderImpl.java:437) - at org.springframework.mail.javamail.JavaMailSenderImpl.send(JavaMailSenderImpl.java:323) - at org.springframework.mail.javamail.JavaMailSenderImpl.send(JavaMailSenderImpl.java:312) - at com.github.cato447.AbizeitungVotingSystem.controller.VotingController.sendSimpleMessage(VotingController.java:105) - at com.github.cato447.AbizeitungVotingSystem.controller.VotingController.provideNewCode(VotingController.java:151) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:566) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:878) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:792) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-17 02:55:31,154 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de -2020-12-17 02:56:51,692 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 02:56:51,695 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 02:56:51,699 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-17 02:56:51,708 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-17 02:56:53,969 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 49836 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 02:56:53,972 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 02:56:54,042 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-17 02:56:54,042 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-17 02:56:54,480 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 02:56:54,540 INFO [restartedMain] Finished Spring Data repository scanning in 53ms. Found 6 JPA repository interfaces. -2020-12-17 02:56:55,254 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 02:56:55,265 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 02:56:55,266 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 02:56:55,266 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 02:56:55,332 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 02:56:55,333 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1289 ms -2020-12-17 02:56:55,517 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 02:56:55,553 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-17 02:56:55,647 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-17 02:56:55,716 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-17 02:56:56,086 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-17 02:56:56,118 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 02:56:56,828 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 02:56:56,833 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 02:56:56,848 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 02:56:57,302 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-17 02:56:57,528 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 02:56:57,636 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 02:56:57,850 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 02:56:57,868 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 02:56:57,880 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.282 seconds (JVM running for 4.921) -2020-12-17 02:57:03,943 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-17 02:57:03,943 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-17 02:57:03,952 INFO [http-nio-8000-exec-1] Completed initialization in 9 ms -2020-12-17 02:57:06,651 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-17 02:57:06,673 WARN [http-nio-8000-exec-4] no code -2020-12-17 02:57:11,787 ERROR [http-nio-8000-exec-4] simon.bussmann@adolfinum.de is not allowed to vote -2020-12-17 02:57:50,723 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de -2020-12-17 02:59:27,414 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-17 02:59:27,422 WARN [http-nio-8000-exec-4] no code -2020-12-17 02:59:32,474 ERROR [http-nio-8000-exec-4] simon.bussmann@adolfinum.de is not allowed to vote -2020-12-17 03:04:25,022 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 03:04:25,024 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 03:04:25,033 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-17 03:04:25,043 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-17 03:04:28,442 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 50254 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 03:04:28,446 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 03:04:28,507 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-17 03:04:28,508 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-17 03:04:28,984 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 03:04:29,042 INFO [restartedMain] Finished Spring Data repository scanning in 52ms. Found 6 JPA repository interfaces. -2020-12-17 03:04:29,835 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 03:04:29,847 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 03:04:29,848 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 03:04:29,849 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 03:04:29,944 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 03:04:29,944 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1436 ms -2020-12-17 03:04:30,156 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 03:04:30,194 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-17 03:04:30,303 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-17 03:04:30,375 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-17 03:04:30,794 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-17 03:04:30,823 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 03:04:31,666 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 03:04:31,677 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 03:04:31,698 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 03:04:32,274 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-17 03:04:32,518 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 03:04:32,642 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 03:04:32,908 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 03:04:32,931 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 03:04:32,945 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.904 seconds (JVM running for 5.575) -2020-12-17 03:04:41,568 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-17 03:04:41,569 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-17 03:04:41,577 INFO [http-nio-8000-exec-1] Completed initialization in 8 ms -2020-12-17 03:04:44,803 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-17 03:04:56,186 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de -2020-12-17 03:04:56,196 WARN [http-nio-8000-exec-9] no code -2020-12-17 03:07:47,337 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 03:07:47,340 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 03:07:47,345 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-17 03:07:47,353 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-17 03:07:50,812 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 50470 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 03:07:50,816 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 03:07:50,879 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-17 03:07:50,879 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-17 03:07:51,328 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 03:07:51,397 INFO [restartedMain] Finished Spring Data repository scanning in 63ms. Found 6 JPA repository interfaces. -2020-12-17 03:07:52,154 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 03:07:52,164 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 03:07:52,165 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 03:07:52,166 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 03:07:52,233 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 03:07:52,233 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1353 ms -2020-12-17 03:07:52,443 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 03:07:52,483 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-17 03:07:52,587 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-17 03:07:52,679 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-17 03:07:53,049 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-17 03:07:53,076 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 03:07:53,756 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 03:07:53,766 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 03:07:53,784 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 03:07:54,267 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-17 03:07:54,487 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 03:07:54,591 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 03:07:54,815 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 03:07:54,835 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 03:07:54,846 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.433 seconds (JVM running for 5.075) -2020-12-17 03:08:03,213 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-17 03:08:03,215 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-17 03:08:03,222 INFO [http-nio-8000-exec-1] Completed initialization in 7 ms -2020-12-17 03:08:03,251 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-17 03:08:16,489 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de -2020-12-17 03:08:16,497 WARN [http-nio-8000-exec-5] no code -2020-12-17 03:08:28,122 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de -2020-12-17 03:08:28,131 WARN [http-nio-8000-exec-9] no code -2020-12-17 03:08:36,769 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-17 03:08:36,778 WARN [http-nio-8000-exec-3] no code -2020-12-17 03:09:33,806 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-17 03:09:33,809 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 03:09:33,815 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-17 03:09:33,824 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-17 03:09:36,053 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 50799 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-17 03:09:36,055 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-17 03:09:36,153 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-17 03:09:36,154 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-17 03:09:36,654 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-17 03:09:36,711 INFO [restartedMain] Finished Spring Data repository scanning in 49ms. Found 6 JPA repository interfaces. -2020-12-17 03:09:37,500 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-17 03:09:37,509 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-17 03:09:37,510 INFO [restartedMain] Starting service [Tomcat] -2020-12-17 03:09:37,511 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-17 03:09:37,583 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-17 03:09:37,583 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1429 ms -2020-12-17 03:09:37,750 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-17 03:09:37,782 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-17 03:09:37,888 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-17 03:09:37,967 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-17 03:09:38,371 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-17 03:09:38,399 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-17 03:09:39,232 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-17 03:09:39,240 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-17 03:09:39,255 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-17 03:09:39,703 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-17 03:09:39,930 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-17 03:09:40,051 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-17 03:09:40,294 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-17 03:09:40,324 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-17 03:09:40,337 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.682 seconds (JVM running for 5.3) -2020-12-17 03:09:47,082 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-17 03:09:47,083 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-17 03:09:47,093 INFO [http-nio-8000-exec-1] Completed initialization in 10 ms -2020-12-17 03:09:49,636 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-17 03:09:49,659 WARN [http-nio-8000-exec-3] no code +2020-12-18 18:48:41,507 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 7171 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-18 18:48:41,513 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-18 18:48:41,572 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-18 18:48:41,572 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-18 18:48:41,992 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-18 18:48:42,052 INFO [restartedMain] Finished Spring Data repository scanning in 50ms. Found 6 JPA repository interfaces. +2020-12-18 18:48:42,698 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-18 18:48:42,708 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-18 18:48:42,709 INFO [restartedMain] Starting service [Tomcat] +2020-12-18 18:48:42,709 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-18 18:48:42,771 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-18 18:48:42,771 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1199 ms +2020-12-18 18:48:42,937 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-18 18:48:42,984 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-18 18:48:43,101 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-18 18:48:43,174 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-18 18:48:43,588 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-18 18:48:43,613 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-18 18:48:44,267 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-18 18:48:44,274 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-18 18:48:44,285 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-18 18:48:44,677 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-18 18:48:44,876 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-18 18:48:44,980 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-18 18:48:45,147 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-18 18:48:45,165 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-18 18:48:45,176 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.024 seconds (JVM running for 4.792) +2020-12-18 18:48:55,339 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-18 18:48:55,339 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-18 18:48:55,345 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms +2020-12-18 18:48:59,716 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2020-12-18 18:48:59,734 WARN [http-nio-8000-exec-4] no code +2020-12-18 18:49:08,908 WARN [http-nio-8000-exec-6] 513389 +2020-12-18 18:49:08,908 WARN [http-nio-8000-exec-6] matched +2020-12-18 18:50:11,913 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-18 18:50:11,917 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-18 18:50:11,921 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-18 18:50:11,931 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-18 18:50:15,481 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 7472 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-18 18:50:15,484 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-18 18:50:15,537 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-18 18:50:15,537 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-18 18:50:15,947 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-18 18:50:15,996 INFO [restartedMain] Finished Spring Data repository scanning in 43ms. Found 6 JPA repository interfaces. +2020-12-18 18:50:16,627 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-18 18:50:16,636 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-18 18:50:16,636 INFO [restartedMain] Starting service [Tomcat] +2020-12-18 18:50:16,637 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-18 18:50:16,709 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-18 18:50:16,710 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1173 ms +2020-12-18 18:50:16,878 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-18 18:50:16,910 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-18 18:50:16,993 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-18 18:50:17,055 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-18 18:50:17,377 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-18 18:50:17,398 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-18 18:50:18,022 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-18 18:50:18,029 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-18 18:50:18,041 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-18 18:50:18,430 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-18 18:50:18,594 INFO [restartedMain] Categories successfully set up +2020-12-18 18:50:18,649 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-18 18:50:18,741 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-18 18:50:18,905 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-18 18:50:18,922 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-18 18:50:18,935 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.794 seconds (JVM running for 4.355) +2020-12-18 18:50:31,589 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-18 18:50:31,590 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-18 18:50:31,595 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms +2020-12-18 18:50:34,686 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-18 18:51:11,195 WARN [http-nio-8000-exec-5] 513389 +2020-12-18 18:51:11,195 WARN [http-nio-8000-exec-5] matched +2020-12-18 18:52:21,822 WARN [http-nio-8000-exec-8] 513389 +2020-12-18 18:52:21,823 WARN [http-nio-8000-exec-8] matched +2020-12-18 18:53:08,080 WARN [http-nio-8000-exec-1] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'code' is not present] +2020-12-18 18:53:11,131 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de +2020-12-18 18:53:27,497 WARN [http-nio-8000-exec-7] 513389 +2020-12-18 18:53:27,498 WARN [http-nio-8000-exec-7] matched +2020-12-18 18:56:02,892 WARN [http-nio-8000-exec-10] 513389 +2020-12-18 18:56:02,892 WARN [http-nio-8000-exec-10] matched +2020-12-18 18:56:14,142 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2020-12-18 18:56:24,707 WARN [http-nio-8000-exec-6] 513389 +2020-12-18 18:56:24,707 WARN [http-nio-8000-exec-6] matched diff --git a/src/main/resources/Categories.txt b/src/main/resources/Categories.txt index 676c71e..3974196 100644 --- a/src/main/resources/Categories.txt +++ b/src/main/resources/Categories.txt @@ -1,28 +1,21 @@ Nesthocker Beste Ausreden -Mathegötter (erklärend) -Falscher Beruf Verfressenste Ehre wem Ehre gebührt - Die Engagiertesten Verhandlungskünstler Stufenclown -Größte Sauklaue (Lehrer) Knacki -Traumpaar (Schüler) -Lehrerbuddies -Lebt den Beruf -Lexikon (Schüler) +Traumpaar +Lexikon Harzer -Unvergesslich (Schüler) -Unvergesslich (Lehrer) -Schülerschreck +Unvergesslich Größter Klugscheißer Future Celebrity Pornhub als Abendbeschäftigung Größte/r Schnorrer/in Hat gefühlt die meisten Fehlstunden Größte Diva -Weltherrschaft 2040 (Schüler) +Weltherrschaft 2040 Größte Labertasche Sonnenschein Kleinster Aufwand, größter Erfolg @@ -39,4 +32,11 @@ Augenschmaus (M) Lästermaul Notenwürfler Macht alles außer Unterricht -Übermotiviert \ No newline at end of file +Übermotiviert +Schülerschreck +Mathegötter (der/die beste Mathelehrer/in) +Falscher Beruf +Größte Sauklaue +Lehrerbuddies +Lebt den Beruf +Unvergesslich \ No newline at end of file diff --git a/src/main/resources/static/styles/addingCandidates.css b/src/main/resources/static/styles/addingCandidates.css index 10be17b..9aac8ac 100644 --- a/src/main/resources/static/styles/addingCandidates.css +++ b/src/main/resources/static/styles/addingCandidates.css @@ -20,15 +20,18 @@ body { } h1 { - margin-top: 5%; color: #FFF; - margin-bottom: 5%; } -h2.categoryHeader { +h2 { color: #FFF; } +h2.categoryCategory { + margin-top: 5%; + margin-bottom: 1%; +} + input { background: #bb1515b2; border: none; @@ -41,7 +44,6 @@ input { .submitButton { margin-top: 5%; - margin-bottom: 5%; border: 0; outline: 0; background: #bb1515; diff --git a/src/main/resources/templates/addingCandidates.html b/src/main/resources/templates/addingCandidates.html index 4db657a..aa7f958 100644 --- a/src/main/resources/templates/addingCandidates.html +++ b/src/main/resources/templates/addingCandidates.html @@ -42,8 +42,14 @@
+
+

Lehrer

+
+
+

Schüler

+

- +
From fb7b0271b313068dc57db995a8f871bfbc800f42 Mon Sep 17 00:00:00 2001 From: Simon Date: Fri, 18 Dec 2020 19:04:12 +0100 Subject: [PATCH 10/35] Removed code pass through --- logs/Voting.log | 76 +++++++++++++++++++ .../controller/VotingController.java | 12 +-- .../table/TableAction.java | 1 + .../static/styles/addingCandidates.css | 1 + 4 files changed, 81 insertions(+), 9 deletions(-) diff --git a/logs/Voting.log b/logs/Voting.log index dec608e..642280f 100644 --- a/logs/Voting.log +++ b/logs/Voting.log @@ -81,3 +81,79 @@ 2020-12-18 18:56:14,142 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de 2020-12-18 18:56:24,707 WARN [http-nio-8000-exec-6] 513389 2020-12-18 18:56:24,707 WARN [http-nio-8000-exec-6] matched +2020-12-18 18:59:40,836 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-18 18:59:40,840 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-18 18:59:40,844 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-18 18:59:40,857 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-18 18:59:43,049 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 8537 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-18 18:59:43,053 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-18 18:59:43,098 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-18 18:59:43,099 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-18 18:59:43,445 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-18 18:59:43,489 INFO [restartedMain] Finished Spring Data repository scanning in 39ms. Found 6 JPA repository interfaces. +2020-12-18 18:59:44,087 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-18 18:59:44,095 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-18 18:59:44,096 INFO [restartedMain] Starting service [Tomcat] +2020-12-18 18:59:44,096 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-18 18:59:44,153 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-18 18:59:44,154 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1055 ms +2020-12-18 18:59:44,318 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-18 18:59:44,360 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-18 18:59:44,449 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-18 18:59:44,516 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-18 18:59:44,869 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-18 18:59:44,889 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-18 18:59:45,479 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-18 18:59:45,487 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-18 18:59:45,501 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-18 18:59:45,960 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-18 18:59:46,131 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-18 18:59:46,244 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-18 18:59:46,446 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-18 18:59:46,468 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-18 18:59:46,477 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.797 seconds (JVM running for 4.416) +2020-12-18 18:59:52,929 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-18 18:59:52,930 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-18 18:59:52,937 INFO [http-nio-8000-exec-1] Completed initialization in 7 ms +2020-12-18 18:59:55,289 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-18 19:00:06,493 WARN [http-nio-8000-exec-5] 513389 +2020-12-18 19:00:06,494 WARN [http-nio-8000-exec-5] matched +2020-12-18 19:03:11,735 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-18 19:03:11,738 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-18 19:03:11,741 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-18 19:03:11,751 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-18 19:03:14,975 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 8726 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-18 19:03:14,980 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-18 19:03:15,044 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-18 19:03:15,045 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-18 19:03:15,409 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-18 19:03:15,455 INFO [restartedMain] Finished Spring Data repository scanning in 40ms. Found 6 JPA repository interfaces. +2020-12-18 19:03:16,022 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-18 19:03:16,032 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-18 19:03:16,032 INFO [restartedMain] Starting service [Tomcat] +2020-12-18 19:03:16,033 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-18 19:03:16,089 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-18 19:03:16,089 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1044 ms +2020-12-18 19:03:16,256 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-18 19:03:16,294 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-18 19:03:16,398 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-18 19:03:16,478 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-18 19:03:16,810 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-18 19:03:16,832 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-18 19:03:17,396 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-18 19:03:17,403 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-18 19:03:17,415 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-18 19:03:17,773 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-18 19:03:17,961 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-18 19:03:18,056 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-18 19:03:18,211 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-18 19:03:18,228 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-18 19:03:18,237 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.6 seconds (JVM running for 4.169) +2020-12-18 19:03:24,174 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-18 19:03:24,174 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-18 19:03:24,179 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms +2020-12-18 19:03:26,721 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-18 19:03:37,618 WARN [http-nio-8000-exec-5] 513389 +2020-12-18 19:03:37,619 WARN [http-nio-8000-exec-5] matched +2020-12-18 19:03:41,410 WARN [http-nio-8000-exec-7] 513389 +2020-12-18 19:03:41,410 WARN [http-nio-8000-exec-7] wrong diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java index 69f9923..fe0669f 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java @@ -173,7 +173,6 @@ public class VotingController { List mottos = mottoRepository.findAll(); model.addAttribute("mottos", mottos); model.addAttribute("name", name); - model.addAttribute("code", code); return "mottoVoting.html"; } else if (addingPhase) { PossibleCandidateWrapper possibleCandidates = new PossibleCandidateWrapper(); @@ -184,13 +183,11 @@ public class VotingController { model.addAttribute("categories", categories); model.addAttribute("form", possibleCandidates); model.addAttribute("name", name); - model.addAttribute("code", code); return "addingCandidates.html"; } else if (votingPhase) { List categories = categoryRepository.findAll(); model.addAttribute("categories", categories); model.addAttribute("name", name); - model.addAttribute("code", code); return "voting.html"; } } else if (tokenStatus.equals("expired")) { @@ -210,11 +207,10 @@ public class VotingController { } @RequestMapping("/saveCandidates") - public String candidateSaving(@ModelAttribute PossibleCandidateWrapper possibleCandidates, @RequestParam String name, @RequestParam String code) { + public String candidateSaving(@ModelAttribute PossibleCandidateWrapper possibleCandidates, @RequestParam String name) { if (voterRepository.findByEmail(name).getVote_status()) { return "errors/alreadyVoted.html"; } else { - authCodesRepository.delete(authCodesRepository.findByName(code)); LinkedList posCandidates = possibleCandidates.getPossibleCandidates(); long index = 1; for (PossibleCandidate posCandidate : posCandidates) { @@ -236,12 +232,11 @@ public class VotingController { } @RequestMapping("/saveMotto") - public String mottoSaving(@RequestParam String name, @RequestParam String voteValue, @RequestParam String code) { + public String mottoSaving(@RequestParam String name, @RequestParam String voteValue) { LOGGER.info(name); if (voterRepository.findByEmail(name).getMotto_status()) { return "errors/alreadySubmitted.html"; } else { - authCodesRepository.delete(authCodesRepository.findByName(code)); tableAction.voteForMotto(voteValue, mottoRepository); tableAction.updateMottoStatus(name, voterRepository); LOGGER.info(name + " has choose his motto"); @@ -250,11 +245,10 @@ public class VotingController { } @RequestMapping("/processVote") - public String ProcessVote(@RequestParam String name, @RequestParam String voteValues, @RequestParam String code) { + public String ProcessVote(@RequestParam String name, @RequestParam String voteValues) { if (voterRepository.findByEmail(name).getCandidatesubmit_status()) { return "errors/alreadySubmitted.html"; } else { - authCodesRepository.delete(authCodesRepository.findByName(code)); String[] partVoteValues = voteValues.split(","); for (String s : partVoteValues) { tableAction.voteForCandidate(s, candidateRepository); diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/table/TableAction.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/table/TableAction.java index c12a984..c1f07dd 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/table/TableAction.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/table/TableAction.java @@ -55,6 +55,7 @@ public class TableAction { try { AuthCode authCode = authCodesRepository.findByName(name); if (authCode.getCode().equals(code) && !authCode.isExpired()) { + authCodesRepository.delete(authCode); return "matched"; } else if (authCode.isExpired()) { authCodesRepository.delete(authCode); diff --git a/src/main/resources/static/styles/addingCandidates.css b/src/main/resources/static/styles/addingCandidates.css index 9aac8ac..6d68b66 100644 --- a/src/main/resources/static/styles/addingCandidates.css +++ b/src/main/resources/static/styles/addingCandidates.css @@ -28,6 +28,7 @@ h2 { } h2.categoryCategory { + color: #bb1515; margin-top: 5%; margin-bottom: 1%; } From d7b6283ffe871e9e74ea968b5546f5dbee22b204 Mon Sep 17 00:00:00 2001 From: Simon Date: Fri, 18 Dec 2020 19:25:40 +0100 Subject: [PATCH 11/35] End --- logs/Voting.log | 75 +++++++++++++++++++ .../controller/VotingController.java | 2 +- .../static/styles/voteSuccessful.css | 54 +++++++++++++ .../resources/templates/voteSuccessful.html | 41 +++++++++- 4 files changed, 169 insertions(+), 3 deletions(-) create mode 100644 src/main/resources/static/styles/voteSuccessful.css diff --git a/logs/Voting.log b/logs/Voting.log index 642280f..7c7dc6d 100644 --- a/logs/Voting.log +++ b/logs/Voting.log @@ -157,3 +157,78 @@ 2020-12-18 19:03:37,619 WARN [http-nio-8000-exec-5] matched 2020-12-18 19:03:41,410 WARN [http-nio-8000-exec-7] 513389 2020-12-18 19:03:41,410 WARN [http-nio-8000-exec-7] wrong +2020-12-18 19:09:02,215 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-18 19:09:02,217 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-18 19:09:02,221 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-18 19:09:02,233 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-18 19:09:04,369 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 9205 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-18 19:09:04,373 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-18 19:09:04,438 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-18 19:09:04,438 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-18 19:09:04,829 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-18 19:09:04,875 INFO [restartedMain] Finished Spring Data repository scanning in 41ms. Found 6 JPA repository interfaces. +2020-12-18 19:09:05,535 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-18 19:09:05,546 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-18 19:09:05,547 INFO [restartedMain] Starting service [Tomcat] +2020-12-18 19:09:05,547 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-18 19:09:05,602 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-18 19:09:05,602 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1164 ms +2020-12-18 19:09:05,749 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-18 19:09:05,782 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-18 19:09:05,896 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-18 19:09:05,958 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-18 19:09:06,274 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-18 19:09:06,292 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-18 19:09:06,871 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-18 19:09:06,877 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-18 19:09:06,887 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-18 19:09:07,239 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-18 19:09:07,426 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-18 19:09:07,515 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-18 19:09:07,679 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-18 19:09:07,694 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-18 19:09:07,704 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.675 seconds (JVM running for 4.279) +2020-12-18 19:09:16,329 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-18 19:09:16,331 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-18 19:09:16,341 INFO [http-nio-8000-exec-1] Completed initialization in 10 ms +2020-12-18 19:09:18,765 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-18 19:09:18,783 WARN [http-nio-8000-exec-3] no code +2020-12-18 19:09:33,142 WARN [http-nio-8000-exec-5] 283983 +2020-12-18 19:09:33,143 WARN [http-nio-8000-exec-5] matched +2020-12-18 19:11:00,761 INFO [Thread-4] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-18 19:11:00,766 INFO [Thread-4] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-18 19:11:00,777 INFO [Thread-4] HikariPool-1 - Shutdown initiated... +2020-12-18 19:11:00,808 INFO [Thread-4] HikariPool-1 - Shutdown completed. +2020-12-18 19:11:00,904 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 9205 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-18 19:11:00,904 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-18 19:11:01,071 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-18 19:11:01,095 INFO [restartedMain] Finished Spring Data repository scanning in 23ms. Found 6 JPA repository interfaces. +2020-12-18 19:11:01,269 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-18 19:11:01,270 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-18 19:11:01,270 INFO [restartedMain] Starting service [Tomcat] +2020-12-18 19:11:01,271 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-18 19:11:01,286 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-18 19:11:01,286 INFO [restartedMain] Root WebApplicationContext: initialization completed in 378 ms +2020-12-18 19:11:01,331 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-18 19:11:01,336 INFO [restartedMain] HikariPool-2 - Starting... +2020-12-18 19:11:01,368 INFO [restartedMain] HikariPool-2 - Start completed. +2020-12-18 19:11:01,369 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-18 19:11:01,495 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-18 19:11:01,496 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-18 19:11:01,501 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-18 19:11:01,670 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-18 19:11:01,723 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-18 19:11:01,757 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-18 19:11:01,818 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-18 19:11:01,823 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-18 19:11:01,827 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 0.956 seconds (JVM running for 118.402) +2020-12-18 19:11:01,829 INFO [restartedMain] Condition evaluation unchanged +2020-12-18 19:11:06,459 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-18 19:11:06,461 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-18 19:11:06,465 INFO [http-nio-8000-exec-1] Completed initialization in 4 ms +2020-12-18 19:22:20,626 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de +2020-12-18 19:22:20,631 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-18 19:22:42,994 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2020-12-18 19:22:43,002 WARN [http-nio-8000-exec-4] no code +2020-12-18 19:22:56,175 WARN [http-nio-8000-exec-6] 185973 +2020-12-18 19:22:56,175 WARN [http-nio-8000-exec-6] matched diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java index fe0669f..8e98735 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java @@ -227,7 +227,7 @@ public class VotingController { index++; } tableAction.updateCandidatesubmit_status(name, voterRepository); - return "candidateAddingSuccessful.html"; + return "voteSuccessful.html"; } } diff --git a/src/main/resources/static/styles/voteSuccessful.css b/src/main/resources/static/styles/voteSuccessful.css new file mode 100644 index 0000000..faaa063 --- /dev/null +++ b/src/main/resources/static/styles/voteSuccessful.css @@ -0,0 +1,54 @@ +body { + background-color: rgb(44, 49, 54); + font-family: Arial, Helvetica, sans-serif; +} + +.center-screen { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + text-align: center; +} + +.centered { + background: transparent; + margin: 0 auto; + padding: 20px; + width: 100%; + overflow: auto; +} + +h1 { + color: #FFF; +} + +h2 { + color: #FFF; +} + +h2.time_remain { + color: #6d6d78; +} + +.submitButton { + padding: .25em 0; + border: 0; + outline: 0; + background: #bb1515; + color: rgba(255, 255, 255, 0.85); + font-size: 2rem; + width: 500px; + letter-spacing: .0625rem; + border-radius: 12px; + box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.25); + text-shadow: 0 -2px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.2); +} + +html, +body { + width: 100%; + height: 100%; + background-image: linear-gradient(to bottom right, #111E25 0%, #111 100%); + font-family: 'Lato', sans-serif; +} \ No newline at end of file diff --git a/src/main/resources/templates/voteSuccessful.html b/src/main/resources/templates/voteSuccessful.html index 566549b..777a7b7 100644 --- a/src/main/resources/templates/voteSuccessful.html +++ b/src/main/resources/templates/voteSuccessful.html @@ -1,10 +1,47 @@ - + + Title + - + +
+

Deine Auswahl fließt nun in die Wahl ein!

+

Danke fürs abstimmen!

+

Nächste Abstimmung in:

+ +
+ + + \ No newline at end of file From 47beddf9c8287bbc2e7d6179f10c869e87df2c49 Mon Sep 17 00:00:00 2001 From: Simon Date: Fri, 18 Dec 2020 20:01:54 +0100 Subject: [PATCH 12/35] Final --- logs/Voting.log | 409 ++++++++++++++++++ .../resources/templates/addingCandidates.html | 4 +- 2 files changed, 411 insertions(+), 2 deletions(-) diff --git a/logs/Voting.log b/logs/Voting.log index 7c7dc6d..1965c60 100644 --- a/logs/Voting.log +++ b/logs/Voting.log @@ -232,3 +232,412 @@ 2020-12-18 19:22:43,002 WARN [http-nio-8000-exec-4] no code 2020-12-18 19:22:56,175 WARN [http-nio-8000-exec-6] 185973 2020-12-18 19:22:56,175 WARN [http-nio-8000-exec-6] matched +2020-12-18 19:38:39,915 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-18 19:38:39,918 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-18 19:38:39,919 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown initiated... +2020-12-18 19:38:39,927 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown completed. +2020-12-18 19:38:42,106 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 11536 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-18 19:38:42,109 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-18 19:38:42,163 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-18 19:38:42,164 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-18 19:38:42,526 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-18 19:38:42,572 INFO [restartedMain] Finished Spring Data repository scanning in 41ms. Found 6 JPA repository interfaces. +2020-12-18 19:38:43,169 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-18 19:38:43,177 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-18 19:38:43,178 INFO [restartedMain] Starting service [Tomcat] +2020-12-18 19:38:43,178 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-18 19:38:43,233 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-18 19:38:43,233 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1069 ms +2020-12-18 19:38:43,386 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-18 19:38:43,421 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-18 19:38:43,517 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-18 19:38:43,579 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-18 19:38:43,900 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-18 19:38:43,920 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-18 19:38:44,556 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-18 19:38:44,563 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-18 19:38:44,575 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-18 19:38:44,909 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-18 19:38:45,089 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-18 19:38:45,192 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-18 19:38:45,365 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-18 19:38:45,383 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-18 19:38:45,392 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.624 seconds (JVM running for 4.183) +2020-12-18 19:38:53,362 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-18 19:38:53,362 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-18 19:38:53,369 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms +2020-12-18 19:38:55,847 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-18 19:38:55,860 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-18 19:39:18,767 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de +2020-12-18 19:39:18,778 WARN [http-nio-8000-exec-5] no code +2020-12-18 19:39:32,392 WARN [http-nio-8000-exec-7] 869525 +2020-12-18 19:39:32,393 WARN [http-nio-8000-exec-7] matched +2020-12-18 19:39:32,426 ERROR [http-nio-8000-exec-7] [THYMELEAF][http-nio-8000-exec-7] Exception processing template "addingCandidates.html": An error happened during template parsing (template: "class path resource [templates/addingCandidates.html]") +org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates/addingCandidates.html]") + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:241) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.base/java.lang.Thread.run(Thread.java:829) +Caused by: org.attoparser.ParseException: Could not parse as expression: "Nächste Kategorie (0/42)" (template: "addingCandidates.html" - line 53, col 77) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:393) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + ... 48 common frames omitted +Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Could not parse as expression: "Nächste Kategorie (0/42)" (template: "addingCandidates.html" - line 53, col 77) + at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:131) + at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:62) + at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:44) + at org.thymeleaf.engine.EngineEventUtils.parseAttributeExpression(EngineEventUtils.java:220) + at org.thymeleaf.engine.EngineEventUtils.computeAttributeExpression(EngineEventUtils.java:207) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:125) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleOpenElement(ProcessorTemplateHandler.java:1314) + at org.thymeleaf.engine.OpenElementTag.beHandled(OpenElementTag.java:205) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + ... 50 common frames omitted +2020-12-18 19:39:32,428 ERROR [http-nio-8000-exec-7] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates/addingCandidates.html]")] with root cause +org.thymeleaf.exceptions.TemplateProcessingException: Could not parse as expression: "Nächste Kategorie (0/42)" (template: "addingCandidates.html" - line 53, col 77) + at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:131) + at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:62) + at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:44) + at org.thymeleaf.engine.EngineEventUtils.parseAttributeExpression(EngineEventUtils.java:220) + at org.thymeleaf.engine.EngineEventUtils.computeAttributeExpression(EngineEventUtils.java:207) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:125) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleOpenElement(ProcessorTemplateHandler.java:1314) + at org.thymeleaf.engine.OpenElementTag.beHandled(OpenElementTag.java:205) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.base/java.lang.Thread.run(Thread.java:829) +2020-12-18 19:39:37,368 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de +2020-12-18 19:39:37,377 WARN [http-nio-8000-exec-1] no code +2020-12-18 19:39:49,021 WARN [http-nio-8000-exec-3] 568666 +2020-12-18 19:39:49,022 WARN [http-nio-8000-exec-3] matched +2020-12-18 19:39:49,034 ERROR [http-nio-8000-exec-3] [THYMELEAF][http-nio-8000-exec-3] Exception processing template "addingCandidates.html": An error happened during template parsing (template: "class path resource [templates/addingCandidates.html]") +org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates/addingCandidates.html]") + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:241) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.base/java.lang.Thread.run(Thread.java:829) +Caused by: org.attoparser.ParseException: Could not parse as expression: "Nächste Kategorie (0/42)" (template: "addingCandidates.html" - line 53, col 77) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:393) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + ... 48 common frames omitted +Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Could not parse as expression: "Nächste Kategorie (0/42)" (template: "addingCandidates.html" - line 53, col 77) + at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:131) + at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:62) + at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:44) + at org.thymeleaf.engine.EngineEventUtils.parseAttributeExpression(EngineEventUtils.java:220) + at org.thymeleaf.engine.EngineEventUtils.computeAttributeExpression(EngineEventUtils.java:207) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:125) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleOpenElement(ProcessorTemplateHandler.java:1314) + at org.thymeleaf.engine.OpenElementTag.beHandled(OpenElementTag.java:205) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + ... 50 common frames omitted +2020-12-18 19:39:49,035 ERROR [http-nio-8000-exec-3] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates/addingCandidates.html]")] with root cause +org.thymeleaf.exceptions.TemplateProcessingException: Could not parse as expression: "Nächste Kategorie (0/42)" (template: "addingCandidates.html" - line 53, col 77) + at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:131) + at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:62) + at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:44) + at org.thymeleaf.engine.EngineEventUtils.parseAttributeExpression(EngineEventUtils.java:220) + at org.thymeleaf.engine.EngineEventUtils.computeAttributeExpression(EngineEventUtils.java:207) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:125) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleOpenElement(ProcessorTemplateHandler.java:1314) + at org.thymeleaf.engine.OpenElementTag.beHandled(OpenElementTag.java:205) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.base/java.lang.Thread.run(Thread.java:829) +2020-12-18 19:41:04,487 INFO [Thread-4] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-18 19:41:04,490 INFO [Thread-4] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-18 19:41:04,494 INFO [Thread-4] HikariPool-1 - Shutdown initiated... +2020-12-18 19:41:04,507 INFO [Thread-4] HikariPool-1 - Shutdown completed. +2020-12-18 19:41:04,601 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 11536 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-18 19:41:04,601 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-18 19:41:04,729 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-18 19:41:04,748 INFO [restartedMain] Finished Spring Data repository scanning in 17ms. Found 6 JPA repository interfaces. +2020-12-18 19:41:04,867 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-18 19:41:04,868 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-18 19:41:04,869 INFO [restartedMain] Starting service [Tomcat] +2020-12-18 19:41:04,869 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-18 19:41:04,878 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-18 19:41:04,878 INFO [restartedMain] Root WebApplicationContext: initialization completed in 273 ms +2020-12-18 19:41:04,915 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-18 19:41:04,920 INFO [restartedMain] HikariPool-2 - Starting... +2020-12-18 19:41:04,937 INFO [restartedMain] HikariPool-2 - Start completed. +2020-12-18 19:41:04,938 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-18 19:41:05,051 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-18 19:41:05,052 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-18 19:41:05,057 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-18 19:41:05,278 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-18 19:41:05,335 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-18 19:41:05,374 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-18 19:41:05,448 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-18 19:41:05,454 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-18 19:41:05,457 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 0.887 seconds (JVM running for 144.248) +2020-12-18 19:41:05,460 INFO [restartedMain] Condition evaluation unchanged +2020-12-18 19:41:06,723 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-18 19:41:06,724 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-18 19:41:06,728 INFO [http-nio-8000-exec-1] Completed initialization in 3 ms +2020-12-18 19:41:09,259 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-18 19:41:09,270 WARN [http-nio-8000-exec-3] no code +2020-12-18 19:41:22,783 WARN [http-nio-8000-exec-5] 436309 +2020-12-18 19:41:22,784 WARN [http-nio-8000-exec-5] matched +2020-12-18 19:42:56,181 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de +2020-12-18 19:42:56,189 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de has already submitted its candidates +2020-12-18 19:43:16,614 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de +2020-12-18 19:43:16,620 WARN [http-nio-8000-exec-6] no code +2020-12-18 19:43:25,932 WARN [http-nio-8000-exec-8] 424637 +2020-12-18 19:43:25,933 WARN [http-nio-8000-exec-8] matched diff --git a/src/main/resources/templates/addingCandidates.html b/src/main/resources/templates/addingCandidates.html index aa7f958..7d0c149 100644 --- a/src/main/resources/templates/addingCandidates.html +++ b/src/main/resources/templates/addingCandidates.html @@ -28,7 +28,7 @@ $('#inputForm div.group:nth-child(' + q + ')').hide(); $('#inputForm div.group:nth-child(' + (q + 1) + ')').show(); if (q == (qMax - 1)) { - $('#btnNext').html('Submit Answers'); + $('#btnNext').html('Eingabe bestätigen'); } q++; } else { @@ -52,7 +52,7 @@
- + From 63f4e7c907442a8cc4836c0c444a588eaaa33b14 Mon Sep 17 00:00:00 2001 From: Simon Date: Fri, 18 Dec 2020 20:11:28 +0100 Subject: [PATCH 13/35] Fix error message --- logs/Voting.log | 152 ++++++++++++++++++ .../controller/VotingController.java | 6 +- 2 files changed, 154 insertions(+), 4 deletions(-) diff --git a/logs/Voting.log b/logs/Voting.log index 1965c60..d8ba63d 100644 --- a/logs/Voting.log +++ b/logs/Voting.log @@ -641,3 +641,155 @@ org.thymeleaf.exceptions.TemplateProcessingException: Could not parse as express 2020-12-18 19:43:16,620 WARN [http-nio-8000-exec-6] no code 2020-12-18 19:43:25,932 WARN [http-nio-8000-exec-8] 424637 2020-12-18 19:43:25,933 WARN [http-nio-8000-exec-8] matched +2020-12-18 20:09:41,573 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-18 20:09:41,574 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-18 20:09:41,575 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown initiated... +2020-12-18 20:09:41,585 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown completed. +2020-12-18 20:09:43,658 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 13713 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-18 20:09:43,661 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-18 20:09:43,715 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-18 20:09:43,716 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-18 20:09:44,064 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-18 20:09:44,111 INFO [restartedMain] Finished Spring Data repository scanning in 41ms. Found 6 JPA repository interfaces. +2020-12-18 20:09:44,704 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-18 20:09:44,713 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-18 20:09:44,713 INFO [restartedMain] Starting service [Tomcat] +2020-12-18 20:09:44,713 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-18 20:09:44,768 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-18 20:09:44,768 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1052 ms +2020-12-18 20:09:44,913 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-18 20:09:44,946 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-18 20:09:45,031 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-18 20:09:45,093 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-18 20:09:45,416 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-18 20:09:45,440 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-18 20:09:46,045 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-18 20:09:46,052 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-18 20:09:46,062 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-18 20:09:46,429 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-18 20:09:46,589 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-18 20:09:46,680 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-18 20:09:46,857 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-18 20:09:46,873 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-18 20:09:46,887 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.557 seconds (JVM running for 4.11) +2020-12-18 20:09:53,996 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-18 20:09:53,997 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-18 20:09:54,006 INFO [http-nio-8000-exec-1] Completed initialization in 9 ms +2020-12-18 20:10:00,674 WARN [http-nio-8000-exec-3] alba.bussmann@adolfinum.de +2020-12-18 20:10:00,697 ERROR [http-nio-8000-exec-3] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.dao.InvalidDataAccessApiUsageException: Entity must not be null!; nested exception is java.lang.IllegalArgumentException: Entity must not be null!] with root cause +java.lang.IllegalArgumentException: Entity must not be null! + at org.springframework.util.Assert.notNull(Assert.java:201) + at org.springframework.data.jpa.repository.support.SimpleJpaRepository.delete(SimpleJpaRepository.java:188) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:566) + at org.springframework.data.repository.core.support.ImplementationInvocationMetadata.invoke(ImplementationInvocationMetadata.java:72) + at org.springframework.data.repository.core.support.RepositoryComposition$RepositoryFragments.invoke(RepositoryComposition.java:382) + at org.springframework.data.repository.core.support.RepositoryComposition.invoke(RepositoryComposition.java:205) + at org.springframework.data.repository.core.support.RepositoryFactorySupport$ImplementationMethodExecutionInterceptor.invoke(RepositoryFactorySupport.java:549) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.doInvoke(QueryExecutorMethodInterceptor.java:155) + at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.invoke(QueryExecutorMethodInterceptor.java:130) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:80) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:367) + at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:118) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.data.jpa.repository.support.CrudMethodMetadataPostProcessor$CrudMethodMetadataPopulatingMethodInterceptor.invoke(CrudMethodMetadataPostProcessor.java:178) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:95) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) + at com.sun.proxy.$Proxy90.delete(Unknown Source) + at com.github.cato447.AbizeitungVotingSystem.table.TableAction.deleteToken(TableAction.java:71) + at com.github.cato447.AbizeitungVotingSystem.controller.VotingController.VerifyName(VotingController.java:147) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:566) + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:878) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:792) + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.base/java.lang.Thread.run(Thread.java:829) +2020-12-18 20:10:55,640 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-18 20:10:55,643 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-18 20:10:55,646 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-18 20:10:55,662 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-18 20:10:58,549 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 13882 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-18 20:10:58,551 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-18 20:10:58,604 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-18 20:10:58,604 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-18 20:10:59,004 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-18 20:10:59,057 INFO [restartedMain] Finished Spring Data repository scanning in 43ms. Found 6 JPA repository interfaces. +2020-12-18 20:10:59,746 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-18 20:10:59,755 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-18 20:10:59,756 INFO [restartedMain] Starting service [Tomcat] +2020-12-18 20:10:59,756 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-18 20:10:59,814 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-18 20:10:59,814 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1210 ms +2020-12-18 20:10:59,960 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-18 20:10:59,991 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-18 20:11:00,076 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-18 20:11:00,139 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-18 20:11:00,461 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-18 20:11:00,484 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-18 20:11:01,084 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-18 20:11:01,089 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-18 20:11:01,102 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-18 20:11:01,475 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-18 20:11:01,665 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-18 20:11:01,776 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-18 20:11:01,951 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-18 20:11:01,969 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-18 20:11:01,979 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.746 seconds (JVM running for 4.301) +2020-12-18 20:11:05,944 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-18 20:11:05,945 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-18 20:11:05,951 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms +2020-12-18 20:11:11,869 WARN [http-nio-8000-exec-3] alba.bussmann@adolfinum.de +2020-12-18 20:11:11,881 ERROR [http-nio-8000-exec-3] alba.bussmann@adolfinum.de is not allowed to vote diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java index 8e98735..369d649 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java @@ -111,13 +111,11 @@ public class VotingController { if (name.strip().toLowerCase().matches("[a-z]+\\.[a-z]+@adolfinum+\\.de$")) { try { LOGGER.warn(name); - try { - Voter voter = voterRepository.findByEmail(name.toLowerCase().strip()); - } catch (Exception e){ + Voter voter = voterRepository.findByEmail(name.toLowerCase().strip()); + if (voter == null){ LOGGER.error(name + " is not allowed to vote"); return "errors/notRegistered.html"; } - Voter voter = voterRepository.findByEmail(name.toLowerCase().strip()); if (voter.getVote_status() && votingPhase) { LOGGER.warn(name + " has already voted"); return "errors/alreadyVoted.html"; From d56514a712a00fa98d28a4c6f4856276f402ba72 Mon Sep 17 00:00:00 2001 From: Simon Date: Fri, 18 Dec 2020 21:04:02 +0100 Subject: [PATCH 14/35] Added names to the voter list --- logs/Voting.log | 4 ++++ src/main/resources/Q2_emails.txt | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/logs/Voting.log b/logs/Voting.log index d8ba63d..73770bf 100644 --- a/logs/Voting.log +++ b/logs/Voting.log @@ -793,3 +793,7 @@ java.lang.IllegalArgumentException: Entity must not be null! 2020-12-18 20:11:05,951 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms 2020-12-18 20:11:11,869 WARN [http-nio-8000-exec-3] alba.bussmann@adolfinum.de 2020-12-18 20:11:11,881 ERROR [http-nio-8000-exec-3] alba.bussmann@adolfinum.de is not allowed to vote +2020-12-18 21:02:32,820 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-18 21:02:32,824 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-18 21:02:32,829 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-18 21:02:32,842 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. diff --git a/src/main/resources/Q2_emails.txt b/src/main/resources/Q2_emails.txt index 1a542e9..57e2756 100644 --- a/src/main/resources/Q2_emails.txt +++ b/src/main/resources/Q2_emails.txt @@ -154,3 +154,8 @@ clemens.spoo@adolfinum.de simon.stavroulakis@adolfinum.de ioannis.boerner@adolfinum.de marwa.nafouti@adolfinum.de +niklas.klaffki@adolfinum.de +alessio.padovano@adolfinum.de +jonas.breder@adolfinum.de +ben.maas@adolfinum.de +mina.ercan@adolfinum.de \ No newline at end of file From 4005fd4edb5b495fbc1745e0fc36bbcd310aca50 Mon Sep 17 00:00:00 2001 From: Simon Date: Fri, 25 Dec 2020 22:20:26 +0100 Subject: [PATCH 15/35] Google account go taken down switched it --- logs/Voting.log | 831 +--------------------- src/main/resources/application.properties | 2 +- 2 files changed, 33 insertions(+), 800 deletions(-) diff --git a/logs/Voting.log b/logs/Voting.log index 73770bf..9c35542 100644 --- a/logs/Voting.log +++ b/logs/Voting.log @@ -1,799 +1,32 @@ -2020-12-18 18:48:41,507 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 7171 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-18 18:48:41,513 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-18 18:48:41,572 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-18 18:48:41,572 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-18 18:48:41,992 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-18 18:48:42,052 INFO [restartedMain] Finished Spring Data repository scanning in 50ms. Found 6 JPA repository interfaces. -2020-12-18 18:48:42,698 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-18 18:48:42,708 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-18 18:48:42,709 INFO [restartedMain] Starting service [Tomcat] -2020-12-18 18:48:42,709 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-18 18:48:42,771 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-18 18:48:42,771 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1199 ms -2020-12-18 18:48:42,937 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-18 18:48:42,984 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-18 18:48:43,101 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-18 18:48:43,174 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-18 18:48:43,588 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-18 18:48:43,613 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-18 18:48:44,267 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-18 18:48:44,274 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-18 18:48:44,285 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-18 18:48:44,677 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-18 18:48:44,876 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-18 18:48:44,980 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-18 18:48:45,147 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-18 18:48:45,165 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-18 18:48:45,176 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.024 seconds (JVM running for 4.792) -2020-12-18 18:48:55,339 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-18 18:48:55,339 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-18 18:48:55,345 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms -2020-12-18 18:48:59,716 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-18 18:48:59,734 WARN [http-nio-8000-exec-4] no code -2020-12-18 18:49:08,908 WARN [http-nio-8000-exec-6] 513389 -2020-12-18 18:49:08,908 WARN [http-nio-8000-exec-6] matched -2020-12-18 18:50:11,913 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-18 18:50:11,917 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-18 18:50:11,921 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-18 18:50:11,931 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-18 18:50:15,481 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 7472 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-18 18:50:15,484 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-18 18:50:15,537 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-18 18:50:15,537 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-18 18:50:15,947 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-18 18:50:15,996 INFO [restartedMain] Finished Spring Data repository scanning in 43ms. Found 6 JPA repository interfaces. -2020-12-18 18:50:16,627 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-18 18:50:16,636 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-18 18:50:16,636 INFO [restartedMain] Starting service [Tomcat] -2020-12-18 18:50:16,637 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-18 18:50:16,709 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-18 18:50:16,710 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1173 ms -2020-12-18 18:50:16,878 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-18 18:50:16,910 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-18 18:50:16,993 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-18 18:50:17,055 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-18 18:50:17,377 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-18 18:50:17,398 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-18 18:50:18,022 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-18 18:50:18,029 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-18 18:50:18,041 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-18 18:50:18,430 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-18 18:50:18,594 INFO [restartedMain] Categories successfully set up -2020-12-18 18:50:18,649 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-18 18:50:18,741 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-18 18:50:18,905 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-18 18:50:18,922 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-18 18:50:18,935 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.794 seconds (JVM running for 4.355) -2020-12-18 18:50:31,589 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-18 18:50:31,590 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-18 18:50:31,595 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms -2020-12-18 18:50:34,686 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-18 18:51:11,195 WARN [http-nio-8000-exec-5] 513389 -2020-12-18 18:51:11,195 WARN [http-nio-8000-exec-5] matched -2020-12-18 18:52:21,822 WARN [http-nio-8000-exec-8] 513389 -2020-12-18 18:52:21,823 WARN [http-nio-8000-exec-8] matched -2020-12-18 18:53:08,080 WARN [http-nio-8000-exec-1] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'code' is not present] -2020-12-18 18:53:11,131 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de -2020-12-18 18:53:27,497 WARN [http-nio-8000-exec-7] 513389 -2020-12-18 18:53:27,498 WARN [http-nio-8000-exec-7] matched -2020-12-18 18:56:02,892 WARN [http-nio-8000-exec-10] 513389 -2020-12-18 18:56:02,892 WARN [http-nio-8000-exec-10] matched -2020-12-18 18:56:14,142 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-18 18:56:24,707 WARN [http-nio-8000-exec-6] 513389 -2020-12-18 18:56:24,707 WARN [http-nio-8000-exec-6] matched -2020-12-18 18:59:40,836 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-18 18:59:40,840 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-18 18:59:40,844 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-18 18:59:40,857 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-18 18:59:43,049 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 8537 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-18 18:59:43,053 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-18 18:59:43,098 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-18 18:59:43,099 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-18 18:59:43,445 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-18 18:59:43,489 INFO [restartedMain] Finished Spring Data repository scanning in 39ms. Found 6 JPA repository interfaces. -2020-12-18 18:59:44,087 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-18 18:59:44,095 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-18 18:59:44,096 INFO [restartedMain] Starting service [Tomcat] -2020-12-18 18:59:44,096 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-18 18:59:44,153 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-18 18:59:44,154 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1055 ms -2020-12-18 18:59:44,318 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-18 18:59:44,360 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-18 18:59:44,449 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-18 18:59:44,516 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-18 18:59:44,869 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-18 18:59:44,889 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-18 18:59:45,479 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-18 18:59:45,487 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-18 18:59:45,501 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-18 18:59:45,960 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-18 18:59:46,131 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-18 18:59:46,244 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-18 18:59:46,446 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-18 18:59:46,468 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-18 18:59:46,477 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.797 seconds (JVM running for 4.416) -2020-12-18 18:59:52,929 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-18 18:59:52,930 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-18 18:59:52,937 INFO [http-nio-8000-exec-1] Completed initialization in 7 ms -2020-12-18 18:59:55,289 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-18 19:00:06,493 WARN [http-nio-8000-exec-5] 513389 -2020-12-18 19:00:06,494 WARN [http-nio-8000-exec-5] matched -2020-12-18 19:03:11,735 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-18 19:03:11,738 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-18 19:03:11,741 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-18 19:03:11,751 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-18 19:03:14,975 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 8726 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-18 19:03:14,980 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-18 19:03:15,044 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-18 19:03:15,045 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-18 19:03:15,409 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-18 19:03:15,455 INFO [restartedMain] Finished Spring Data repository scanning in 40ms. Found 6 JPA repository interfaces. -2020-12-18 19:03:16,022 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-18 19:03:16,032 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-18 19:03:16,032 INFO [restartedMain] Starting service [Tomcat] -2020-12-18 19:03:16,033 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-18 19:03:16,089 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-18 19:03:16,089 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1044 ms -2020-12-18 19:03:16,256 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-18 19:03:16,294 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-18 19:03:16,398 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-18 19:03:16,478 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-18 19:03:16,810 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-18 19:03:16,832 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-18 19:03:17,396 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-18 19:03:17,403 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-18 19:03:17,415 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-18 19:03:17,773 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-18 19:03:17,961 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-18 19:03:18,056 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-18 19:03:18,211 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-18 19:03:18,228 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-18 19:03:18,237 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.6 seconds (JVM running for 4.169) -2020-12-18 19:03:24,174 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-18 19:03:24,174 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-18 19:03:24,179 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms -2020-12-18 19:03:26,721 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-18 19:03:37,618 WARN [http-nio-8000-exec-5] 513389 -2020-12-18 19:03:37,619 WARN [http-nio-8000-exec-5] matched -2020-12-18 19:03:41,410 WARN [http-nio-8000-exec-7] 513389 -2020-12-18 19:03:41,410 WARN [http-nio-8000-exec-7] wrong -2020-12-18 19:09:02,215 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-18 19:09:02,217 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-18 19:09:02,221 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-18 19:09:02,233 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-18 19:09:04,369 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 9205 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-18 19:09:04,373 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-18 19:09:04,438 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-18 19:09:04,438 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-18 19:09:04,829 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-18 19:09:04,875 INFO [restartedMain] Finished Spring Data repository scanning in 41ms. Found 6 JPA repository interfaces. -2020-12-18 19:09:05,535 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-18 19:09:05,546 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-18 19:09:05,547 INFO [restartedMain] Starting service [Tomcat] -2020-12-18 19:09:05,547 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-18 19:09:05,602 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-18 19:09:05,602 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1164 ms -2020-12-18 19:09:05,749 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-18 19:09:05,782 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-18 19:09:05,896 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-18 19:09:05,958 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-18 19:09:06,274 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-18 19:09:06,292 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-18 19:09:06,871 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-18 19:09:06,877 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-18 19:09:06,887 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-18 19:09:07,239 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-18 19:09:07,426 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-18 19:09:07,515 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-18 19:09:07,679 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-18 19:09:07,694 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-18 19:09:07,704 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.675 seconds (JVM running for 4.279) -2020-12-18 19:09:16,329 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-18 19:09:16,331 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-18 19:09:16,341 INFO [http-nio-8000-exec-1] Completed initialization in 10 ms -2020-12-18 19:09:18,765 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-18 19:09:18,783 WARN [http-nio-8000-exec-3] no code -2020-12-18 19:09:33,142 WARN [http-nio-8000-exec-5] 283983 -2020-12-18 19:09:33,143 WARN [http-nio-8000-exec-5] matched -2020-12-18 19:11:00,761 INFO [Thread-4] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-18 19:11:00,766 INFO [Thread-4] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-18 19:11:00,777 INFO [Thread-4] HikariPool-1 - Shutdown initiated... -2020-12-18 19:11:00,808 INFO [Thread-4] HikariPool-1 - Shutdown completed. -2020-12-18 19:11:00,904 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 9205 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-18 19:11:00,904 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-18 19:11:01,071 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-18 19:11:01,095 INFO [restartedMain] Finished Spring Data repository scanning in 23ms. Found 6 JPA repository interfaces. -2020-12-18 19:11:01,269 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-18 19:11:01,270 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-18 19:11:01,270 INFO [restartedMain] Starting service [Tomcat] -2020-12-18 19:11:01,271 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-18 19:11:01,286 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-18 19:11:01,286 INFO [restartedMain] Root WebApplicationContext: initialization completed in 378 ms -2020-12-18 19:11:01,331 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-18 19:11:01,336 INFO [restartedMain] HikariPool-2 - Starting... -2020-12-18 19:11:01,368 INFO [restartedMain] HikariPool-2 - Start completed. -2020-12-18 19:11:01,369 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-18 19:11:01,495 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-18 19:11:01,496 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-18 19:11:01,501 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-18 19:11:01,670 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-18 19:11:01,723 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-18 19:11:01,757 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-18 19:11:01,818 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-18 19:11:01,823 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-18 19:11:01,827 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 0.956 seconds (JVM running for 118.402) -2020-12-18 19:11:01,829 INFO [restartedMain] Condition evaluation unchanged -2020-12-18 19:11:06,459 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-18 19:11:06,461 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-18 19:11:06,465 INFO [http-nio-8000-exec-1] Completed initialization in 4 ms -2020-12-18 19:22:20,626 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de -2020-12-18 19:22:20,631 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-18 19:22:42,994 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-18 19:22:43,002 WARN [http-nio-8000-exec-4] no code -2020-12-18 19:22:56,175 WARN [http-nio-8000-exec-6] 185973 -2020-12-18 19:22:56,175 WARN [http-nio-8000-exec-6] matched -2020-12-18 19:38:39,915 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-18 19:38:39,918 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-18 19:38:39,919 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown initiated... -2020-12-18 19:38:39,927 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown completed. -2020-12-18 19:38:42,106 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 11536 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-18 19:38:42,109 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-18 19:38:42,163 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-18 19:38:42,164 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-18 19:38:42,526 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-18 19:38:42,572 INFO [restartedMain] Finished Spring Data repository scanning in 41ms. Found 6 JPA repository interfaces. -2020-12-18 19:38:43,169 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-18 19:38:43,177 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-18 19:38:43,178 INFO [restartedMain] Starting service [Tomcat] -2020-12-18 19:38:43,178 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-18 19:38:43,233 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-18 19:38:43,233 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1069 ms -2020-12-18 19:38:43,386 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-18 19:38:43,421 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-18 19:38:43,517 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-18 19:38:43,579 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-18 19:38:43,900 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-18 19:38:43,920 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-18 19:38:44,556 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-18 19:38:44,563 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-18 19:38:44,575 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-18 19:38:44,909 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-18 19:38:45,089 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-18 19:38:45,192 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-18 19:38:45,365 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-18 19:38:45,383 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-18 19:38:45,392 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.624 seconds (JVM running for 4.183) -2020-12-18 19:38:53,362 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-18 19:38:53,362 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-18 19:38:53,369 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms -2020-12-18 19:38:55,847 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-18 19:38:55,860 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-18 19:39:18,767 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de -2020-12-18 19:39:18,778 WARN [http-nio-8000-exec-5] no code -2020-12-18 19:39:32,392 WARN [http-nio-8000-exec-7] 869525 -2020-12-18 19:39:32,393 WARN [http-nio-8000-exec-7] matched -2020-12-18 19:39:32,426 ERROR [http-nio-8000-exec-7] [THYMELEAF][http-nio-8000-exec-7] Exception processing template "addingCandidates.html": An error happened during template parsing (template: "class path resource [templates/addingCandidates.html]") -org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates/addingCandidates.html]") - at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:241) - at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -Caused by: org.attoparser.ParseException: Could not parse as expression: "Nächste Kategorie (0/42)" (template: "addingCandidates.html" - line 53, col 77) - at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:393) - at org.attoparser.MarkupParser.parse(MarkupParser.java:257) - at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) - ... 48 common frames omitted -Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Could not parse as expression: "Nächste Kategorie (0/42)" (template: "addingCandidates.html" - line 53, col 77) - at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:131) - at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:62) - at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:44) - at org.thymeleaf.engine.EngineEventUtils.parseAttributeExpression(EngineEventUtils.java:220) - at org.thymeleaf.engine.EngineEventUtils.computeAttributeExpression(EngineEventUtils.java:207) - at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:125) - at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) - at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) - at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) - at org.thymeleaf.engine.ProcessorTemplateHandler.handleOpenElement(ProcessorTemplateHandler.java:1314) - at org.thymeleaf.engine.OpenElementTag.beHandled(OpenElementTag.java:205) - at org.thymeleaf.engine.Model.process(Model.java:282) - at org.thymeleaf.engine.Model.process(Model.java:290) - at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) - at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) - at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) - at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) - at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) - at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) - at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) - at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) - at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) - at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) - at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) - at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) - at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) - ... 50 common frames omitted -2020-12-18 19:39:32,428 ERROR [http-nio-8000-exec-7] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates/addingCandidates.html]")] with root cause -org.thymeleaf.exceptions.TemplateProcessingException: Could not parse as expression: "Nächste Kategorie (0/42)" (template: "addingCandidates.html" - line 53, col 77) - at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:131) - at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:62) - at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:44) - at org.thymeleaf.engine.EngineEventUtils.parseAttributeExpression(EngineEventUtils.java:220) - at org.thymeleaf.engine.EngineEventUtils.computeAttributeExpression(EngineEventUtils.java:207) - at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:125) - at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) - at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) - at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) - at org.thymeleaf.engine.ProcessorTemplateHandler.handleOpenElement(ProcessorTemplateHandler.java:1314) - at org.thymeleaf.engine.OpenElementTag.beHandled(OpenElementTag.java:205) - at org.thymeleaf.engine.Model.process(Model.java:282) - at org.thymeleaf.engine.Model.process(Model.java:290) - at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) - at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) - at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) - at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) - at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) - at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) - at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) - at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) - at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) - at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) - at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) - at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) - at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) - at org.attoparser.MarkupParser.parse(MarkupParser.java:257) - at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) - at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-18 19:39:37,368 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-18 19:39:37,377 WARN [http-nio-8000-exec-1] no code -2020-12-18 19:39:49,021 WARN [http-nio-8000-exec-3] 568666 -2020-12-18 19:39:49,022 WARN [http-nio-8000-exec-3] matched -2020-12-18 19:39:49,034 ERROR [http-nio-8000-exec-3] [THYMELEAF][http-nio-8000-exec-3] Exception processing template "addingCandidates.html": An error happened during template parsing (template: "class path resource [templates/addingCandidates.html]") -org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates/addingCandidates.html]") - at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:241) - at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -Caused by: org.attoparser.ParseException: Could not parse as expression: "Nächste Kategorie (0/42)" (template: "addingCandidates.html" - line 53, col 77) - at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:393) - at org.attoparser.MarkupParser.parse(MarkupParser.java:257) - at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) - ... 48 common frames omitted -Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Could not parse as expression: "Nächste Kategorie (0/42)" (template: "addingCandidates.html" - line 53, col 77) - at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:131) - at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:62) - at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:44) - at org.thymeleaf.engine.EngineEventUtils.parseAttributeExpression(EngineEventUtils.java:220) - at org.thymeleaf.engine.EngineEventUtils.computeAttributeExpression(EngineEventUtils.java:207) - at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:125) - at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) - at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) - at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) - at org.thymeleaf.engine.ProcessorTemplateHandler.handleOpenElement(ProcessorTemplateHandler.java:1314) - at org.thymeleaf.engine.OpenElementTag.beHandled(OpenElementTag.java:205) - at org.thymeleaf.engine.Model.process(Model.java:282) - at org.thymeleaf.engine.Model.process(Model.java:290) - at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) - at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) - at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) - at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) - at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) - at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) - at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) - at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) - at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) - at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) - at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) - at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) - at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) - ... 50 common frames omitted -2020-12-18 19:39:49,035 ERROR [http-nio-8000-exec-3] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates/addingCandidates.html]")] with root cause -org.thymeleaf.exceptions.TemplateProcessingException: Could not parse as expression: "Nächste Kategorie (0/42)" (template: "addingCandidates.html" - line 53, col 77) - at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:131) - at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:62) - at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:44) - at org.thymeleaf.engine.EngineEventUtils.parseAttributeExpression(EngineEventUtils.java:220) - at org.thymeleaf.engine.EngineEventUtils.computeAttributeExpression(EngineEventUtils.java:207) - at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:125) - at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) - at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) - at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) - at org.thymeleaf.engine.ProcessorTemplateHandler.handleOpenElement(ProcessorTemplateHandler.java:1314) - at org.thymeleaf.engine.OpenElementTag.beHandled(OpenElementTag.java:205) - at org.thymeleaf.engine.Model.process(Model.java:282) - at org.thymeleaf.engine.Model.process(Model.java:290) - at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) - at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) - at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) - at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) - at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) - at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) - at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) - at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) - at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) - at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) - at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) - at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) - at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) - at org.attoparser.MarkupParser.parse(MarkupParser.java:257) - at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) - at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-18 19:41:04,487 INFO [Thread-4] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-18 19:41:04,490 INFO [Thread-4] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-18 19:41:04,494 INFO [Thread-4] HikariPool-1 - Shutdown initiated... -2020-12-18 19:41:04,507 INFO [Thread-4] HikariPool-1 - Shutdown completed. -2020-12-18 19:41:04,601 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 11536 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-18 19:41:04,601 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-18 19:41:04,729 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-18 19:41:04,748 INFO [restartedMain] Finished Spring Data repository scanning in 17ms. Found 6 JPA repository interfaces. -2020-12-18 19:41:04,867 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-18 19:41:04,868 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-18 19:41:04,869 INFO [restartedMain] Starting service [Tomcat] -2020-12-18 19:41:04,869 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-18 19:41:04,878 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-18 19:41:04,878 INFO [restartedMain] Root WebApplicationContext: initialization completed in 273 ms -2020-12-18 19:41:04,915 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-18 19:41:04,920 INFO [restartedMain] HikariPool-2 - Starting... -2020-12-18 19:41:04,937 INFO [restartedMain] HikariPool-2 - Start completed. -2020-12-18 19:41:04,938 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-18 19:41:05,051 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-18 19:41:05,052 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-18 19:41:05,057 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-18 19:41:05,278 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-18 19:41:05,335 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-18 19:41:05,374 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-18 19:41:05,448 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-18 19:41:05,454 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-18 19:41:05,457 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 0.887 seconds (JVM running for 144.248) -2020-12-18 19:41:05,460 INFO [restartedMain] Condition evaluation unchanged -2020-12-18 19:41:06,723 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-18 19:41:06,724 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-18 19:41:06,728 INFO [http-nio-8000-exec-1] Completed initialization in 3 ms -2020-12-18 19:41:09,259 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-18 19:41:09,270 WARN [http-nio-8000-exec-3] no code -2020-12-18 19:41:22,783 WARN [http-nio-8000-exec-5] 436309 -2020-12-18 19:41:22,784 WARN [http-nio-8000-exec-5] matched -2020-12-18 19:42:56,181 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de -2020-12-18 19:42:56,189 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de has already submitted its candidates -2020-12-18 19:43:16,614 WARN [http-nio-8000-exec-6] simon.bussmann@adolfinum.de -2020-12-18 19:43:16,620 WARN [http-nio-8000-exec-6] no code -2020-12-18 19:43:25,932 WARN [http-nio-8000-exec-8] 424637 -2020-12-18 19:43:25,933 WARN [http-nio-8000-exec-8] matched -2020-12-18 20:09:41,573 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-18 20:09:41,574 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-18 20:09:41,575 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown initiated... -2020-12-18 20:09:41,585 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown completed. -2020-12-18 20:09:43,658 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 13713 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-18 20:09:43,661 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-18 20:09:43,715 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-18 20:09:43,716 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-18 20:09:44,064 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-18 20:09:44,111 INFO [restartedMain] Finished Spring Data repository scanning in 41ms. Found 6 JPA repository interfaces. -2020-12-18 20:09:44,704 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-18 20:09:44,713 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-18 20:09:44,713 INFO [restartedMain] Starting service [Tomcat] -2020-12-18 20:09:44,713 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-18 20:09:44,768 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-18 20:09:44,768 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1052 ms -2020-12-18 20:09:44,913 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-18 20:09:44,946 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-18 20:09:45,031 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-18 20:09:45,093 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-18 20:09:45,416 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-18 20:09:45,440 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-18 20:09:46,045 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-18 20:09:46,052 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-18 20:09:46,062 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-18 20:09:46,429 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-18 20:09:46,589 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-18 20:09:46,680 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-18 20:09:46,857 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-18 20:09:46,873 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-18 20:09:46,887 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.557 seconds (JVM running for 4.11) -2020-12-18 20:09:53,996 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-18 20:09:53,997 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-18 20:09:54,006 INFO [http-nio-8000-exec-1] Completed initialization in 9 ms -2020-12-18 20:10:00,674 WARN [http-nio-8000-exec-3] alba.bussmann@adolfinum.de -2020-12-18 20:10:00,697 ERROR [http-nio-8000-exec-3] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.dao.InvalidDataAccessApiUsageException: Entity must not be null!; nested exception is java.lang.IllegalArgumentException: Entity must not be null!] with root cause -java.lang.IllegalArgumentException: Entity must not be null! - at org.springframework.util.Assert.notNull(Assert.java:201) - at org.springframework.data.jpa.repository.support.SimpleJpaRepository.delete(SimpleJpaRepository.java:188) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:566) - at org.springframework.data.repository.core.support.ImplementationInvocationMetadata.invoke(ImplementationInvocationMetadata.java:72) - at org.springframework.data.repository.core.support.RepositoryComposition$RepositoryFragments.invoke(RepositoryComposition.java:382) - at org.springframework.data.repository.core.support.RepositoryComposition.invoke(RepositoryComposition.java:205) - at org.springframework.data.repository.core.support.RepositoryFactorySupport$ImplementationMethodExecutionInterceptor.invoke(RepositoryFactorySupport.java:549) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.doInvoke(QueryExecutorMethodInterceptor.java:155) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.invoke(QueryExecutorMethodInterceptor.java:130) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:80) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:367) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:118) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:139) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.data.jpa.repository.support.CrudMethodMetadataPostProcessor$CrudMethodMetadataPopulatingMethodInterceptor.invoke(CrudMethodMetadataPostProcessor.java:178) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:95) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:212) - at com.sun.proxy.$Proxy90.delete(Unknown Source) - at com.github.cato447.AbizeitungVotingSystem.table.TableAction.deleteToken(TableAction.java:71) - at com.github.cato447.AbizeitungVotingSystem.controller.VotingController.VerifyName(VotingController.java:147) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:566) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:878) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:792) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-18 20:10:55,640 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-18 20:10:55,643 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-18 20:10:55,646 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-18 20:10:55,662 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-18 20:10:58,549 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 13882 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-18 20:10:58,551 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-18 20:10:58,604 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-18 20:10:58,604 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-18 20:10:59,004 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-18 20:10:59,057 INFO [restartedMain] Finished Spring Data repository scanning in 43ms. Found 6 JPA repository interfaces. -2020-12-18 20:10:59,746 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-18 20:10:59,755 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-18 20:10:59,756 INFO [restartedMain] Starting service [Tomcat] -2020-12-18 20:10:59,756 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-18 20:10:59,814 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-18 20:10:59,814 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1210 ms -2020-12-18 20:10:59,960 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-18 20:10:59,991 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-18 20:11:00,076 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-18 20:11:00,139 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-18 20:11:00,461 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-18 20:11:00,484 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-18 20:11:01,084 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-18 20:11:01,089 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-18 20:11:01,102 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-18 20:11:01,475 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-18 20:11:01,665 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-18 20:11:01,776 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-18 20:11:01,951 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-18 20:11:01,969 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-18 20:11:01,979 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.746 seconds (JVM running for 4.301) -2020-12-18 20:11:05,944 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-18 20:11:05,945 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-18 20:11:05,951 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms -2020-12-18 20:11:11,869 WARN [http-nio-8000-exec-3] alba.bussmann@adolfinum.de -2020-12-18 20:11:11,881 ERROR [http-nio-8000-exec-3] alba.bussmann@adolfinum.de is not allowed to vote -2020-12-18 21:02:32,820 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-18 21:02:32,824 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-18 21:02:32,829 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-18 21:02:32,842 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-25 22:19:25,089 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 6897 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2020-12-25 22:19:25,093 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-25 22:19:25,153 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-25 22:19:25,154 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-25 22:19:25,540 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-25 22:19:25,590 INFO [restartedMain] Finished Spring Data repository scanning in 43ms. Found 6 JPA repository interfaces. +2020-12-25 22:19:26,210 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-25 22:19:26,220 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-25 22:19:26,221 INFO [restartedMain] Starting service [Tomcat] +2020-12-25 22:19:26,221 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-25 22:19:26,276 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-25 22:19:26,277 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1123 ms +2020-12-25 22:19:26,435 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-25 22:19:26,488 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-25 22:19:26,602 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-25 22:19:26,674 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-25 22:19:27,086 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-25 22:19:27,109 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-25 22:19:27,758 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-25 22:19:27,764 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-25 22:19:27,775 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-25 22:19:28,218 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2020-12-25 22:19:28,416 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-25 22:19:28,512 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-25 22:19:28,683 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-25 22:19:28,698 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-25 22:19:28,706 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.953 seconds (JVM running for 4.763) +2020-12-25 22:19:32,547 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-25 22:19:32,547 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-25 22:19:32,553 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms +2020-12-25 22:19:38,615 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2020-12-25 22:19:38,633 WARN [http-nio-8000-exec-4] no code diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 82fab94..74ff280 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -11,7 +11,7 @@ server.port = 8000 spring.mail.host=smtp.gmail.com spring.mail.port=587 spring.mail.properties.mail.smtp.starttls.enable=true -spring.mail.username=adolfinumvoting@gmail.com +spring.mail.username=abizeitungvoting@gmail.com spring.mail.password=Voting2021 spring.mail.properties.mail.smtp.starttls.required=true spring.mail.properties.mail.smtp.auth=true From 0597edf116378184d8ecd64986ba86f955cc141c Mon Sep 17 00:00:00 2001 From: Simon Bussmann Date: Sun, 27 Dec 2020 22:37:20 +0100 Subject: [PATCH 16/35] Changed to Voting Mode --- logs/Voting.log | 520 ++++++++++++++++++ .../controller/VotingController.java | 30 +- .../templates/errors/alreadyVoted.html | 23 - .../resources/templates/voteSuccessful.html | 23 - 4 files changed, 530 insertions(+), 66 deletions(-) diff --git a/logs/Voting.log b/logs/Voting.log index 9c35542..7ed30ec 100644 --- a/logs/Voting.log +++ b/logs/Voting.log @@ -30,3 +30,523 @@ 2020-12-25 22:19:32,553 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms 2020-12-25 22:19:38,615 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de 2020-12-25 22:19:38,633 WARN [http-nio-8000-exec-4] no code +2020-12-27 15:08:48,591 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 499 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) +2020-12-27 15:08:48,609 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-27 15:08:48,715 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-27 15:08:48,716 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-27 15:08:49,915 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-27 15:08:50,001 INFO [restartedMain] Finished Spring Data repository scanning in 76ms. Found 6 JPA repository interfaces. +2020-12-27 15:08:51,012 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-27 15:08:51,024 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-27 15:08:51,025 INFO [restartedMain] Starting service [Tomcat] +2020-12-27 15:08:51,026 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-27 15:08:51,121 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-27 15:08:51,121 INFO [restartedMain] Root WebApplicationContext: initialization completed in 2404 ms +2020-12-27 15:08:51,415 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-27 15:08:51,462 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-27 15:08:51,605 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-27 15:08:51,739 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-27 15:08:52,266 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-27 15:08:52,296 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-27 15:08:53,345 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-27 15:08:53,356 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 15:08:53,376 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-27 15:08:54,032 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false +2020-12-27 15:08:55,955 INFO [restartedMain] Candidates successfully set up +2020-12-27 15:08:56,020 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-27 15:08:56,200 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-27 15:08:56,540 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-27 15:08:56,557 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-27 15:08:56,570 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 9.068 seconds (JVM running for 11.127) +2020-12-27 15:14:44,409 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-27 15:14:44,420 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 15:14:44,428 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-27 15:14:44,465 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-27 15:14:50,245 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 607 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) +2020-12-27 15:14:50,280 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-27 15:14:50,655 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-27 15:14:50,656 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-27 15:14:51,579 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-27 15:14:51,677 INFO [restartedMain] Finished Spring Data repository scanning in 87ms. Found 6 JPA repository interfaces. +2020-12-27 15:14:53,099 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-27 15:14:53,124 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-27 15:14:53,125 INFO [restartedMain] Starting service [Tomcat] +2020-12-27 15:14:53,126 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-27 15:14:53,312 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-27 15:14:53,315 INFO [restartedMain] Root WebApplicationContext: initialization completed in 2653 ms +2020-12-27 15:14:53,990 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-27 15:14:54,071 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-27 15:14:54,259 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-27 15:14:54,427 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-27 15:14:55,137 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-27 15:14:55,202 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-27 15:14:56,576 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-27 15:14:56,584 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 15:14:56,604 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-27 15:14:57,417 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false +2020-12-27 15:14:59,544 INFO [restartedMain] Candidates successfully set up +2020-12-27 15:14:59,686 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-27 15:14:59,929 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-27 15:15:00,307 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-27 15:15:00,365 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-27 15:15:00,387 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 11.265 seconds (JVM running for 13.531) +2020-12-27 15:15:21,409 INFO [http-nio-8000-exec-2] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-27 15:15:21,411 INFO [http-nio-8000-exec-2] Initializing Servlet 'dispatcherServlet' +2020-12-27 15:15:21,431 INFO [http-nio-8000-exec-2] Completed initialization in 19 ms +2020-12-27 15:15:29,756 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2020-12-27 15:15:29,844 WARN [http-nio-8000-exec-4] no code +2020-12-27 15:16:03,687 WARN [http-nio-8000-exec-6] 043136 +2020-12-27 15:16:03,690 WARN [http-nio-8000-exec-6] matched +2020-12-27 15:16:04,724 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-27 15:16:04,731 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 15:16:04,739 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-27 15:16:04,758 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-27 15:18:47,164 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 279 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) +2020-12-27 15:18:47,177 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-27 15:18:47,354 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-27 15:18:47,371 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-27 15:18:49,211 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-27 15:18:49,589 INFO [restartedMain] Finished Spring Data repository scanning in 342ms. Found 6 JPA repository interfaces. +2020-12-27 15:18:53,050 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-27 15:18:53,108 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-27 15:18:53,111 INFO [restartedMain] Starting service [Tomcat] +2020-12-27 15:18:53,113 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-27 15:18:53,395 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-27 15:18:53,396 INFO [restartedMain] Root WebApplicationContext: initialization completed in 6020 ms +2020-12-27 15:18:54,166 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-27 15:18:54,326 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-27 15:18:54,693 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-27 15:18:54,885 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-27 15:18:56,237 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-27 15:18:56,313 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-27 15:18:59,089 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-27 15:18:59,120 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 15:18:59,214 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-27 15:19:01,220 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false +2020-12-27 15:19:02,101 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-27 15:19:02,501 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-27 15:19:03,339 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-27 15:19:03,553 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-27 15:19:03,604 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 17.908 seconds (JVM running for 20.098) +2020-12-27 15:19:07,549 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-27 15:19:07,551 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-27 15:19:07,564 INFO [http-nio-8000-exec-1] Completed initialization in 12 ms +2020-12-27 15:19:07,609 WARN [http-nio-8000-exec-1] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'name' is not present] +2020-12-27 15:19:13,416 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de +2020-12-27 15:19:13,450 WARN [http-nio-8000-exec-5] no code +2020-12-27 15:19:27,768 WARN [http-nio-8000-exec-7] 055572 +2020-12-27 15:19:27,768 WARN [http-nio-8000-exec-7] matched +2020-12-27 15:26:16,893 ERROR [http-nio-8000-exec-1] [THYMELEAF][http-nio-8000-exec-1] Exception processing template "errors/alreadySubmitted.html": Error resolving template [errors/alreadySubmitted.html], template might not exist or might not be accessible by any of the configured Template Resolvers +org.thymeleaf.exceptions.TemplateInputException: Error resolving template [errors/alreadySubmitted.html], template might not exist or might not be accessible by any of the configured Template Resolvers + at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.base/java.lang.Thread.run(Thread.java:829) +2020-12-27 15:26:16,898 ERROR [http-nio-8000-exec-1] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: Error resolving template [errors/alreadySubmitted.html], template might not exist or might not be accessible by any of the configured Template Resolvers] with root cause +org.thymeleaf.exceptions.TemplateInputException: Error resolving template [errors/alreadySubmitted.html], template might not exist or might not be accessible by any of the configured Template Resolvers + at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.base/java.lang.Thread.run(Thread.java:829) +2020-12-27 15:32:09,183 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-27 15:32:09,192 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 15:32:09,200 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-27 15:32:09,242 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-27 15:32:15,896 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 408 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) +2020-12-27 15:32:15,905 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-27 15:32:16,122 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-27 15:32:16,122 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-27 15:32:16,950 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-27 15:32:17,038 INFO [restartedMain] Finished Spring Data repository scanning in 76ms. Found 6 JPA repository interfaces. +2020-12-27 15:32:18,083 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-27 15:32:18,100 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-27 15:32:18,100 INFO [restartedMain] Starting service [Tomcat] +2020-12-27 15:32:18,103 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-27 15:32:18,208 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-27 15:32:18,211 INFO [restartedMain] Root WebApplicationContext: initialization completed in 2088 ms +2020-12-27 15:32:18,680 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-27 15:32:18,740 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-27 15:32:18,915 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-27 15:32:19,056 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-27 15:32:19,584 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-27 15:32:19,615 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-27 15:32:20,702 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-27 15:32:20,710 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 15:32:20,726 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-27 15:32:21,348 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false +2020-12-27 15:32:21,761 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-27 15:32:21,927 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-27 15:32:22,274 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-27 15:32:22,295 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-27 15:32:22,342 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 7.209 seconds (JVM running for 8.852) +2020-12-27 15:32:30,157 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-27 15:32:30,157 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-27 15:32:30,167 INFO [http-nio-8000-exec-1] Completed initialization in 9 ms +2020-12-27 15:32:30,208 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de +2020-12-27 15:32:45,593 WARN [http-nio-8000-exec-3] matched +2020-12-27 15:33:04,346 INFO [http-nio-8000-exec-5] simon.bussmann@adolfinum.de has voted! +2020-12-27 15:42:09,024 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2020-12-27 15:43:12,716 WARN [http-nio-8000-exec-6] matched +2020-12-27 15:45:26,761 INFO [http-nio-8000-exec-10] simon.bussmann@adolfinum.de has voted! +2020-12-27 15:45:38,299 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-27 15:45:38,318 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de has already voted +2020-12-27 15:51:11,973 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-27 15:51:11,976 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 15:51:11,982 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-27 15:51:12,010 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-27 18:24:32,096 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 269 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) +2020-12-27 18:24:32,111 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-27 18:24:32,311 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-27 18:24:32,313 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-27 18:24:33,316 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-27 18:24:33,422 INFO [restartedMain] Finished Spring Data repository scanning in 91ms. Found 6 JPA repository interfaces. +2020-12-27 18:24:34,802 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-27 18:24:34,821 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-27 18:24:34,823 INFO [restartedMain] Starting service [Tomcat] +2020-12-27 18:24:34,824 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-27 18:24:34,970 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-27 18:24:34,972 INFO [restartedMain] Root WebApplicationContext: initialization completed in 2657 ms +2020-12-27 18:24:35,532 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-27 18:24:35,613 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-27 18:24:35,858 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-27 18:24:36,008 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-27 18:24:37,017 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-27 18:24:37,067 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-27 18:24:38,460 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-27 18:24:38,471 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 18:24:38,495 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-27 18:24:39,287 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false +2020-12-27 18:24:39,798 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-27 18:24:40,037 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-27 18:24:40,447 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-27 18:24:40,483 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-27 18:24:40,504 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 9.509 seconds (JVM running for 11.824) +2020-12-27 18:31:34,632 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-27 18:31:34,636 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-27 18:31:34,654 INFO [http-nio-8000-exec-1] Completed initialization in 17 ms +2020-12-27 18:31:46,366 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de +2020-12-27 18:31:46,419 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de has already voted +2020-12-27 18:32:34,478 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de +2020-12-27 18:33:15,577 WARN [http-nio-8000-exec-10] matched +2020-12-27 18:33:28,222 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de +2020-12-27 18:33:39,781 WARN [http-nio-8000-exec-6] matched +2020-12-27 19:12:07,708 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de +2020-12-27 19:12:24,036 WARN [http-nio-8000-exec-5] matched +2020-12-27 19:13:23,934 INFO [http-nio-8000-exec-7] simon.bussmann@adolfinum.de has voted! +2020-12-27 19:15:03,595 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de +2020-12-27 19:15:03,599 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de has already voted +2020-12-27 19:19:30,112 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-27 19:19:30,115 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 19:19:30,134 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2020-12-27 19:19:30,179 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2020-12-27 22:15:52,037 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 242 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) +2020-12-27 22:15:52,046 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-27 22:15:52,328 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-27 22:15:52,330 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-27 22:15:53,809 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-27 22:15:54,013 INFO [restartedMain] Finished Spring Data repository scanning in 180ms. Found 6 JPA repository interfaces. +2020-12-27 22:15:57,013 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-27 22:15:57,081 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-27 22:15:57,085 INFO [restartedMain] Starting service [Tomcat] +2020-12-27 22:15:57,093 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-27 22:15:57,349 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-27 22:15:57,360 INFO [restartedMain] Root WebApplicationContext: initialization completed in 5029 ms +2020-12-27 22:15:58,121 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-27 22:15:58,345 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-27 22:15:58,753 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-27 22:15:59,040 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-27 22:16:00,382 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-27 22:16:00,501 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-27 22:16:03,129 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-27 22:16:03,150 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 22:16:03,255 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-27 22:16:04,895 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false +2020-12-27 22:16:06,029 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-27 22:16:06,565 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-27 22:16:07,479 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-27 22:16:07,730 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-27 22:16:07,790 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 17.457 seconds (JVM running for 19.857) +2020-12-27 22:16:48,900 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-27 22:16:48,903 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-27 22:16:48,921 INFO [http-nio-8000-exec-1] Completed initialization in 17 ms +2020-12-27 22:17:04,014 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2020-12-27 22:17:04,111 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de has already voted +2020-12-27 22:18:44,172 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de +2020-12-27 22:19:04,880 WARN [http-nio-8000-exec-1] matched +2020-12-27 22:19:29,043 ERROR [http-nio-8000-exec-3] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NumberFormatException: For input string: ""] with root cause +java.lang.NumberFormatException: For input string: "" + at java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) + at java.base/java.lang.Long.parseLong(Long.java:702) + at java.base/java.lang.Long.valueOf(Long.java:1144) + at com.github.cato447.AbizeitungVotingSystem.table.TableAction.voteForCandidate(TableAction.java:83) + at com.github.cato447.AbizeitungVotingSystem.controller.VotingController.ProcessVote(VotingController.java:240) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:566) + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:878) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:792) + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.base/java.lang.Thread.run(Thread.java:829) +2020-12-27 22:20:35,649 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de +2020-12-27 22:20:59,072 WARN [http-nio-8000-exec-10] matched +2020-12-27 22:21:14,418 ERROR [http-nio-8000-exec-1] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NumberFormatException: For input string: ""] with root cause +java.lang.NumberFormatException: For input string: "" + at java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) + at java.base/java.lang.Long.parseLong(Long.java:702) + at java.base/java.lang.Long.valueOf(Long.java:1144) + at com.github.cato447.AbizeitungVotingSystem.table.TableAction.voteForCandidate(TableAction.java:83) + at com.github.cato447.AbizeitungVotingSystem.controller.VotingController.ProcessVote(VotingController.java:240) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:566) + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:878) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:792) + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.base/java.lang.Thread.run(Thread.java:829) +2020-12-27 22:22:19,508 INFO [Thread-4] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-27 22:22:19,510 INFO [Thread-4] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 22:22:19,514 INFO [Thread-4] HikariPool-1 - Shutdown initiated... +2020-12-27 22:22:19,556 INFO [Thread-4] HikariPool-1 - Shutdown completed. +2020-12-27 22:22:19,764 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 242 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) +2020-12-27 22:22:19,766 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-27 22:22:20,065 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-27 22:22:20,105 INFO [restartedMain] Finished Spring Data repository scanning in 38ms. Found 6 JPA repository interfaces. +2020-12-27 22:22:20,454 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-27 22:22:20,456 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-27 22:22:20,460 INFO [restartedMain] Starting service [Tomcat] +2020-12-27 22:22:20,460 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-27 22:22:20,489 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-27 22:22:20,490 INFO [restartedMain] Root WebApplicationContext: initialization completed in 712 ms +2020-12-27 22:22:20,585 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-27 22:22:20,598 INFO [restartedMain] HikariPool-2 - Starting... +2020-12-27 22:22:20,656 INFO [restartedMain] HikariPool-2 - Start completed. +2020-12-27 22:22:20,656 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-27 22:22:20,933 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-27 22:22:20,934 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 22:22:20,942 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-27 22:22:21,459 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false +2020-12-27 22:22:21,594 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-27 22:22:21,702 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-27 22:22:21,847 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-27 22:22:21,867 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-27 22:22:21,880 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 2.172 seconds (JVM running for 393.947) +2020-12-27 22:22:21,883 INFO [restartedMain] Condition evaluation unchanged +2020-12-27 22:22:24,903 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-27 22:22:24,904 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-27 22:22:24,909 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms +2020-12-27 22:22:28,574 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-27 22:22:39,513 WARN [http-nio-8000-exec-5] matched +2020-12-27 22:23:10,563 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de +2020-12-27 22:23:44,331 WARN [http-nio-8000-exec-3] matched +2020-12-27 22:24:47,420 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de +2020-12-27 22:25:14,722 WARN [http-nio-8000-exec-1] matched +2020-12-27 22:25:38,513 INFO [http-nio-8000-exec-4] simon.bussmann@adolfinum.de has voted! +2020-12-27 22:25:47,897 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de +2020-12-27 22:25:47,901 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de has already voted +2020-12-27 22:26:44,138 INFO [Thread-8] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-27 22:26:44,140 INFO [Thread-8] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 22:26:44,145 INFO [Thread-8] HikariPool-2 - Shutdown initiated... +2020-12-27 22:26:44,187 INFO [Thread-8] HikariPool-2 - Shutdown completed. +2020-12-27 22:26:44,371 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 242 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) +2020-12-27 22:26:44,378 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-27 22:26:44,760 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-27 22:26:44,805 INFO [restartedMain] Finished Spring Data repository scanning in 44ms. Found 6 JPA repository interfaces. +2020-12-27 22:26:45,081 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-27 22:26:45,083 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-27 22:26:45,084 INFO [restartedMain] Starting service [Tomcat] +2020-12-27 22:26:45,084 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-27 22:26:45,111 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-27 22:26:45,113 INFO [restartedMain] Root WebApplicationContext: initialization completed in 725 ms +2020-12-27 22:26:45,224 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-27 22:26:45,248 INFO [restartedMain] HikariPool-3 - Starting... +2020-12-27 22:26:45,312 INFO [restartedMain] HikariPool-3 - Start completed. +2020-12-27 22:26:45,312 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-27 22:26:45,631 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-27 22:26:45,631 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 22:26:45,636 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-27 22:26:46,029 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false +2020-12-27 22:26:46,147 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-27 22:26:46,242 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-27 22:26:46,333 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-27 22:26:46,425 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-27 22:26:46,431 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 2.131 seconds (JVM running for 658.498) +2020-12-27 22:26:46,438 INFO [restartedMain] Condition evaluation unchanged +2020-12-27 22:26:46,473 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-27 22:26:46,474 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-27 22:26:46,478 INFO [http-nio-8000-exec-1] Completed initialization in 4 ms +2020-12-27 22:26:57,006 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de +2020-12-27 22:26:57,018 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de has already voted diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java index 369d649..096ac62 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java @@ -25,16 +25,6 @@ import java.util.concurrent.ExecutionException; @Controller public class VotingController { - - @Value("motto") - String motto; - - @Value("adding") - String adding; - - @Value("voting") - String voting; - private boolean votingPhase = false; private boolean mottoPhase = false; private boolean addingPhase = false; @@ -67,8 +57,8 @@ public class VotingController { @PostConstruct public void init() { mottoPhase = false; - votingPhase = false; - addingPhase = true; + votingPhase = true; + addingPhase = false; LOGGER.info("Program started with arguments: votingPhase="+ votingPhase + " mottoPhase=" + mottoPhase + " addingPhase=" + addingPhase); @@ -127,7 +117,6 @@ public class VotingController { return "errors/alreadyVoted.html"; } else { if (authCodesRepository.findByName(name) == null) { - LOGGER.warn("no code"); AuthCode authCode = tableAction.generateToken(name, RandomNumber.getRandomNumberString(), authCodesRepository); sendSimpleMessage(name, "Code zur Authentifizierung", "Dein Code lautet: " + authCode.getCode()); } else if (authCodesRepository.findByName(name) != null && authCodesRepository.findByName(name).isExpired()) { @@ -164,7 +153,6 @@ public class VotingController { @RequestMapping("/vote") public String voting_adding(@RequestParam String code, @RequestParam String name, Model model) { String tokenStatus = tableAction.checkToken(name, code, authCodesRepository); - LOGGER.warn(code); if (tokenStatus.equals("matched")) { LOGGER.warn("matched"); if (mottoPhase) { @@ -244,15 +232,17 @@ public class VotingController { @RequestMapping("/processVote") public String ProcessVote(@RequestParam String name, @RequestParam String voteValues) { - if (voterRepository.findByEmail(name).getCandidatesubmit_status()) { - return "errors/alreadySubmitted.html"; + if (voterRepository.findByEmail(name).getVote_status()) { + return "errors/alreadyVoted.html"; } else { - String[] partVoteValues = voteValues.split(","); - for (String s : partVoteValues) { - tableAction.voteForCandidate(s, candidateRepository); + if(!voteValues.equals("")) { + String[] partVoteValues = voteValues.split(","); + for (String s : partVoteValues) { + tableAction.voteForCandidate(s, candidateRepository); + } + LOGGER.info(name + " has voted!"); } tableAction.updateVotingStatus(name, voterRepository); - LOGGER.info(name + " has voted!"); return "voteSuccessful.html"; } } diff --git a/src/main/resources/templates/errors/alreadyVoted.html b/src/main/resources/templates/errors/alreadyVoted.html index ad4dc2b..2fafb30 100644 --- a/src/main/resources/templates/errors/alreadyVoted.html +++ b/src/main/resources/templates/errors/alreadyVoted.html @@ -10,7 +10,6 @@

Du hast schon abgestimmt!

-

Nächste Abstimmung in:

@@ -18,28 +17,6 @@ document.getElementById("backButton").onclick = function() { location.href = "/"; }; - - const zeroPad = (num, places) => String(num).padStart(places, '0') - - // We can set endTime to whatever we want here (e.g. Midnight today ) - // Use moment().endOf('day') to do this. - var dateFuture = new Date(2020, 11, 28, 0, 0); - - // Show time remaining now. - showTimeRemaining(); - - // Set a timer to update the displayed clock every 1000 milliseconds. - setInterval(showTimeRemaining, 1000); - - function showTimeRemaining() { - var dateNow = Date.now(); - var days = zeroPad(Math.floor((dateFuture - dateNow) / (1000 * 60 * 60 * 24)), 2); - var hours = zeroPad(Math.floor(((dateFuture - dateNow) - days * 1000 * 60 * 60 * 24) / (1000 * 60 * 60)), 2); - var mins = zeroPad(Math.floor(((dateFuture - dateNow) - days * 1000 * 60 * 60 * 24 - hours * 1000 * 60 * 60) / (1000 * 60)), 2); - var secs = zeroPad(Math.floor(((dateFuture - dateNow) - days * 1000 * 60 * 60 * 24 - hours * 1000 * 60 * 60 - mins * 1000 * 60) / 1000), 2); - document.getElementById("time_remain").innerHTML = "Nächste Abstimmung in: " + days + "D " + hours + ":" + mins + ":" + secs; - console.log("Nächste Abstimmung in: " + days + "D " + hours + ":" + mins + ":" + secs); - } diff --git a/src/main/resources/templates/voteSuccessful.html b/src/main/resources/templates/voteSuccessful.html index 777a7b7..3d74f7d 100644 --- a/src/main/resources/templates/voteSuccessful.html +++ b/src/main/resources/templates/voteSuccessful.html @@ -11,7 +11,6 @@

Deine Auswahl fließt nun in die Wahl ein!

Danke fürs abstimmen!

-

Nächste Abstimmung in:

@@ -20,28 +19,6 @@ document.getElementById("backButton").onclick = function() { location.href = "/"; }; - - const zeroPad = (num, places) => String(num).padStart(places, '0') - - // We can set endTime to whatever we want here (e.g. Midnight today ) - // Use moment().endOf('day') to do this. - var dateFuture = new Date(2020, 11, 28, 0, 0); - - // Show time remaining now. - showTimeRemaining(); - - // Set a timer to update the displayed clock every 1000 milliseconds. - setInterval(showTimeRemaining, 1000); - - function showTimeRemaining() { - var dateNow = Date.now(); - var days = zeroPad(Math.floor((dateFuture - dateNow) / (1000 * 60 * 60 * 24)), 2); - var hours = zeroPad(Math.floor(((dateFuture - dateNow) - days * 1000 * 60 * 60 * 24) / (1000 * 60 * 60)), 2); - var mins = zeroPad(Math.floor(((dateFuture - dateNow) - days * 1000 * 60 * 60 * 24 - hours * 1000 * 60 * 60) / (1000 * 60)), 2); - var secs = zeroPad(Math.floor(((dateFuture - dateNow) - days * 1000 * 60 * 60 * 24 - hours * 1000 * 60 * 60 - mins * 1000 * 60) / 1000), 2); - document.getElementById("time_remain").innerHTML = "Nächste Abstimmung in: " + days + "D " + hours + ":" + mins + ":" + secs; - console.log("Nächste Abstimmung in: " + days + "D " + hours + ":" + mins + ":" + secs); - } \ No newline at end of file From 2a8ba84becb7c04dceb5feb782f319b86169bb34 Mon Sep 17 00:00:00 2001 From: Simon Bussmann Date: Sun, 27 Dec 2020 23:23:41 +0100 Subject: [PATCH 17/35] Added a datelock to end votes automatically --- logs/Voting.log | 659 ++++++++++++++++++ .../controller/VotingController.java | 13 +- .../templates/errors/votingClosed.html | 24 + 3 files changed, 695 insertions(+), 1 deletion(-) create mode 100644 src/main/resources/templates/errors/votingClosed.html diff --git a/logs/Voting.log b/logs/Voting.log index 7ed30ec..44a2e37 100644 --- a/logs/Voting.log +++ b/logs/Voting.log @@ -550,3 +550,662 @@ java.lang.NumberFormatException: For input string: "" 2020-12-27 22:26:46,478 INFO [http-nio-8000-exec-1] Completed initialization in 4 ms 2020-12-27 22:26:57,006 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de 2020-12-27 22:26:57,018 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de has already voted +2020-12-27 22:55:57,464 INFO [Thread-15] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-27 22:55:57,466 INFO [Thread-15] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 22:55:57,472 INFO [Thread-15] HikariPool-3 - Shutdown initiated... +2020-12-27 22:55:57,490 INFO [Thread-15] HikariPool-3 - Shutdown completed. +2020-12-27 22:55:57,674 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 242 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) +2020-12-27 22:55:57,675 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-27 22:55:57,844 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-27 22:55:57,884 INFO [restartedMain] Finished Spring Data repository scanning in 39ms. Found 6 JPA repository interfaces. +2020-12-27 22:55:58,173 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-27 22:55:58,174 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-27 22:55:58,174 INFO [restartedMain] Starting service [Tomcat] +2020-12-27 22:55:58,174 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-27 22:55:58,204 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-27 22:55:58,205 INFO [restartedMain] Root WebApplicationContext: initialization completed in 527 ms +2020-12-27 22:55:58,287 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-27 22:55:58,304 INFO [restartedMain] HikariPool-4 - Starting... +2020-12-27 22:55:58,344 INFO [restartedMain] HikariPool-4 - Start completed. +2020-12-27 22:55:58,344 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-27 22:55:58,471 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-27 22:55:58,472 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 22:55:58,482 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-27 22:55:58,640 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-27 22:55:58,672 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-27 22:55:58,747 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-27 22:55:58,767 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-27 22:55:58,773 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 1.144 seconds (JVM running for 2410.839) +2020-12-27 22:55:58,774 INFO [restartedMain] Condition evaluation unchanged +2020-12-27 22:56:12,199 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-27 22:56:12,202 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-27 22:56:12,204 INFO [http-nio-8000-exec-1] Completed initialization in 2 ms +2020-12-27 22:57:21,838 INFO [Thread-20] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-27 22:57:21,863 INFO [Thread-20] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 22:57:21,867 INFO [Thread-20] HikariPool-4 - Shutdown initiated... +2020-12-27 22:57:21,890 INFO [Thread-20] HikariPool-4 - Shutdown completed. +2020-12-27 22:57:22,041 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 242 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) +2020-12-27 22:57:22,042 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-27 22:57:22,201 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-27 22:57:22,224 INFO [restartedMain] Finished Spring Data repository scanning in 22ms. Found 6 JPA repository interfaces. +2020-12-27 22:57:22,420 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-27 22:57:22,422 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-27 22:57:22,422 INFO [restartedMain] Starting service [Tomcat] +2020-12-27 22:57:22,423 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-27 22:57:22,438 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-27 22:57:22,439 INFO [restartedMain] Root WebApplicationContext: initialization completed in 393 ms +2020-12-27 22:57:22,509 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-27 22:57:22,516 INFO [restartedMain] HikariPool-5 - Starting... +2020-12-27 22:57:22,543 INFO [restartedMain] HikariPool-5 - Start completed. +2020-12-27 22:57:22,544 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-27 22:57:22,709 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-27 22:57:22,710 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 22:57:22,717 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-27 22:57:22,972 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false +2020-12-27 22:57:23,014 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-27 22:57:23,036 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-27 22:57:23,073 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-27 22:57:23,075 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-27 22:57:23,078 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 1.067 seconds (JVM running for 2495.144) +2020-12-27 22:57:23,079 INFO [restartedMain] Condition evaluation unchanged +2020-12-27 22:57:32,549 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-27 22:57:32,550 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-27 22:57:32,556 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms +2020-12-27 22:57:32,559 WARN [http-nio-8000-exec-1] in Bounds +2020-12-27 22:57:38,761 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2020-12-27 22:57:49,019 WARN [http-nio-8000-exec-6] in Bounds +2020-12-27 22:58:04,641 INFO [Thread-26] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-27 22:58:04,642 INFO [Thread-26] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 22:58:04,645 INFO [Thread-26] HikariPool-5 - Shutdown initiated... +2020-12-27 22:58:04,682 INFO [Thread-26] HikariPool-5 - Shutdown completed. +2020-12-27 22:58:04,811 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 242 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) +2020-12-27 22:58:04,812 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-27 22:58:04,928 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-27 22:58:04,947 INFO [restartedMain] Finished Spring Data repository scanning in 17ms. Found 6 JPA repository interfaces. +2020-12-27 22:58:05,059 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-27 22:58:05,060 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-27 22:58:05,060 INFO [restartedMain] Starting service [Tomcat] +2020-12-27 22:58:05,060 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-27 22:58:05,069 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-27 22:58:05,069 INFO [restartedMain] Root WebApplicationContext: initialization completed in 252 ms +2020-12-27 22:58:05,107 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-27 22:58:05,111 INFO [restartedMain] HikariPool-6 - Starting... +2020-12-27 22:58:05,138 INFO [restartedMain] HikariPool-6 - Start completed. +2020-12-27 22:58:05,138 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-27 22:58:05,315 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-27 22:58:05,316 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 22:58:05,322 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-27 22:58:05,540 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false +2020-12-27 22:58:05,656 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-27 22:58:05,694 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-27 22:58:05,770 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-27 22:58:05,785 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-27 22:58:05,789 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 1.004 seconds (JVM running for 2537.856) +2020-12-27 22:58:05,796 INFO [restartedMain] Condition evaluation unchanged +2020-12-27 22:58:08,993 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-27 22:58:08,994 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-27 22:58:08,998 INFO [http-nio-8000-exec-1] Completed initialization in 3 ms +2020-12-27 22:58:09,000 WARN [http-nio-8000-exec-1] in Bounds +2020-12-27 22:58:10,605 WARN [http-nio-8000-exec-3] in Bounds +2020-12-27 22:58:23,547 WARN [http-nio-8000-exec-5] in Bounds +2020-12-27 22:58:25,903 WARN [http-nio-8000-exec-7] in Bounds +2020-12-27 22:58:40,743 INFO [Thread-32] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-27 22:58:40,744 INFO [Thread-32] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 22:58:40,745 INFO [Thread-32] HikariPool-6 - Shutdown initiated... +2020-12-27 22:58:40,788 INFO [Thread-32] HikariPool-6 - Shutdown completed. +2020-12-27 22:58:40,929 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 242 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) +2020-12-27 22:58:40,930 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-27 22:58:41,076 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-27 22:58:41,096 INFO [restartedMain] Finished Spring Data repository scanning in 19ms. Found 6 JPA repository interfaces. +2020-12-27 22:58:41,287 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-27 22:58:41,289 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-27 22:58:41,289 INFO [restartedMain] Starting service [Tomcat] +2020-12-27 22:58:41,290 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-27 22:58:41,303 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-27 22:58:41,303 INFO [restartedMain] Root WebApplicationContext: initialization completed in 370 ms +2020-12-27 22:58:41,349 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-27 22:58:41,353 INFO [restartedMain] HikariPool-7 - Starting... +2020-12-27 22:58:41,375 INFO [restartedMain] HikariPool-7 - Start completed. +2020-12-27 22:58:41,376 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-27 22:58:41,562 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-27 22:58:41,562 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 22:58:41,565 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-27 22:58:41,835 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false +2020-12-27 22:58:41,909 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-27 22:58:41,952 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-27 22:58:42,094 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-27 22:58:42,108 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-27 22:58:42,112 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 1.225 seconds (JVM running for 2574.178) +2020-12-27 22:58:42,114 INFO [restartedMain] Condition evaluation unchanged +2020-12-27 22:58:45,043 INFO [http-nio-8000-exec-2] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-27 22:58:45,045 INFO [http-nio-8000-exec-2] Initializing Servlet 'dispatcherServlet' +2020-12-27 22:58:45,050 INFO [http-nio-8000-exec-2] Completed initialization in 5 ms +2020-12-27 22:58:45,052 WARN [http-nio-8000-exec-2] passed +2020-12-27 22:58:45,070 ERROR [http-nio-8000-exec-2] [THYMELEAF][http-nio-8000-exec-2] Exception processing template "errors/votingClosed.html": Error resolving template [errors/votingClosed.html], template might not exist or might not be accessible by any of the configured Template Resolvers +org.thymeleaf.exceptions.TemplateInputException: Error resolving template [errors/votingClosed.html], template might not exist or might not be accessible by any of the configured Template Resolvers + at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.base/java.lang.Thread.run(Thread.java:829) +2020-12-27 22:58:45,071 ERROR [http-nio-8000-exec-2] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: Error resolving template [errors/votingClosed.html], template might not exist or might not be accessible by any of the configured Template Resolvers] with root cause +org.thymeleaf.exceptions.TemplateInputException: Error resolving template [errors/votingClosed.html], template might not exist or might not be accessible by any of the configured Template Resolvers + at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.base/java.lang.Thread.run(Thread.java:829) +2020-12-27 23:07:31,449 INFO [Thread-37] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-27 23:07:31,449 INFO [Thread-37] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 23:07:31,451 INFO [Thread-37] HikariPool-7 - Shutdown initiated... +2020-12-27 23:07:31,487 INFO [Thread-37] HikariPool-7 - Shutdown completed. +2020-12-27 23:07:31,638 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 242 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) +2020-12-27 23:07:31,646 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-27 23:07:31,873 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-27 23:07:31,934 INFO [restartedMain] Finished Spring Data repository scanning in 51ms. Found 6 JPA repository interfaces. +2020-12-27 23:07:32,212 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-27 23:07:32,213 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-27 23:07:32,214 INFO [restartedMain] Starting service [Tomcat] +2020-12-27 23:07:32,215 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-27 23:07:32,232 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-27 23:07:32,233 INFO [restartedMain] Root WebApplicationContext: initialization completed in 585 ms +2020-12-27 23:07:32,304 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-27 23:07:32,310 INFO [restartedMain] HikariPool-8 - Starting... +2020-12-27 23:07:32,367 INFO [restartedMain] HikariPool-8 - Start completed. +2020-12-27 23:07:32,368 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-27 23:07:32,627 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-27 23:07:32,628 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 23:07:32,633 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-27 23:07:32,991 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false +2020-12-27 23:07:33,127 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-27 23:07:33,191 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-27 23:07:33,272 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-27 23:07:33,335 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-27 23:07:33,348 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 1.752 seconds (JVM running for 3105.415) +2020-12-27 23:07:33,352 INFO [restartedMain] Condition evaluation unchanged +2020-12-27 23:07:45,629 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-27 23:07:45,630 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-27 23:07:45,640 INFO [http-nio-8000-exec-1] Completed initialization in 10 ms +2020-12-27 23:07:45,641 WARN [http-nio-8000-exec-1] in Bounds +2020-12-27 23:11:27,503 INFO [Thread-42] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-27 23:11:27,504 INFO [Thread-42] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 23:11:27,505 INFO [Thread-42] HikariPool-8 - Shutdown initiated... +2020-12-27 23:11:27,568 INFO [Thread-42] HikariPool-8 - Shutdown completed. +2020-12-27 23:11:27,686 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 242 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) +2020-12-27 23:11:27,686 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-27 23:11:27,902 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-27 23:11:27,919 INFO [restartedMain] Finished Spring Data repository scanning in 16ms. Found 6 JPA repository interfaces. +2020-12-27 23:11:28,055 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-27 23:11:28,056 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-27 23:11:28,056 INFO [restartedMain] Starting service [Tomcat] +2020-12-27 23:11:28,057 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-27 23:11:28,066 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-27 23:11:28,067 INFO [restartedMain] Root WebApplicationContext: initialization completed in 373 ms +2020-12-27 23:11:28,126 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-27 23:11:28,132 INFO [restartedMain] HikariPool-9 - Starting... +2020-12-27 23:11:28,174 INFO [restartedMain] HikariPool-9 - Start completed. +2020-12-27 23:11:28,174 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-27 23:11:28,433 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-27 23:11:28,434 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 23:11:28,440 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-27 23:11:28,762 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false +2020-12-27 23:11:28,838 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-27 23:11:28,873 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-27 23:11:28,935 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-27 23:11:28,938 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-27 23:11:28,949 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 1.299 seconds (JVM running for 3341.016) +2020-12-27 23:11:28,951 INFO [restartedMain] Condition evaluation unchanged +2020-12-27 23:11:35,633 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-27 23:11:35,634 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-27 23:11:35,640 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms +2020-12-27 23:11:35,642 WARN [http-nio-8000-exec-1] in Bounds +2020-12-27 23:12:13,799 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-27 23:12:13,800 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 23:12:13,801 INFO [SpringContextShutdownHook] HikariPool-9 - Shutdown initiated... +2020-12-27 23:12:13,839 INFO [SpringContextShutdownHook] HikariPool-9 - Shutdown completed. +2020-12-27 23:12:19,957 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 1068 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) +2020-12-27 23:12:19,975 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-27 23:12:20,179 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-27 23:12:20,180 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-27 23:12:20,994 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-27 23:12:21,078 INFO [restartedMain] Finished Spring Data repository scanning in 75ms. Found 6 JPA repository interfaces. +2020-12-27 23:12:22,126 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-27 23:12:22,142 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-27 23:12:22,143 INFO [restartedMain] Starting service [Tomcat] +2020-12-27 23:12:22,144 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-27 23:12:22,257 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-27 23:12:22,258 INFO [restartedMain] Root WebApplicationContext: initialization completed in 2075 ms +2020-12-27 23:12:22,551 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-27 23:12:22,594 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-27 23:12:22,714 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-27 23:12:22,845 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-27 23:12:23,486 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-27 23:12:23,515 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-27 23:12:24,583 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-27 23:12:24,591 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 23:12:24,608 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-27 23:12:25,282 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false +2020-12-27 23:12:25,688 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-27 23:12:25,967 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-27 23:12:26,416 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-27 23:12:26,474 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-27 23:12:26,495 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 7.287 seconds (JVM running for 8.958) +2020-12-27 23:12:39,259 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-27 23:12:39,260 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-27 23:12:39,270 INFO [http-nio-8000-exec-1] Completed initialization in 10 ms +2020-12-27 23:12:39,307 WARN [http-nio-8000-exec-1] in Bounds +2020-12-27 23:12:58,002 INFO [Thread-4] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-27 23:12:58,005 INFO [Thread-4] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 23:12:58,015 INFO [Thread-4] HikariPool-1 - Shutdown initiated... +2020-12-27 23:12:58,067 INFO [Thread-4] HikariPool-1 - Shutdown completed. +2020-12-27 23:12:58,284 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 1068 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) +2020-12-27 23:12:58,285 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-27 23:12:58,575 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-27 23:12:58,625 INFO [restartedMain] Finished Spring Data repository scanning in 47ms. Found 6 JPA repository interfaces. +2020-12-27 23:12:58,907 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-27 23:12:58,909 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-27 23:12:58,909 INFO [restartedMain] Starting service [Tomcat] +2020-12-27 23:12:58,910 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-27 23:12:58,938 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-27 23:12:58,939 INFO [restartedMain] Root WebApplicationContext: initialization completed in 650 ms +2020-12-27 23:12:58,995 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-27 23:12:59,001 INFO [restartedMain] HikariPool-2 - Starting... +2020-12-27 23:12:59,070 INFO [restartedMain] HikariPool-2 - Start completed. +2020-12-27 23:12:59,070 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-27 23:12:59,400 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-27 23:12:59,401 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 23:12:59,407 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-27 23:12:59,896 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false +2020-12-27 23:13:00,057 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-27 23:13:00,155 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-27 23:13:00,306 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-27 23:13:00,367 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-27 23:13:00,373 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 2.177 seconds (JVM running for 42.836) +2020-12-27 23:13:00,376 INFO [restartedMain] Condition evaluation unchanged +2020-12-27 23:13:06,300 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-27 23:13:06,302 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-27 23:13:06,305 INFO [http-nio-8000-exec-1] Completed initialization in 3 ms +2020-12-27 23:13:06,308 WARN [http-nio-8000-exec-1] in Bounds +2020-12-27 23:17:07,393 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-27 23:17:07,402 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 23:17:07,404 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown initiated... +2020-12-27 23:17:07,449 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown completed. +2020-12-27 23:17:13,095 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 1246 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) +2020-12-27 23:17:13,126 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-27 23:17:13,322 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2020-12-27 23:17:13,323 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2020-12-27 23:17:14,295 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-27 23:17:14,379 INFO [restartedMain] Finished Spring Data repository scanning in 74ms. Found 6 JPA repository interfaces. +2020-12-27 23:17:15,403 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-27 23:17:15,415 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-27 23:17:15,416 INFO [restartedMain] Starting service [Tomcat] +2020-12-27 23:17:15,416 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-27 23:17:15,539 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-27 23:17:15,539 INFO [restartedMain] Root WebApplicationContext: initialization completed in 2215 ms +2020-12-27 23:17:15,841 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-27 23:17:15,882 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2020-12-27 23:17:15,997 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2020-12-27 23:17:16,123 INFO [restartedMain] HikariPool-1 - Starting... +2020-12-27 23:17:16,763 INFO [restartedMain] HikariPool-1 - Start completed. +2020-12-27 23:17:16,836 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-27 23:17:17,984 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-27 23:17:17,992 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 23:17:18,012 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-27 23:17:18,577 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false +2020-12-27 23:17:18,888 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-27 23:17:19,028 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-27 23:17:19,275 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-27 23:17:19,296 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-27 23:17:19,308 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 6.978 seconds (JVM running for 8.174) +2020-12-27 23:17:28,486 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-27 23:17:28,487 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-27 23:17:28,528 INFO [http-nio-8000-exec-1] Completed initialization in 41 ms +2020-12-27 23:17:28,621 WARN [http-nio-8000-exec-1] in Bounds +2020-12-27 23:17:44,825 INFO [Thread-4] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-27 23:17:44,827 INFO [Thread-4] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 23:17:44,838 INFO [Thread-4] HikariPool-1 - Shutdown initiated... +2020-12-27 23:17:44,874 INFO [Thread-4] HikariPool-1 - Shutdown completed. +2020-12-27 23:17:45,017 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 1246 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) +2020-12-27 23:17:45,018 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-27 23:17:45,324 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-27 23:17:45,367 INFO [restartedMain] Finished Spring Data repository scanning in 38ms. Found 6 JPA repository interfaces. +2020-12-27 23:17:45,725 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-27 23:17:45,727 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-27 23:17:45,731 INFO [restartedMain] Starting service [Tomcat] +2020-12-27 23:17:45,734 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-27 23:17:45,765 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-27 23:17:45,765 INFO [restartedMain] Root WebApplicationContext: initialization completed in 743 ms +2020-12-27 23:17:45,910 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-27 23:17:45,916 INFO [restartedMain] HikariPool-2 - Starting... +2020-12-27 23:17:46,055 INFO [restartedMain] HikariPool-2 - Start completed. +2020-12-27 23:17:46,062 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-27 23:17:46,351 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-27 23:17:46,352 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 23:17:46,359 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-27 23:17:46,882 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false +2020-12-27 23:17:47,126 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-27 23:17:47,244 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-27 23:17:47,392 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-27 23:17:47,439 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-27 23:17:47,444 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 2.461 seconds (JVM running for 36.31) +2020-12-27 23:17:47,451 INFO [restartedMain] Condition evaluation unchanged +2020-12-27 23:17:51,000 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-27 23:17:51,001 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-27 23:17:51,005 INFO [http-nio-8000-exec-1] Completed initialization in 4 ms +2020-12-27 23:17:51,012 WARN [http-nio-8000-exec-1] passed +2020-12-27 23:17:51,040 ERROR [http-nio-8000-exec-1] [THYMELEAF][http-nio-8000-exec-1] Exception processing template "errors/votingClosed.html": Error resolving template [errors/votingClosed.html], template might not exist or might not be accessible by any of the configured Template Resolvers +org.thymeleaf.exceptions.TemplateInputException: Error resolving template [errors/votingClosed.html], template might not exist or might not be accessible by any of the configured Template Resolvers + at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.base/java.lang.Thread.run(Thread.java:829) +2020-12-27 23:17:51,043 ERROR [http-nio-8000-exec-1] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: Error resolving template [errors/votingClosed.html], template might not exist or might not be accessible by any of the configured Template Resolvers] with root cause +org.thymeleaf.exceptions.TemplateInputException: Error resolving template [errors/votingClosed.html], template might not exist or might not be accessible by any of the configured Template Resolvers + at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.base/java.lang.Thread.run(Thread.java:829) +2020-12-27 23:18:12,960 INFO [Thread-8] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-27 23:18:12,962 INFO [Thread-8] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 23:18:12,963 INFO [Thread-8] HikariPool-2 - Shutdown initiated... +2020-12-27 23:18:13,024 INFO [Thread-8] HikariPool-2 - Shutdown completed. +2020-12-27 23:18:13,224 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 1246 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) +2020-12-27 23:18:13,225 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-27 23:18:13,571 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-27 23:18:13,608 INFO [restartedMain] Finished Spring Data repository scanning in 35ms. Found 6 JPA repository interfaces. +2020-12-27 23:18:13,937 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-27 23:18:13,938 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-27 23:18:13,939 INFO [restartedMain] Starting service [Tomcat] +2020-12-27 23:18:13,940 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-27 23:18:13,965 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-27 23:18:13,975 INFO [restartedMain] Root WebApplicationContext: initialization completed in 726 ms +2020-12-27 23:18:14,121 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-27 23:18:14,126 INFO [restartedMain] HikariPool-3 - Starting... +2020-12-27 23:18:14,176 INFO [restartedMain] HikariPool-3 - Start completed. +2020-12-27 23:18:14,183 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-27 23:18:14,503 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-27 23:18:14,510 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 23:18:14,524 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-27 23:18:14,838 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false +2020-12-27 23:18:14,959 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-27 23:18:15,028 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-27 23:18:15,122 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-27 23:18:15,143 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-27 23:18:15,149 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 1.975 seconds (JVM running for 64.015) +2020-12-27 23:18:15,156 INFO [restartedMain] Condition evaluation unchanged +2020-12-27 23:18:25,288 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-27 23:18:25,289 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-27 23:18:25,295 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms +2020-12-27 23:18:25,297 WARN [http-nio-8000-exec-1] in Bounds +2020-12-27 23:18:36,674 INFO [Thread-13] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-27 23:18:36,676 INFO [Thread-13] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 23:18:36,678 INFO [Thread-13] HikariPool-3 - Shutdown initiated... +2020-12-27 23:18:36,732 INFO [Thread-13] HikariPool-3 - Shutdown completed. +2020-12-27 23:18:37,000 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 1246 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) +2020-12-27 23:18:37,002 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-27 23:18:37,174 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-27 23:18:37,214 INFO [restartedMain] Finished Spring Data repository scanning in 39ms. Found 6 JPA repository interfaces. +2020-12-27 23:18:37,460 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-27 23:18:37,462 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-27 23:18:37,462 INFO [restartedMain] Starting service [Tomcat] +2020-12-27 23:18:37,463 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-27 23:18:37,498 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-27 23:18:37,498 INFO [restartedMain] Root WebApplicationContext: initialization completed in 486 ms +2020-12-27 23:18:37,579 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-27 23:18:37,584 INFO [restartedMain] HikariPool-4 - Starting... +2020-12-27 23:18:37,647 INFO [restartedMain] HikariPool-4 - Start completed. +2020-12-27 23:18:37,648 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-27 23:18:37,871 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-27 23:18:37,872 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 23:18:37,882 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-27 23:18:38,234 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-27 23:18:38,301 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-27 23:18:38,406 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-27 23:18:38,412 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-27 23:18:38,416 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 1.498 seconds (JVM running for 87.282) +2020-12-27 23:18:38,417 INFO [restartedMain] Condition evaluation unchanged +2020-12-27 23:18:46,413 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-27 23:18:46,417 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-27 23:18:46,423 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms +2020-12-27 23:20:17,615 INFO [Thread-18] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-27 23:20:17,616 INFO [Thread-18] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 23:20:17,620 INFO [Thread-18] HikariPool-4 - Shutdown initiated... +2020-12-27 23:20:17,650 INFO [Thread-18] HikariPool-4 - Shutdown completed. +2020-12-27 23:20:17,921 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 1246 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) +2020-12-27 23:20:17,923 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-27 23:20:18,116 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-27 23:20:18,172 INFO [restartedMain] Finished Spring Data repository scanning in 54ms. Found 6 JPA repository interfaces. +2020-12-27 23:20:18,442 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-27 23:20:18,443 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-27 23:20:18,444 INFO [restartedMain] Starting service [Tomcat] +2020-12-27 23:20:18,444 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-27 23:20:18,474 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-27 23:20:18,474 INFO [restartedMain] Root WebApplicationContext: initialization completed in 547 ms +2020-12-27 23:20:18,552 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-27 23:20:18,559 INFO [restartedMain] HikariPool-5 - Starting... +2020-12-27 23:20:18,584 INFO [restartedMain] HikariPool-5 - Start completed. +2020-12-27 23:20:18,584 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-27 23:20:18,842 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-27 23:20:18,842 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 23:20:18,852 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-27 23:20:19,157 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false +2020-12-27 23:20:19,259 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-27 23:20:19,305 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-27 23:20:19,380 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-27 23:20:19,389 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-27 23:20:19,394 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 1.545 seconds (JVM running for 188.26) +2020-12-27 23:20:19,396 INFO [restartedMain] Condition evaluation unchanged +2020-12-27 23:20:24,016 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-27 23:20:24,021 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-27 23:20:24,025 INFO [http-nio-8000-exec-1] Completed initialization in 4 ms +2020-12-27 23:20:24,026 WARN [http-nio-8000-exec-1] passed +2020-12-27 23:20:27,362 WARN [http-nio-8000-exec-3] passed +2020-12-27 23:20:28,638 WARN [http-nio-8000-exec-5] passed +2020-12-27 23:21:11,596 WARN [http-nio-8000-exec-7] passed +2020-12-27 23:22:26,853 WARN [http-nio-8000-exec-10] passed +2020-12-27 23:22:48,126 INFO [Thread-23] Shutting down ExecutorService 'applicationTaskExecutor' +2020-12-27 23:22:48,127 INFO [Thread-23] Closing JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 23:22:48,135 INFO [Thread-23] HikariPool-5 - Shutdown initiated... +2020-12-27 23:22:48,182 INFO [Thread-23] HikariPool-5 - Shutdown completed. +2020-12-27 23:22:48,330 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 1246 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) +2020-12-27 23:22:48,330 INFO [restartedMain] No active profile set, falling back to default profiles: default +2020-12-27 23:22:48,592 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2020-12-27 23:22:48,618 INFO [restartedMain] Finished Spring Data repository scanning in 24ms. Found 6 JPA repository interfaces. +2020-12-27 23:22:48,783 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2020-12-27 23:22:48,784 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2020-12-27 23:22:48,785 INFO [restartedMain] Starting service [Tomcat] +2020-12-27 23:22:48,785 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2020-12-27 23:22:48,843 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2020-12-27 23:22:48,844 INFO [restartedMain] Root WebApplicationContext: initialization completed in 508 ms +2020-12-27 23:22:48,967 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2020-12-27 23:22:48,985 INFO [restartedMain] HikariPool-6 - Starting... +2020-12-27 23:22:49,045 INFO [restartedMain] HikariPool-6 - Start completed. +2020-12-27 23:22:49,045 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2020-12-27 23:22:49,322 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2020-12-27 23:22:49,322 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2020-12-27 23:22:49,331 INFO [restartedMain] LiveReload server is running on port 35729 +2020-12-27 23:22:49,650 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false +2020-12-27 23:22:49,745 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2020-12-27 23:22:49,816 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2020-12-27 23:22:49,887 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2020-12-27 23:22:49,903 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2020-12-27 23:22:49,908 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 1.645 seconds (JVM running for 338.774) +2020-12-27 23:22:49,912 INFO [restartedMain] Condition evaluation unchanged +2020-12-27 23:23:08,885 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2020-12-27 23:23:08,887 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2020-12-27 23:23:08,901 INFO [http-nio-8000-exec-1] Completed initialization in 14 ms +2020-12-27 23:23:08,903 WARN [http-nio-8000-exec-1] in Bounds diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java index 096ac62..17b1be8 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java @@ -19,6 +19,8 @@ import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import javax.annotation.PostConstruct; +import java.time.LocalDate; +import java.time.Month; import java.util.*; import java.util.concurrent.ExecutionException; @@ -85,7 +87,16 @@ public class VotingController { @RequestMapping("/") public String WelcomeSite() { - return "start.html"; + LocalDate finishDate = LocalDate.of(2021, Month.JANUARY,8); + LocalDate now = LocalDate.now(); + + if(now.isAfter(finishDate)){ + LOGGER.warn("passed"); + return "errors/votingClosed.html"; + } else { + LOGGER.warn("in Bounds"); + return "start.html"; + } } public void sendSimpleMessage(String to, String subject, String text) { diff --git a/src/main/resources/templates/errors/votingClosed.html b/src/main/resources/templates/errors/votingClosed.html new file mode 100644 index 0000000..5c5e830 --- /dev/null +++ b/src/main/resources/templates/errors/votingClosed.html @@ -0,0 +1,24 @@ + + + + + + Title + + + + +
+

Das Voting wurde beendet!

+

Informationen zu Votings sind der Adolfinumwebsite zu entnehmen

+ +
+ + + + + \ No newline at end of file From 907db5fb368fbf6bd5d9d67583b231ab4541d88a Mon Sep 17 00:00:00 2001 From: Simon Bussmann Date: Sun, 27 Dec 2020 23:33:56 +0100 Subject: [PATCH 18/35] QOL --- src/main/resources/templates/voting.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/templates/voting.html b/src/main/resources/templates/voting.html index 9f90626..ab60204 100644 --- a/src/main/resources/templates/voting.html +++ b/src/main/resources/templates/voting.html @@ -62,7 +62,7 @@ $('#votingButtons div.voteDiv:nth-child(' + q + ')').hide(); $('#votingButtons div.voteDiv:nth-child(' + (q + 1) + ')').show(); if (q == (qMax - 1)) { - $('#btnNext').html('Submit Answers'); + $('#btnNext').html('Auswahl bestätigen'); } q++; } else { @@ -81,7 +81,7 @@ - +
From f63847a092de34f4a635d8d42964e8c3a1357bab Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 29 Dec 2020 19:23:45 +0100 Subject: [PATCH 19/35] Updated Requierments --- src/main/resources/Categories.txt | 6 ++-- src/main/resources/Categories2.txt | 53 ++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+), 3 deletions(-) create mode 100644 src/main/resources/Categories2.txt diff --git a/src/main/resources/Categories.txt b/src/main/resources/Categories.txt index 3974196..b533b46 100644 --- a/src/main/resources/Categories.txt +++ b/src/main/resources/Categories.txt @@ -5,7 +5,7 @@ Ehre wem Ehre gebührt - Die Engagiertesten Verhandlungskünstler Stufenclown Knacki -Traumpaar +(x)Traumpaar Lexikon Harzer Unvergesslich @@ -26,10 +26,10 @@ Lehrers Liebling Gleich geblieben Größter Bonze Verdient später am meisten -Lehrerschreck +(x)Lehrerschreck Augenschmaus (W) Augenschmaus (M) -Lästermaul +Lästermaul (Gossip Girl) Notenwürfler Macht alles außer Unterricht Übermotiviert diff --git a/src/main/resources/Categories2.txt b/src/main/resources/Categories2.txt new file mode 100644 index 0000000..51986db --- /dev/null +++ b/src/main/resources/Categories2.txt @@ -0,0 +1,53 @@ +Sportler/in des Jahres +Best dressed student +Picasso Jr. +Verpeilt, verpeilter, ... +Große Klappe +Darf auf keiner Party fehlen +Stille Wasser sind tief +Patrick-Fragen-Steller +Ehrgeizig, ehrgeiziger, ... +Miss Make-Up +Meiste Punkte in Flensburg +Im Bundestag +Leber als Bimsstein +Bester Schwiegersohn +Beste Schwiegertochter +Lebt im Fitnessstudio +Koffeinjunkie +Erkennt man am Lachen +Dschungelkönig/in +Bei Geburt getrennte Zwillinge (Aussehen) +Future Rockstar +Schummelt sich durchs Abi +Organisationstalent +Gute Seele +Nobelpreisträger +Nachteule +Präsentationspro +Lehrerassistent für Technik +Meiste Screentime +Interessiert sich wirklich für den Unterricht +Kleiner Exentriker +Herrscht hart, aber gerecht +Niemand traut sich zu schwänzen +Man lernt nicht für die Schule sondern fürs Leben +Konntert am besten +Best dressed teacher +Eigentlich Motivationstrainer +Schlimmstes Tafelbild +Möchtegern Comedian +Führt ein Doppelleben +"Ich beende den Unterricht" +Schülerschwarm (M) +Schülerschwarm (W) +Harte Schale, weicher Kern +Sklaventreiber +Unterrichtet auch, wenn die Schule brennt +Ist immer da +Lebt in der Schule +Musste einen Wald für Arbeitsblätter roden lassen +Top gestylt + + + From dfaf2c55e2a3db1de8372866f843b81aa2a62a19 Mon Sep 17 00:00:00 2001 From: Simon Date: Mon, 4 Jan 2021 00:28:55 +0100 Subject: [PATCH 20/35] Expanded the number of candidates from 5 to 10-15 --- logs/Voting.log | 1315 ++--------------- .../controller/VotingController.java | 1 - .../table/TableAction.java | 19 +- 3 files changed, 124 insertions(+), 1211 deletions(-) diff --git a/logs/Voting.log b/logs/Voting.log index 44a2e37..0afbe0e 100644 --- a/logs/Voting.log +++ b/logs/Voting.log @@ -1,1211 +1,120 @@ -2020-12-25 22:19:25,089 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 6897 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2020-12-25 22:19:25,093 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-25 22:19:25,153 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-25 22:19:25,154 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-25 22:19:25,540 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-25 22:19:25,590 INFO [restartedMain] Finished Spring Data repository scanning in 43ms. Found 6 JPA repository interfaces. -2020-12-25 22:19:26,210 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-25 22:19:26,220 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-25 22:19:26,221 INFO [restartedMain] Starting service [Tomcat] -2020-12-25 22:19:26,221 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-25 22:19:26,276 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-25 22:19:26,277 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1123 ms -2020-12-25 22:19:26,435 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-25 22:19:26,488 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-25 22:19:26,602 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-25 22:19:26,674 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-25 22:19:27,086 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-25 22:19:27,109 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-25 22:19:27,758 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-25 22:19:27,764 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-25 22:19:27,775 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-25 22:19:28,218 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2020-12-25 22:19:28,416 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-25 22:19:28,512 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-25 22:19:28,683 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-25 22:19:28,698 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-25 22:19:28,706 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.953 seconds (JVM running for 4.763) -2020-12-25 22:19:32,547 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-25 22:19:32,547 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-25 22:19:32,553 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms -2020-12-25 22:19:38,615 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-25 22:19:38,633 WARN [http-nio-8000-exec-4] no code -2020-12-27 15:08:48,591 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 499 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) -2020-12-27 15:08:48,609 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-27 15:08:48,715 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-27 15:08:48,716 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-27 15:08:49,915 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-27 15:08:50,001 INFO [restartedMain] Finished Spring Data repository scanning in 76ms. Found 6 JPA repository interfaces. -2020-12-27 15:08:51,012 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-27 15:08:51,024 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-27 15:08:51,025 INFO [restartedMain] Starting service [Tomcat] -2020-12-27 15:08:51,026 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-27 15:08:51,121 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-27 15:08:51,121 INFO [restartedMain] Root WebApplicationContext: initialization completed in 2404 ms -2020-12-27 15:08:51,415 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-27 15:08:51,462 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-27 15:08:51,605 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-27 15:08:51,739 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-27 15:08:52,266 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-27 15:08:52,296 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-27 15:08:53,345 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-27 15:08:53,356 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 15:08:53,376 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-27 15:08:54,032 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false -2020-12-27 15:08:55,955 INFO [restartedMain] Candidates successfully set up -2020-12-27 15:08:56,020 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-27 15:08:56,200 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-27 15:08:56,540 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-27 15:08:56,557 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-27 15:08:56,570 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 9.068 seconds (JVM running for 11.127) -2020-12-27 15:14:44,409 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-27 15:14:44,420 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 15:14:44,428 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-27 15:14:44,465 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-27 15:14:50,245 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 607 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) -2020-12-27 15:14:50,280 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-27 15:14:50,655 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-27 15:14:50,656 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-27 15:14:51,579 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-27 15:14:51,677 INFO [restartedMain] Finished Spring Data repository scanning in 87ms. Found 6 JPA repository interfaces. -2020-12-27 15:14:53,099 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-27 15:14:53,124 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-27 15:14:53,125 INFO [restartedMain] Starting service [Tomcat] -2020-12-27 15:14:53,126 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-27 15:14:53,312 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-27 15:14:53,315 INFO [restartedMain] Root WebApplicationContext: initialization completed in 2653 ms -2020-12-27 15:14:53,990 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-27 15:14:54,071 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-27 15:14:54,259 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-27 15:14:54,427 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-27 15:14:55,137 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-27 15:14:55,202 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-27 15:14:56,576 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-27 15:14:56,584 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 15:14:56,604 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-27 15:14:57,417 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false -2020-12-27 15:14:59,544 INFO [restartedMain] Candidates successfully set up -2020-12-27 15:14:59,686 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-27 15:14:59,929 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-27 15:15:00,307 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-27 15:15:00,365 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-27 15:15:00,387 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 11.265 seconds (JVM running for 13.531) -2020-12-27 15:15:21,409 INFO [http-nio-8000-exec-2] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-27 15:15:21,411 INFO [http-nio-8000-exec-2] Initializing Servlet 'dispatcherServlet' -2020-12-27 15:15:21,431 INFO [http-nio-8000-exec-2] Completed initialization in 19 ms -2020-12-27 15:15:29,756 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-27 15:15:29,844 WARN [http-nio-8000-exec-4] no code -2020-12-27 15:16:03,687 WARN [http-nio-8000-exec-6] 043136 -2020-12-27 15:16:03,690 WARN [http-nio-8000-exec-6] matched -2020-12-27 15:16:04,724 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-27 15:16:04,731 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 15:16:04,739 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-27 15:16:04,758 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-27 15:18:47,164 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 279 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) -2020-12-27 15:18:47,177 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-27 15:18:47,354 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-27 15:18:47,371 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-27 15:18:49,211 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-27 15:18:49,589 INFO [restartedMain] Finished Spring Data repository scanning in 342ms. Found 6 JPA repository interfaces. -2020-12-27 15:18:53,050 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-27 15:18:53,108 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-27 15:18:53,111 INFO [restartedMain] Starting service [Tomcat] -2020-12-27 15:18:53,113 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-27 15:18:53,395 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-27 15:18:53,396 INFO [restartedMain] Root WebApplicationContext: initialization completed in 6020 ms -2020-12-27 15:18:54,166 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-27 15:18:54,326 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-27 15:18:54,693 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-27 15:18:54,885 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-27 15:18:56,237 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-27 15:18:56,313 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-27 15:18:59,089 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-27 15:18:59,120 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 15:18:59,214 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-27 15:19:01,220 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false -2020-12-27 15:19:02,101 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-27 15:19:02,501 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-27 15:19:03,339 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-27 15:19:03,553 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-27 15:19:03,604 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 17.908 seconds (JVM running for 20.098) -2020-12-27 15:19:07,549 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-27 15:19:07,551 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-27 15:19:07,564 INFO [http-nio-8000-exec-1] Completed initialization in 12 ms -2020-12-27 15:19:07,609 WARN [http-nio-8000-exec-1] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'name' is not present] -2020-12-27 15:19:13,416 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de -2020-12-27 15:19:13,450 WARN [http-nio-8000-exec-5] no code -2020-12-27 15:19:27,768 WARN [http-nio-8000-exec-7] 055572 -2020-12-27 15:19:27,768 WARN [http-nio-8000-exec-7] matched -2020-12-27 15:26:16,893 ERROR [http-nio-8000-exec-1] [THYMELEAF][http-nio-8000-exec-1] Exception processing template "errors/alreadySubmitted.html": Error resolving template [errors/alreadySubmitted.html], template might not exist or might not be accessible by any of the configured Template Resolvers -org.thymeleaf.exceptions.TemplateInputException: Error resolving template [errors/alreadySubmitted.html], template might not exist or might not be accessible by any of the configured Template Resolvers - at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-27 15:26:16,898 ERROR [http-nio-8000-exec-1] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: Error resolving template [errors/alreadySubmitted.html], template might not exist or might not be accessible by any of the configured Template Resolvers] with root cause -org.thymeleaf.exceptions.TemplateInputException: Error resolving template [errors/alreadySubmitted.html], template might not exist or might not be accessible by any of the configured Template Resolvers - at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-27 15:32:09,183 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-27 15:32:09,192 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 15:32:09,200 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-27 15:32:09,242 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-27 15:32:15,896 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 408 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) -2020-12-27 15:32:15,905 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-27 15:32:16,122 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-27 15:32:16,122 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-27 15:32:16,950 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-27 15:32:17,038 INFO [restartedMain] Finished Spring Data repository scanning in 76ms. Found 6 JPA repository interfaces. -2020-12-27 15:32:18,083 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-27 15:32:18,100 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-27 15:32:18,100 INFO [restartedMain] Starting service [Tomcat] -2020-12-27 15:32:18,103 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-27 15:32:18,208 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-27 15:32:18,211 INFO [restartedMain] Root WebApplicationContext: initialization completed in 2088 ms -2020-12-27 15:32:18,680 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-27 15:32:18,740 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-27 15:32:18,915 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-27 15:32:19,056 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-27 15:32:19,584 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-27 15:32:19,615 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-27 15:32:20,702 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-27 15:32:20,710 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 15:32:20,726 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-27 15:32:21,348 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false -2020-12-27 15:32:21,761 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-27 15:32:21,927 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-27 15:32:22,274 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-27 15:32:22,295 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-27 15:32:22,342 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 7.209 seconds (JVM running for 8.852) -2020-12-27 15:32:30,157 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-27 15:32:30,157 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-27 15:32:30,167 INFO [http-nio-8000-exec-1] Completed initialization in 9 ms -2020-12-27 15:32:30,208 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-27 15:32:45,593 WARN [http-nio-8000-exec-3] matched -2020-12-27 15:33:04,346 INFO [http-nio-8000-exec-5] simon.bussmann@adolfinum.de has voted! -2020-12-27 15:42:09,024 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-27 15:43:12,716 WARN [http-nio-8000-exec-6] matched -2020-12-27 15:45:26,761 INFO [http-nio-8000-exec-10] simon.bussmann@adolfinum.de has voted! -2020-12-27 15:45:38,299 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-27 15:45:38,318 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de has already voted -2020-12-27 15:51:11,973 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-27 15:51:11,976 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 15:51:11,982 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-27 15:51:12,010 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-27 18:24:32,096 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 269 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) -2020-12-27 18:24:32,111 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-27 18:24:32,311 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-27 18:24:32,313 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-27 18:24:33,316 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-27 18:24:33,422 INFO [restartedMain] Finished Spring Data repository scanning in 91ms. Found 6 JPA repository interfaces. -2020-12-27 18:24:34,802 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-27 18:24:34,821 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-27 18:24:34,823 INFO [restartedMain] Starting service [Tomcat] -2020-12-27 18:24:34,824 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-27 18:24:34,970 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-27 18:24:34,972 INFO [restartedMain] Root WebApplicationContext: initialization completed in 2657 ms -2020-12-27 18:24:35,532 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-27 18:24:35,613 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-27 18:24:35,858 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-27 18:24:36,008 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-27 18:24:37,017 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-27 18:24:37,067 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-27 18:24:38,460 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-27 18:24:38,471 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 18:24:38,495 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-27 18:24:39,287 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false -2020-12-27 18:24:39,798 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-27 18:24:40,037 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-27 18:24:40,447 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-27 18:24:40,483 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-27 18:24:40,504 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 9.509 seconds (JVM running for 11.824) -2020-12-27 18:31:34,632 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-27 18:31:34,636 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-27 18:31:34,654 INFO [http-nio-8000-exec-1] Completed initialization in 17 ms -2020-12-27 18:31:46,366 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de -2020-12-27 18:31:46,419 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de has already voted -2020-12-27 18:32:34,478 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de -2020-12-27 18:33:15,577 WARN [http-nio-8000-exec-10] matched -2020-12-27 18:33:28,222 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de -2020-12-27 18:33:39,781 WARN [http-nio-8000-exec-6] matched -2020-12-27 19:12:07,708 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de -2020-12-27 19:12:24,036 WARN [http-nio-8000-exec-5] matched -2020-12-27 19:13:23,934 INFO [http-nio-8000-exec-7] simon.bussmann@adolfinum.de has voted! -2020-12-27 19:15:03,595 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de -2020-12-27 19:15:03,599 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de has already voted -2020-12-27 19:19:30,112 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-27 19:19:30,115 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 19:19:30,134 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2020-12-27 19:19:30,179 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2020-12-27 22:15:52,037 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 242 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) -2020-12-27 22:15:52,046 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-27 22:15:52,328 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-27 22:15:52,330 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-27 22:15:53,809 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-27 22:15:54,013 INFO [restartedMain] Finished Spring Data repository scanning in 180ms. Found 6 JPA repository interfaces. -2020-12-27 22:15:57,013 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-27 22:15:57,081 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-27 22:15:57,085 INFO [restartedMain] Starting service [Tomcat] -2020-12-27 22:15:57,093 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-27 22:15:57,349 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-27 22:15:57,360 INFO [restartedMain] Root WebApplicationContext: initialization completed in 5029 ms -2020-12-27 22:15:58,121 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-27 22:15:58,345 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-27 22:15:58,753 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-27 22:15:59,040 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-27 22:16:00,382 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-27 22:16:00,501 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-27 22:16:03,129 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-27 22:16:03,150 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 22:16:03,255 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-27 22:16:04,895 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false -2020-12-27 22:16:06,029 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-27 22:16:06,565 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-27 22:16:07,479 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-27 22:16:07,730 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-27 22:16:07,790 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 17.457 seconds (JVM running for 19.857) -2020-12-27 22:16:48,900 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-27 22:16:48,903 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-27 22:16:48,921 INFO [http-nio-8000-exec-1] Completed initialization in 17 ms -2020-12-27 22:17:04,014 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2020-12-27 22:17:04,111 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de has already voted -2020-12-27 22:18:44,172 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de -2020-12-27 22:19:04,880 WARN [http-nio-8000-exec-1] matched -2020-12-27 22:19:29,043 ERROR [http-nio-8000-exec-3] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NumberFormatException: For input string: ""] with root cause -java.lang.NumberFormatException: For input string: "" - at java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) - at java.base/java.lang.Long.parseLong(Long.java:702) - at java.base/java.lang.Long.valueOf(Long.java:1144) - at com.github.cato447.AbizeitungVotingSystem.table.TableAction.voteForCandidate(TableAction.java:83) - at com.github.cato447.AbizeitungVotingSystem.controller.VotingController.ProcessVote(VotingController.java:240) +2021-01-04 00:00:49,389 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-04 00:00:49,393 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2021-01-04 00:00:49,398 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2021-01-04 00:00:49,412 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2021-01-04 00:00:51,638 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 35819 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2021-01-04 00:00:51,641 INFO [restartedMain] No active profile set, falling back to default profiles: default +2021-01-04 00:00:51,691 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-04 00:00:51,692 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-04 00:00:52,103 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-01-04 00:00:52,153 INFO [restartedMain] Finished Spring Data repository scanning in 44ms. Found 6 JPA repository interfaces. +2021-01-04 00:00:52,821 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2021-01-04 00:00:52,832 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2021-01-04 00:00:52,832 INFO [restartedMain] Starting service [Tomcat] +2021-01-04 00:00:52,833 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2021-01-04 00:00:52,893 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2021-01-04 00:00:52,894 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1202 ms +2021-01-04 00:00:53,064 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2021-01-04 00:00:53,098 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2021-01-04 00:00:53,194 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2021-01-04 00:00:53,266 INFO [restartedMain] HikariPool-1 - Starting... +2021-01-04 00:00:53,643 INFO [restartedMain] HikariPool-1 - Start completed. +2021-01-04 00:00:53,670 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2021-01-04 00:00:54,308 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-01-04 00:00:54,317 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-01-04 00:00:54,329 INFO [restartedMain] LiveReload server is running on port 35729 +2021-01-04 00:00:54,735 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false +2021-01-04 00:00:55,057 WARN [restartedMain] Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'votingController': Invocation of init method failed; nested exception is org.hibernate.LazyInitializationException: could not initialize proxy [com.github.cato447.AbizeitungVotingSystem.entities.Category#1] - no Session +2021-01-04 00:00:55,059 INFO [restartedMain] Closing JPA EntityManagerFactory for persistence unit 'default' +2021-01-04 00:00:55,064 INFO [restartedMain] HikariPool-1 - Shutdown initiated... +2021-01-04 00:00:55,073 INFO [restartedMain] HikariPool-1 - Shutdown completed. +2021-01-04 00:00:55,077 INFO [restartedMain] Stopping service [Tomcat] +2021-01-04 00:00:55,089 INFO [restartedMain] + +Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. +2021-01-04 00:00:55,092 ERROR [restartedMain] Application run failed +org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'votingController': Invocation of init method failed; nested exception is org.hibernate.LazyInitializationException: could not initialize proxy [com.github.cato447.AbizeitungVotingSystem.entities.Category#1] - no Session + at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:160) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:415) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1786) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:594) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:516) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:324) + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:322) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:202) + at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:897) + at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:879) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:551) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:143) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:758) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:750) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:397) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:315) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1237) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226) + at com.github.cato447.AbizeitungVotingSystem.AbizeitungVotingSystemApplication.main(AbizeitungVotingSystemApplication.java:14) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:878) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:792) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-27 22:20:35,649 WARN [http-nio-8000-exec-8] simon.bussmann@adolfinum.de -2020-12-27 22:20:59,072 WARN [http-nio-8000-exec-10] matched -2020-12-27 22:21:14,418 ERROR [http-nio-8000-exec-1] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NumberFormatException: For input string: ""] with root cause -java.lang.NumberFormatException: For input string: "" - at java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) - at java.base/java.lang.Long.parseLong(Long.java:702) - at java.base/java.lang.Long.valueOf(Long.java:1144) - at com.github.cato447.AbizeitungVotingSystem.table.TableAction.voteForCandidate(TableAction.java:83) - at com.github.cato447.AbizeitungVotingSystem.controller.VotingController.ProcessVote(VotingController.java:240) + at org.springframework.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) +Caused by: org.hibernate.LazyInitializationException: could not initialize proxy [com.github.cato447.AbizeitungVotingSystem.entities.Category#1] - no Session + at org.hibernate.proxy.AbstractLazyInitializer.initialize(AbstractLazyInitializer.java:170) + at org.hibernate.proxy.AbstractLazyInitializer.getImplementation(AbstractLazyInitializer.java:310) + at org.hibernate.proxy.pojo.bytebuddy.ByteBuddyInterceptor.intercept(ByteBuddyInterceptor.java:45) + at org.hibernate.proxy.ProxyConfiguration$InterceptorDispatcher.intercept(ProxyConfiguration.java:95) + at com.github.cato447.AbizeitungVotingSystem.entities.Category$HibernateProxy$DGuctNKV.getName(Unknown Source) + at com.github.cato447.AbizeitungVotingSystem.table.TableAction.setUpCandidates(TableAction.java:125) + at com.github.cato447.AbizeitungVotingSystem.controller.VotingController.init(VotingController.java:90) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:878) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:792) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-27 22:22:19,508 INFO [Thread-4] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-27 22:22:19,510 INFO [Thread-4] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 22:22:19,514 INFO [Thread-4] HikariPool-1 - Shutdown initiated... -2020-12-27 22:22:19,556 INFO [Thread-4] HikariPool-1 - Shutdown completed. -2020-12-27 22:22:19,764 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 242 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) -2020-12-27 22:22:19,766 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-27 22:22:20,065 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-27 22:22:20,105 INFO [restartedMain] Finished Spring Data repository scanning in 38ms. Found 6 JPA repository interfaces. -2020-12-27 22:22:20,454 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-27 22:22:20,456 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-27 22:22:20,460 INFO [restartedMain] Starting service [Tomcat] -2020-12-27 22:22:20,460 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-27 22:22:20,489 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-27 22:22:20,490 INFO [restartedMain] Root WebApplicationContext: initialization completed in 712 ms -2020-12-27 22:22:20,585 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-27 22:22:20,598 INFO [restartedMain] HikariPool-2 - Starting... -2020-12-27 22:22:20,656 INFO [restartedMain] HikariPool-2 - Start completed. -2020-12-27 22:22:20,656 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-27 22:22:20,933 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-27 22:22:20,934 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 22:22:20,942 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-27 22:22:21,459 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false -2020-12-27 22:22:21,594 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-27 22:22:21,702 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-27 22:22:21,847 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-27 22:22:21,867 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-27 22:22:21,880 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 2.172 seconds (JVM running for 393.947) -2020-12-27 22:22:21,883 INFO [restartedMain] Condition evaluation unchanged -2020-12-27 22:22:24,903 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-27 22:22:24,904 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-27 22:22:24,909 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms -2020-12-27 22:22:28,574 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-27 22:22:39,513 WARN [http-nio-8000-exec-5] matched -2020-12-27 22:23:10,563 WARN [http-nio-8000-exec-1] simon.bussmann@adolfinum.de -2020-12-27 22:23:44,331 WARN [http-nio-8000-exec-3] matched -2020-12-27 22:24:47,420 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de -2020-12-27 22:25:14,722 WARN [http-nio-8000-exec-1] matched -2020-12-27 22:25:38,513 INFO [http-nio-8000-exec-4] simon.bussmann@adolfinum.de has voted! -2020-12-27 22:25:47,897 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de -2020-12-27 22:25:47,901 WARN [http-nio-8000-exec-7] simon.bussmann@adolfinum.de has already voted -2020-12-27 22:26:44,138 INFO [Thread-8] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-27 22:26:44,140 INFO [Thread-8] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 22:26:44,145 INFO [Thread-8] HikariPool-2 - Shutdown initiated... -2020-12-27 22:26:44,187 INFO [Thread-8] HikariPool-2 - Shutdown completed. -2020-12-27 22:26:44,371 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 242 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) -2020-12-27 22:26:44,378 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-27 22:26:44,760 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-27 22:26:44,805 INFO [restartedMain] Finished Spring Data repository scanning in 44ms. Found 6 JPA repository interfaces. -2020-12-27 22:26:45,081 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-27 22:26:45,083 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-27 22:26:45,084 INFO [restartedMain] Starting service [Tomcat] -2020-12-27 22:26:45,084 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-27 22:26:45,111 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-27 22:26:45,113 INFO [restartedMain] Root WebApplicationContext: initialization completed in 725 ms -2020-12-27 22:26:45,224 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-27 22:26:45,248 INFO [restartedMain] HikariPool-3 - Starting... -2020-12-27 22:26:45,312 INFO [restartedMain] HikariPool-3 - Start completed. -2020-12-27 22:26:45,312 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-27 22:26:45,631 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-27 22:26:45,631 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 22:26:45,636 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-27 22:26:46,029 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false -2020-12-27 22:26:46,147 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-27 22:26:46,242 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-27 22:26:46,333 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-27 22:26:46,425 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-27 22:26:46,431 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 2.131 seconds (JVM running for 658.498) -2020-12-27 22:26:46,438 INFO [restartedMain] Condition evaluation unchanged -2020-12-27 22:26:46,473 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-27 22:26:46,474 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-27 22:26:46,478 INFO [http-nio-8000-exec-1] Completed initialization in 4 ms -2020-12-27 22:26:57,006 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de -2020-12-27 22:26:57,018 WARN [http-nio-8000-exec-5] simon.bussmann@adolfinum.de has already voted -2020-12-27 22:55:57,464 INFO [Thread-15] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-27 22:55:57,466 INFO [Thread-15] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 22:55:57,472 INFO [Thread-15] HikariPool-3 - Shutdown initiated... -2020-12-27 22:55:57,490 INFO [Thread-15] HikariPool-3 - Shutdown completed. -2020-12-27 22:55:57,674 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 242 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) -2020-12-27 22:55:57,675 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-27 22:55:57,844 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-27 22:55:57,884 INFO [restartedMain] Finished Spring Data repository scanning in 39ms. Found 6 JPA repository interfaces. -2020-12-27 22:55:58,173 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-27 22:55:58,174 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-27 22:55:58,174 INFO [restartedMain] Starting service [Tomcat] -2020-12-27 22:55:58,174 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-27 22:55:58,204 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-27 22:55:58,205 INFO [restartedMain] Root WebApplicationContext: initialization completed in 527 ms -2020-12-27 22:55:58,287 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-27 22:55:58,304 INFO [restartedMain] HikariPool-4 - Starting... -2020-12-27 22:55:58,344 INFO [restartedMain] HikariPool-4 - Start completed. -2020-12-27 22:55:58,344 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-27 22:55:58,471 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-27 22:55:58,472 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 22:55:58,482 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-27 22:55:58,640 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-27 22:55:58,672 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-27 22:55:58,747 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-27 22:55:58,767 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-27 22:55:58,773 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 1.144 seconds (JVM running for 2410.839) -2020-12-27 22:55:58,774 INFO [restartedMain] Condition evaluation unchanged -2020-12-27 22:56:12,199 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-27 22:56:12,202 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-27 22:56:12,204 INFO [http-nio-8000-exec-1] Completed initialization in 2 ms -2020-12-27 22:57:21,838 INFO [Thread-20] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-27 22:57:21,863 INFO [Thread-20] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 22:57:21,867 INFO [Thread-20] HikariPool-4 - Shutdown initiated... -2020-12-27 22:57:21,890 INFO [Thread-20] HikariPool-4 - Shutdown completed. -2020-12-27 22:57:22,041 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 242 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) -2020-12-27 22:57:22,042 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-27 22:57:22,201 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-27 22:57:22,224 INFO [restartedMain] Finished Spring Data repository scanning in 22ms. Found 6 JPA repository interfaces. -2020-12-27 22:57:22,420 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-27 22:57:22,422 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-27 22:57:22,422 INFO [restartedMain] Starting service [Tomcat] -2020-12-27 22:57:22,423 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-27 22:57:22,438 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-27 22:57:22,439 INFO [restartedMain] Root WebApplicationContext: initialization completed in 393 ms -2020-12-27 22:57:22,509 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-27 22:57:22,516 INFO [restartedMain] HikariPool-5 - Starting... -2020-12-27 22:57:22,543 INFO [restartedMain] HikariPool-5 - Start completed. -2020-12-27 22:57:22,544 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-27 22:57:22,709 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-27 22:57:22,710 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 22:57:22,717 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-27 22:57:22,972 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false -2020-12-27 22:57:23,014 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-27 22:57:23,036 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-27 22:57:23,073 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-27 22:57:23,075 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-27 22:57:23,078 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 1.067 seconds (JVM running for 2495.144) -2020-12-27 22:57:23,079 INFO [restartedMain] Condition evaluation unchanged -2020-12-27 22:57:32,549 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-27 22:57:32,550 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-27 22:57:32,556 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms -2020-12-27 22:57:32,559 WARN [http-nio-8000-exec-1] in Bounds -2020-12-27 22:57:38,761 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2020-12-27 22:57:49,019 WARN [http-nio-8000-exec-6] in Bounds -2020-12-27 22:58:04,641 INFO [Thread-26] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-27 22:58:04,642 INFO [Thread-26] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 22:58:04,645 INFO [Thread-26] HikariPool-5 - Shutdown initiated... -2020-12-27 22:58:04,682 INFO [Thread-26] HikariPool-5 - Shutdown completed. -2020-12-27 22:58:04,811 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 242 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) -2020-12-27 22:58:04,812 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-27 22:58:04,928 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-27 22:58:04,947 INFO [restartedMain] Finished Spring Data repository scanning in 17ms. Found 6 JPA repository interfaces. -2020-12-27 22:58:05,059 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-27 22:58:05,060 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-27 22:58:05,060 INFO [restartedMain] Starting service [Tomcat] -2020-12-27 22:58:05,060 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-27 22:58:05,069 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-27 22:58:05,069 INFO [restartedMain] Root WebApplicationContext: initialization completed in 252 ms -2020-12-27 22:58:05,107 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-27 22:58:05,111 INFO [restartedMain] HikariPool-6 - Starting... -2020-12-27 22:58:05,138 INFO [restartedMain] HikariPool-6 - Start completed. -2020-12-27 22:58:05,138 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-27 22:58:05,315 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-27 22:58:05,316 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 22:58:05,322 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-27 22:58:05,540 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false -2020-12-27 22:58:05,656 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-27 22:58:05,694 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-27 22:58:05,770 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-27 22:58:05,785 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-27 22:58:05,789 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 1.004 seconds (JVM running for 2537.856) -2020-12-27 22:58:05,796 INFO [restartedMain] Condition evaluation unchanged -2020-12-27 22:58:08,993 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-27 22:58:08,994 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-27 22:58:08,998 INFO [http-nio-8000-exec-1] Completed initialization in 3 ms -2020-12-27 22:58:09,000 WARN [http-nio-8000-exec-1] in Bounds -2020-12-27 22:58:10,605 WARN [http-nio-8000-exec-3] in Bounds -2020-12-27 22:58:23,547 WARN [http-nio-8000-exec-5] in Bounds -2020-12-27 22:58:25,903 WARN [http-nio-8000-exec-7] in Bounds -2020-12-27 22:58:40,743 INFO [Thread-32] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-27 22:58:40,744 INFO [Thread-32] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 22:58:40,745 INFO [Thread-32] HikariPool-6 - Shutdown initiated... -2020-12-27 22:58:40,788 INFO [Thread-32] HikariPool-6 - Shutdown completed. -2020-12-27 22:58:40,929 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 242 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) -2020-12-27 22:58:40,930 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-27 22:58:41,076 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-27 22:58:41,096 INFO [restartedMain] Finished Spring Data repository scanning in 19ms. Found 6 JPA repository interfaces. -2020-12-27 22:58:41,287 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-27 22:58:41,289 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-27 22:58:41,289 INFO [restartedMain] Starting service [Tomcat] -2020-12-27 22:58:41,290 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-27 22:58:41,303 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-27 22:58:41,303 INFO [restartedMain] Root WebApplicationContext: initialization completed in 370 ms -2020-12-27 22:58:41,349 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-27 22:58:41,353 INFO [restartedMain] HikariPool-7 - Starting... -2020-12-27 22:58:41,375 INFO [restartedMain] HikariPool-7 - Start completed. -2020-12-27 22:58:41,376 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-27 22:58:41,562 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-27 22:58:41,562 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 22:58:41,565 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-27 22:58:41,835 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false -2020-12-27 22:58:41,909 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-27 22:58:41,952 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-27 22:58:42,094 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-27 22:58:42,108 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-27 22:58:42,112 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 1.225 seconds (JVM running for 2574.178) -2020-12-27 22:58:42,114 INFO [restartedMain] Condition evaluation unchanged -2020-12-27 22:58:45,043 INFO [http-nio-8000-exec-2] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-27 22:58:45,045 INFO [http-nio-8000-exec-2] Initializing Servlet 'dispatcherServlet' -2020-12-27 22:58:45,050 INFO [http-nio-8000-exec-2] Completed initialization in 5 ms -2020-12-27 22:58:45,052 WARN [http-nio-8000-exec-2] passed -2020-12-27 22:58:45,070 ERROR [http-nio-8000-exec-2] [THYMELEAF][http-nio-8000-exec-2] Exception processing template "errors/votingClosed.html": Error resolving template [errors/votingClosed.html], template might not exist or might not be accessible by any of the configured Template Resolvers -org.thymeleaf.exceptions.TemplateInputException: Error resolving template [errors/votingClosed.html], template might not exist or might not be accessible by any of the configured Template Resolvers - at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-27 22:58:45,071 ERROR [http-nio-8000-exec-2] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: Error resolving template [errors/votingClosed.html], template might not exist or might not be accessible by any of the configured Template Resolvers] with root cause -org.thymeleaf.exceptions.TemplateInputException: Error resolving template [errors/votingClosed.html], template might not exist or might not be accessible by any of the configured Template Resolvers - at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-27 23:07:31,449 INFO [Thread-37] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-27 23:07:31,449 INFO [Thread-37] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 23:07:31,451 INFO [Thread-37] HikariPool-7 - Shutdown initiated... -2020-12-27 23:07:31,487 INFO [Thread-37] HikariPool-7 - Shutdown completed. -2020-12-27 23:07:31,638 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 242 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) -2020-12-27 23:07:31,646 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-27 23:07:31,873 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-27 23:07:31,934 INFO [restartedMain] Finished Spring Data repository scanning in 51ms. Found 6 JPA repository interfaces. -2020-12-27 23:07:32,212 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-27 23:07:32,213 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-27 23:07:32,214 INFO [restartedMain] Starting service [Tomcat] -2020-12-27 23:07:32,215 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-27 23:07:32,232 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-27 23:07:32,233 INFO [restartedMain] Root WebApplicationContext: initialization completed in 585 ms -2020-12-27 23:07:32,304 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-27 23:07:32,310 INFO [restartedMain] HikariPool-8 - Starting... -2020-12-27 23:07:32,367 INFO [restartedMain] HikariPool-8 - Start completed. -2020-12-27 23:07:32,368 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-27 23:07:32,627 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-27 23:07:32,628 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 23:07:32,633 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-27 23:07:32,991 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false -2020-12-27 23:07:33,127 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-27 23:07:33,191 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-27 23:07:33,272 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-27 23:07:33,335 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-27 23:07:33,348 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 1.752 seconds (JVM running for 3105.415) -2020-12-27 23:07:33,352 INFO [restartedMain] Condition evaluation unchanged -2020-12-27 23:07:45,629 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-27 23:07:45,630 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-27 23:07:45,640 INFO [http-nio-8000-exec-1] Completed initialization in 10 ms -2020-12-27 23:07:45,641 WARN [http-nio-8000-exec-1] in Bounds -2020-12-27 23:11:27,503 INFO [Thread-42] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-27 23:11:27,504 INFO [Thread-42] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 23:11:27,505 INFO [Thread-42] HikariPool-8 - Shutdown initiated... -2020-12-27 23:11:27,568 INFO [Thread-42] HikariPool-8 - Shutdown completed. -2020-12-27 23:11:27,686 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 242 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) -2020-12-27 23:11:27,686 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-27 23:11:27,902 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-27 23:11:27,919 INFO [restartedMain] Finished Spring Data repository scanning in 16ms. Found 6 JPA repository interfaces. -2020-12-27 23:11:28,055 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-27 23:11:28,056 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-27 23:11:28,056 INFO [restartedMain] Starting service [Tomcat] -2020-12-27 23:11:28,057 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-27 23:11:28,066 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-27 23:11:28,067 INFO [restartedMain] Root WebApplicationContext: initialization completed in 373 ms -2020-12-27 23:11:28,126 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-27 23:11:28,132 INFO [restartedMain] HikariPool-9 - Starting... -2020-12-27 23:11:28,174 INFO [restartedMain] HikariPool-9 - Start completed. -2020-12-27 23:11:28,174 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-27 23:11:28,433 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-27 23:11:28,434 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 23:11:28,440 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-27 23:11:28,762 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false -2020-12-27 23:11:28,838 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-27 23:11:28,873 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-27 23:11:28,935 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-27 23:11:28,938 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-27 23:11:28,949 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 1.299 seconds (JVM running for 3341.016) -2020-12-27 23:11:28,951 INFO [restartedMain] Condition evaluation unchanged -2020-12-27 23:11:35,633 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-27 23:11:35,634 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-27 23:11:35,640 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms -2020-12-27 23:11:35,642 WARN [http-nio-8000-exec-1] in Bounds -2020-12-27 23:12:13,799 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-27 23:12:13,800 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 23:12:13,801 INFO [SpringContextShutdownHook] HikariPool-9 - Shutdown initiated... -2020-12-27 23:12:13,839 INFO [SpringContextShutdownHook] HikariPool-9 - Shutdown completed. -2020-12-27 23:12:19,957 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 1068 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) -2020-12-27 23:12:19,975 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-27 23:12:20,179 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-27 23:12:20,180 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-27 23:12:20,994 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-27 23:12:21,078 INFO [restartedMain] Finished Spring Data repository scanning in 75ms. Found 6 JPA repository interfaces. -2020-12-27 23:12:22,126 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-27 23:12:22,142 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-27 23:12:22,143 INFO [restartedMain] Starting service [Tomcat] -2020-12-27 23:12:22,144 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-27 23:12:22,257 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-27 23:12:22,258 INFO [restartedMain] Root WebApplicationContext: initialization completed in 2075 ms -2020-12-27 23:12:22,551 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-27 23:12:22,594 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-27 23:12:22,714 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-27 23:12:22,845 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-27 23:12:23,486 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-27 23:12:23,515 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-27 23:12:24,583 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-27 23:12:24,591 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 23:12:24,608 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-27 23:12:25,282 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false -2020-12-27 23:12:25,688 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-27 23:12:25,967 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-27 23:12:26,416 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-27 23:12:26,474 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-27 23:12:26,495 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 7.287 seconds (JVM running for 8.958) -2020-12-27 23:12:39,259 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-27 23:12:39,260 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-27 23:12:39,270 INFO [http-nio-8000-exec-1] Completed initialization in 10 ms -2020-12-27 23:12:39,307 WARN [http-nio-8000-exec-1] in Bounds -2020-12-27 23:12:58,002 INFO [Thread-4] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-27 23:12:58,005 INFO [Thread-4] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 23:12:58,015 INFO [Thread-4] HikariPool-1 - Shutdown initiated... -2020-12-27 23:12:58,067 INFO [Thread-4] HikariPool-1 - Shutdown completed. -2020-12-27 23:12:58,284 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 1068 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) -2020-12-27 23:12:58,285 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-27 23:12:58,575 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-27 23:12:58,625 INFO [restartedMain] Finished Spring Data repository scanning in 47ms. Found 6 JPA repository interfaces. -2020-12-27 23:12:58,907 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-27 23:12:58,909 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-27 23:12:58,909 INFO [restartedMain] Starting service [Tomcat] -2020-12-27 23:12:58,910 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-27 23:12:58,938 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-27 23:12:58,939 INFO [restartedMain] Root WebApplicationContext: initialization completed in 650 ms -2020-12-27 23:12:58,995 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-27 23:12:59,001 INFO [restartedMain] HikariPool-2 - Starting... -2020-12-27 23:12:59,070 INFO [restartedMain] HikariPool-2 - Start completed. -2020-12-27 23:12:59,070 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-27 23:12:59,400 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-27 23:12:59,401 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 23:12:59,407 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-27 23:12:59,896 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false -2020-12-27 23:13:00,057 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-27 23:13:00,155 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-27 23:13:00,306 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-27 23:13:00,367 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-27 23:13:00,373 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 2.177 seconds (JVM running for 42.836) -2020-12-27 23:13:00,376 INFO [restartedMain] Condition evaluation unchanged -2020-12-27 23:13:06,300 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-27 23:13:06,302 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-27 23:13:06,305 INFO [http-nio-8000-exec-1] Completed initialization in 3 ms -2020-12-27 23:13:06,308 WARN [http-nio-8000-exec-1] in Bounds -2020-12-27 23:17:07,393 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-27 23:17:07,402 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 23:17:07,404 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown initiated... -2020-12-27 23:17:07,449 INFO [SpringContextShutdownHook] HikariPool-2 - Shutdown completed. -2020-12-27 23:17:13,095 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 1246 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) -2020-12-27 23:17:13,126 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-27 23:17:13,322 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2020-12-27 23:17:13,323 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2020-12-27 23:17:14,295 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-27 23:17:14,379 INFO [restartedMain] Finished Spring Data repository scanning in 74ms. Found 6 JPA repository interfaces. -2020-12-27 23:17:15,403 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-27 23:17:15,415 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-27 23:17:15,416 INFO [restartedMain] Starting service [Tomcat] -2020-12-27 23:17:15,416 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-27 23:17:15,539 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-27 23:17:15,539 INFO [restartedMain] Root WebApplicationContext: initialization completed in 2215 ms -2020-12-27 23:17:15,841 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-27 23:17:15,882 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2020-12-27 23:17:15,997 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2020-12-27 23:17:16,123 INFO [restartedMain] HikariPool-1 - Starting... -2020-12-27 23:17:16,763 INFO [restartedMain] HikariPool-1 - Start completed. -2020-12-27 23:17:16,836 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-27 23:17:17,984 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-27 23:17:17,992 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 23:17:18,012 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-27 23:17:18,577 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false -2020-12-27 23:17:18,888 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-27 23:17:19,028 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-27 23:17:19,275 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-27 23:17:19,296 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-27 23:17:19,308 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 6.978 seconds (JVM running for 8.174) -2020-12-27 23:17:28,486 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-27 23:17:28,487 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-27 23:17:28,528 INFO [http-nio-8000-exec-1] Completed initialization in 41 ms -2020-12-27 23:17:28,621 WARN [http-nio-8000-exec-1] in Bounds -2020-12-27 23:17:44,825 INFO [Thread-4] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-27 23:17:44,827 INFO [Thread-4] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 23:17:44,838 INFO [Thread-4] HikariPool-1 - Shutdown initiated... -2020-12-27 23:17:44,874 INFO [Thread-4] HikariPool-1 - Shutdown completed. -2020-12-27 23:17:45,017 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 1246 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) -2020-12-27 23:17:45,018 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-27 23:17:45,324 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-27 23:17:45,367 INFO [restartedMain] Finished Spring Data repository scanning in 38ms. Found 6 JPA repository interfaces. -2020-12-27 23:17:45,725 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-27 23:17:45,727 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-27 23:17:45,731 INFO [restartedMain] Starting service [Tomcat] -2020-12-27 23:17:45,734 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-27 23:17:45,765 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-27 23:17:45,765 INFO [restartedMain] Root WebApplicationContext: initialization completed in 743 ms -2020-12-27 23:17:45,910 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-27 23:17:45,916 INFO [restartedMain] HikariPool-2 - Starting... -2020-12-27 23:17:46,055 INFO [restartedMain] HikariPool-2 - Start completed. -2020-12-27 23:17:46,062 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-27 23:17:46,351 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-27 23:17:46,352 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 23:17:46,359 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-27 23:17:46,882 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false -2020-12-27 23:17:47,126 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-27 23:17:47,244 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-27 23:17:47,392 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-27 23:17:47,439 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-27 23:17:47,444 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 2.461 seconds (JVM running for 36.31) -2020-12-27 23:17:47,451 INFO [restartedMain] Condition evaluation unchanged -2020-12-27 23:17:51,000 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-27 23:17:51,001 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-27 23:17:51,005 INFO [http-nio-8000-exec-1] Completed initialization in 4 ms -2020-12-27 23:17:51,012 WARN [http-nio-8000-exec-1] passed -2020-12-27 23:17:51,040 ERROR [http-nio-8000-exec-1] [THYMELEAF][http-nio-8000-exec-1] Exception processing template "errors/votingClosed.html": Error resolving template [errors/votingClosed.html], template might not exist or might not be accessible by any of the configured Template Resolvers -org.thymeleaf.exceptions.TemplateInputException: Error resolving template [errors/votingClosed.html], template might not exist or might not be accessible by any of the configured Template Resolvers - at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-27 23:17:51,043 ERROR [http-nio-8000-exec-1] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: Error resolving template [errors/votingClosed.html], template might not exist or might not be accessible by any of the configured Template Resolvers] with root cause -org.thymeleaf.exceptions.TemplateInputException: Error resolving template [errors/votingClosed.html], template might not exist or might not be accessible by any of the configured Template Resolvers - at org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869) - at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) - at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) - at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:362) - at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:189) - at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1373) - at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1118) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1057) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2020-12-27 23:18:12,960 INFO [Thread-8] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-27 23:18:12,962 INFO [Thread-8] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 23:18:12,963 INFO [Thread-8] HikariPool-2 - Shutdown initiated... -2020-12-27 23:18:13,024 INFO [Thread-8] HikariPool-2 - Shutdown completed. -2020-12-27 23:18:13,224 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 1246 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) -2020-12-27 23:18:13,225 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-27 23:18:13,571 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-27 23:18:13,608 INFO [restartedMain] Finished Spring Data repository scanning in 35ms. Found 6 JPA repository interfaces. -2020-12-27 23:18:13,937 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-27 23:18:13,938 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-27 23:18:13,939 INFO [restartedMain] Starting service [Tomcat] -2020-12-27 23:18:13,940 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-27 23:18:13,965 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-27 23:18:13,975 INFO [restartedMain] Root WebApplicationContext: initialization completed in 726 ms -2020-12-27 23:18:14,121 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-27 23:18:14,126 INFO [restartedMain] HikariPool-3 - Starting... -2020-12-27 23:18:14,176 INFO [restartedMain] HikariPool-3 - Start completed. -2020-12-27 23:18:14,183 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-27 23:18:14,503 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-27 23:18:14,510 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 23:18:14,524 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-27 23:18:14,838 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false -2020-12-27 23:18:14,959 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-27 23:18:15,028 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-27 23:18:15,122 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-27 23:18:15,143 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-27 23:18:15,149 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 1.975 seconds (JVM running for 64.015) -2020-12-27 23:18:15,156 INFO [restartedMain] Condition evaluation unchanged -2020-12-27 23:18:25,288 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-27 23:18:25,289 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-27 23:18:25,295 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms -2020-12-27 23:18:25,297 WARN [http-nio-8000-exec-1] in Bounds -2020-12-27 23:18:36,674 INFO [Thread-13] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-27 23:18:36,676 INFO [Thread-13] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 23:18:36,678 INFO [Thread-13] HikariPool-3 - Shutdown initiated... -2020-12-27 23:18:36,732 INFO [Thread-13] HikariPool-3 - Shutdown completed. -2020-12-27 23:18:37,000 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 1246 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) -2020-12-27 23:18:37,002 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-27 23:18:37,174 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-27 23:18:37,214 INFO [restartedMain] Finished Spring Data repository scanning in 39ms. Found 6 JPA repository interfaces. -2020-12-27 23:18:37,460 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-27 23:18:37,462 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-27 23:18:37,462 INFO [restartedMain] Starting service [Tomcat] -2020-12-27 23:18:37,463 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-27 23:18:37,498 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-27 23:18:37,498 INFO [restartedMain] Root WebApplicationContext: initialization completed in 486 ms -2020-12-27 23:18:37,579 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-27 23:18:37,584 INFO [restartedMain] HikariPool-4 - Starting... -2020-12-27 23:18:37,647 INFO [restartedMain] HikariPool-4 - Start completed. -2020-12-27 23:18:37,648 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-27 23:18:37,871 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-27 23:18:37,872 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 23:18:37,882 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-27 23:18:38,234 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-27 23:18:38,301 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-27 23:18:38,406 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-27 23:18:38,412 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-27 23:18:38,416 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 1.498 seconds (JVM running for 87.282) -2020-12-27 23:18:38,417 INFO [restartedMain] Condition evaluation unchanged -2020-12-27 23:18:46,413 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-27 23:18:46,417 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-27 23:18:46,423 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms -2020-12-27 23:20:17,615 INFO [Thread-18] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-27 23:20:17,616 INFO [Thread-18] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 23:20:17,620 INFO [Thread-18] HikariPool-4 - Shutdown initiated... -2020-12-27 23:20:17,650 INFO [Thread-18] HikariPool-4 - Shutdown completed. -2020-12-27 23:20:17,921 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 1246 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) -2020-12-27 23:20:17,923 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-27 23:20:18,116 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-27 23:20:18,172 INFO [restartedMain] Finished Spring Data repository scanning in 54ms. Found 6 JPA repository interfaces. -2020-12-27 23:20:18,442 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-27 23:20:18,443 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-27 23:20:18,444 INFO [restartedMain] Starting service [Tomcat] -2020-12-27 23:20:18,444 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-27 23:20:18,474 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-27 23:20:18,474 INFO [restartedMain] Root WebApplicationContext: initialization completed in 547 ms -2020-12-27 23:20:18,552 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-27 23:20:18,559 INFO [restartedMain] HikariPool-5 - Starting... -2020-12-27 23:20:18,584 INFO [restartedMain] HikariPool-5 - Start completed. -2020-12-27 23:20:18,584 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-27 23:20:18,842 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-27 23:20:18,842 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 23:20:18,852 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-27 23:20:19,157 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false -2020-12-27 23:20:19,259 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-27 23:20:19,305 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-27 23:20:19,380 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-27 23:20:19,389 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-27 23:20:19,394 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 1.545 seconds (JVM running for 188.26) -2020-12-27 23:20:19,396 INFO [restartedMain] Condition evaluation unchanged -2020-12-27 23:20:24,016 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-27 23:20:24,021 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-27 23:20:24,025 INFO [http-nio-8000-exec-1] Completed initialization in 4 ms -2020-12-27 23:20:24,026 WARN [http-nio-8000-exec-1] passed -2020-12-27 23:20:27,362 WARN [http-nio-8000-exec-3] passed -2020-12-27 23:20:28,638 WARN [http-nio-8000-exec-5] passed -2020-12-27 23:21:11,596 WARN [http-nio-8000-exec-7] passed -2020-12-27 23:22:26,853 WARN [http-nio-8000-exec-10] passed -2020-12-27 23:22:48,126 INFO [Thread-23] Shutting down ExecutorService 'applicationTaskExecutor' -2020-12-27 23:22:48,127 INFO [Thread-23] Closing JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 23:22:48,135 INFO [Thread-23] HikariPool-5 - Shutdown initiated... -2020-12-27 23:22:48,182 INFO [Thread-23] HikariPool-5 - Shutdown completed. -2020-12-27 23:22:48,330 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on pop-os with PID 1246 (/home/cato447/Code/AbizeitungVotingSystem/target/classes started by cato447 in /home/cato447/Code/AbizeitungVotingSystem) -2020-12-27 23:22:48,330 INFO [restartedMain] No active profile set, falling back to default profiles: default -2020-12-27 23:22:48,592 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2020-12-27 23:22:48,618 INFO [restartedMain] Finished Spring Data repository scanning in 24ms. Found 6 JPA repository interfaces. -2020-12-27 23:22:48,783 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2020-12-27 23:22:48,784 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2020-12-27 23:22:48,785 INFO [restartedMain] Starting service [Tomcat] -2020-12-27 23:22:48,785 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2020-12-27 23:22:48,843 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2020-12-27 23:22:48,844 INFO [restartedMain] Root WebApplicationContext: initialization completed in 508 ms -2020-12-27 23:22:48,967 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2020-12-27 23:22:48,985 INFO [restartedMain] HikariPool-6 - Starting... -2020-12-27 23:22:49,045 INFO [restartedMain] HikariPool-6 - Start completed. -2020-12-27 23:22:49,045 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2020-12-27 23:22:49,322 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2020-12-27 23:22:49,322 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2020-12-27 23:22:49,331 INFO [restartedMain] LiveReload server is running on port 35729 -2020-12-27 23:22:49,650 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false -2020-12-27 23:22:49,745 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2020-12-27 23:22:49,816 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2020-12-27 23:22:49,887 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2020-12-27 23:22:49,903 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2020-12-27 23:22:49,908 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 1.645 seconds (JVM running for 338.774) -2020-12-27 23:22:49,912 INFO [restartedMain] Condition evaluation unchanged -2020-12-27 23:23:08,885 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2020-12-27 23:23:08,887 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2020-12-27 23:23:08,901 INFO [http-nio-8000-exec-1] Completed initialization in 14 ms -2020-12-27 23:23:08,903 WARN [http-nio-8000-exec-1] in Bounds + at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:389) + at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:333) + at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:157) + ... 24 common frames omitted +2021-01-04 00:01:52,580 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 36071 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2021-01-04 00:01:52,586 INFO [restartedMain] No active profile set, falling back to default profiles: default +2021-01-04 00:01:52,648 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-04 00:01:52,648 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-04 00:01:53,068 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-01-04 00:01:53,121 INFO [restartedMain] Finished Spring Data repository scanning in 47ms. Found 6 JPA repository interfaces. +2021-01-04 00:01:53,779 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2021-01-04 00:01:53,788 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2021-01-04 00:01:53,789 INFO [restartedMain] Starting service [Tomcat] +2021-01-04 00:01:53,789 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2021-01-04 00:01:53,856 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2021-01-04 00:01:53,856 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1207 ms +2021-01-04 00:01:54,032 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2021-01-04 00:01:54,065 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2021-01-04 00:01:54,169 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2021-01-04 00:01:54,255 INFO [restartedMain] HikariPool-1 - Starting... +2021-01-04 00:01:54,608 INFO [restartedMain] HikariPool-1 - Start completed. +2021-01-04 00:01:54,633 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2021-01-04 00:01:55,280 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-01-04 00:01:55,288 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-01-04 00:01:55,302 INFO [restartedMain] LiveReload server is running on port 35729 +2021-01-04 00:01:55,714 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false +2021-01-04 00:01:58,665 INFO [restartedMain] Candidates successfully set up +2021-01-04 00:01:58,698 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2021-01-04 00:01:58,803 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-04 00:01:58,966 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2021-01-04 00:01:58,986 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2021-01-04 00:01:58,999 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 6.763 seconds (JVM running for 7.385) +2021-01-04 00:02:54,786 INFO [http-nio-8000-exec-2] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-04 00:02:54,786 INFO [http-nio-8000-exec-2] Initializing Servlet 'dispatcherServlet' +2021-01-04 00:02:54,791 INFO [http-nio-8000-exec-2] Completed initialization in 5 ms +2021-01-04 00:02:58,585 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2021-01-04 00:02:58,605 WARN [http-nio-8000-exec-4] no code +2021-01-04 00:03:14,557 WARN [http-nio-8000-exec-7] 980176 +2021-01-04 00:03:14,557 WARN [http-nio-8000-exec-7] matched +2021-01-04 00:09:40,113 WARN [http-nio-8000-exec-3] Simon.bussmann@adolfinum.de +2021-01-04 00:09:40,115 WARN [http-nio-8000-exec-3] no code +2021-01-04 00:09:57,679 WARN [http-nio-8000-exec-5] 366680 +2021-01-04 00:09:57,680 WARN [http-nio-8000-exec-5] matched +2021-01-04 00:10:45,401 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de +2021-01-04 00:10:45,404 WARN [http-nio-8000-exec-2] no code +2021-01-04 00:11:08,813 WARN [http-nio-8000-exec-3] 045081 +2021-01-04 00:11:08,814 WARN [http-nio-8000-exec-3] matched diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java index 17b1be8..c6b778f 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java @@ -22,7 +22,6 @@ import javax.annotation.PostConstruct; import java.time.LocalDate; import java.time.Month; import java.util.*; -import java.util.concurrent.ExecutionException; @Controller public class VotingController { diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/table/TableAction.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/table/TableAction.java index c1f07dd..25117f8 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/table/TableAction.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/table/TableAction.java @@ -71,12 +71,8 @@ public class TableAction { authCodesRepository.delete(authCodesRepository.findByName(name)); } - private boolean fiveMinutesPassed(Long time){ - return System.currentTimeMillis() >= (time + 300*1000); - } - private int getLimit(List possibleCandidates){ - return possibleCandidates.size() <= 5 ? possibleCandidates.size() : 5; + return possibleCandidates.size() <= 15 ? possibleCandidates.size() : 15; } public void voteForCandidate(String id, CandidateRepository candidateRepository){ @@ -123,8 +119,17 @@ public class TableAction { Collections.sort(possibleCandidatesPerCategory, Comparator.comparing(PossibleCandidate::getVotes)); Collections.reverse(possibleCandidatesPerCategory); for (int j = 0; j < getLimit(possibleCandidatesPerCategory); j++){ - Candidate candidate = new Candidate(possibleCandidatesPerCategory.get(j).getName(), possibleCandidatesPerCategory.get(j).getCategory()); - candidateRepository.save(candidate); + if (j >= 10 && possibleCandidatesPerCategory.get(j).getVotes() == possibleCandidatesPerCategory.get(j-1).getVotes()){ + Candidate candidate = new Candidate(possibleCandidatesPerCategory.get(j).getName(), possibleCandidatesPerCategory.get(j).getCategory()); + candidateRepository.save(candidate); + } + if (j < 10){ + Candidate candidate = new Candidate(possibleCandidatesPerCategory.get(j).getName(), possibleCandidatesPerCategory.get(j).getCategory()); + candidateRepository.save(candidate); + } + if (j == 14){ + break; + } } i += -1; possibleCandidatesPerCategory.clear(); From e9e9cfca970c0d9cc1e8859bb836287dd9919ec2 Mon Sep 17 00:00:00 2001 From: Simon Date: Mon, 4 Jan 2021 02:22:00 +0100 Subject: [PATCH 21/35] Made final changes --- logs/Voting.log | 411 ++++++++++++++++++ .../controller/VotingController.java | 73 ++-- .../entities/Motto.java | 58 --- .../entities/Voter.java | 8 - .../repositories/MottoRepository.java | 14 - .../table/TableAction.java | 38 +- src/main/resources/Categories2.txt | 7 +- src/main/resources/Q2_emails.txt | 4 +- .../resources/templates/addingCandidates.html | 4 +- 9 files changed, 449 insertions(+), 168 deletions(-) delete mode 100644 src/main/java/com/github/cato447/AbizeitungVotingSystem/entities/Motto.java delete mode 100644 src/main/java/com/github/cato447/AbizeitungVotingSystem/repositories/MottoRepository.java diff --git a/logs/Voting.log b/logs/Voting.log index 0afbe0e..d31b40e 100644 --- a/logs/Voting.log +++ b/logs/Voting.log @@ -118,3 +118,414 @@ Caused by: org.hibernate.LazyInitializationException: could not initialize proxy 2021-01-04 00:10:45,404 WARN [http-nio-8000-exec-2] no code 2021-01-04 00:11:08,813 WARN [http-nio-8000-exec-3] 045081 2021-01-04 00:11:08,814 WARN [http-nio-8000-exec-3] matched +2021-01-04 00:52:46,403 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 40643 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2021-01-04 00:52:46,407 INFO [restartedMain] No active profile set, falling back to default profiles: default +2021-01-04 00:52:46,499 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-04 00:52:46,500 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-04 00:52:46,913 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-01-04 00:52:46,971 INFO [restartedMain] Finished Spring Data repository scanning in 51ms. Found 6 JPA repository interfaces. +2021-01-04 00:52:47,721 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2021-01-04 00:52:47,733 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2021-01-04 00:52:47,734 INFO [restartedMain] Starting service [Tomcat] +2021-01-04 00:52:47,734 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2021-01-04 00:52:47,792 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2021-01-04 00:52:47,792 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1292 ms +2021-01-04 00:52:47,989 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2021-01-04 00:52:48,040 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2021-01-04 00:52:48,127 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2021-01-04 00:52:48,190 INFO [restartedMain] HikariPool-1 - Starting... +2021-01-04 00:52:48,549 INFO [restartedMain] HikariPool-1 - Start completed. +2021-01-04 00:52:48,581 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2021-01-04 00:52:49,215 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-01-04 00:52:49,224 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-01-04 00:52:49,241 INFO [restartedMain] LiveReload server is running on port 35729 +2021-01-04 00:52:49,654 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2021-01-04 00:52:49,884 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2021-01-04 00:52:49,986 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-04 00:52:50,184 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2021-01-04 00:52:50,202 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2021-01-04 00:52:50,213 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.194 seconds (JVM running for 4.896) +2021-01-04 00:53:17,803 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-04 00:53:17,803 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2021-01-04 00:53:17,815 INFO [http-nio-8000-exec-1] Completed initialization in 12 ms +2021-01-04 00:53:17,851 WARN [http-nio-8000-exec-1] in Bounds +2021-01-04 00:53:20,237 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2021-01-04 00:53:20,252 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de has already submitted its candidates +2021-01-04 00:54:00,564 WARN [http-nio-8000-exec-7] in Bounds +2021-01-04 00:54:02,641 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de +2021-01-04 00:54:18,658 WARN [http-nio-8000-exec-2] matched +2021-01-04 00:54:50,636 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-04 00:54:50,639 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2021-01-04 00:54:50,642 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2021-01-04 00:54:50,657 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2021-01-04 00:54:52,942 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 41069 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2021-01-04 00:54:52,946 INFO [restartedMain] No active profile set, falling back to default profiles: default +2021-01-04 00:54:53,010 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-04 00:54:53,011 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-04 00:54:53,415 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-01-04 00:54:53,478 INFO [restartedMain] Finished Spring Data repository scanning in 56ms. Found 6 JPA repository interfaces. +2021-01-04 00:54:54,188 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2021-01-04 00:54:54,198 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2021-01-04 00:54:54,199 INFO [restartedMain] Starting service [Tomcat] +2021-01-04 00:54:54,199 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2021-01-04 00:54:54,258 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2021-01-04 00:54:54,259 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1248 ms +2021-01-04 00:54:54,462 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2021-01-04 00:54:54,518 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2021-01-04 00:54:54,612 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2021-01-04 00:54:54,684 INFO [restartedMain] HikariPool-1 - Starting... +2021-01-04 00:54:55,051 INFO [restartedMain] HikariPool-1 - Start completed. +2021-01-04 00:54:55,082 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2021-01-04 00:54:55,801 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-01-04 00:54:55,811 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-01-04 00:54:55,829 INFO [restartedMain] LiveReload server is running on port 35729 +2021-01-04 00:54:56,282 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2021-01-04 00:54:56,535 INFO [restartedMain] Categories successfully set up +2021-01-04 00:54:56,624 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2021-01-04 00:54:56,753 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-04 00:54:56,967 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2021-01-04 00:54:56,984 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2021-01-04 00:54:56,995 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.438 seconds (JVM running for 5.061) +2021-01-04 00:55:47,131 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-04 00:55:47,134 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2021-01-04 00:55:47,137 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2021-01-04 00:55:47,147 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2021-01-04 00:55:49,350 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 41256 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2021-01-04 00:55:49,354 INFO [restartedMain] No active profile set, falling back to default profiles: default +2021-01-04 00:55:49,431 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-04 00:55:49,432 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-04 00:55:49,867 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-01-04 00:55:49,925 INFO [restartedMain] Finished Spring Data repository scanning in 52ms. Found 6 JPA repository interfaces. +2021-01-04 00:55:50,632 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2021-01-04 00:55:50,642 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2021-01-04 00:55:50,643 INFO [restartedMain] Starting service [Tomcat] +2021-01-04 00:55:50,643 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2021-01-04 00:55:50,702 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2021-01-04 00:55:50,703 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1271 ms +2021-01-04 00:55:50,870 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2021-01-04 00:55:50,909 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2021-01-04 00:55:51,000 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2021-01-04 00:55:51,071 INFO [restartedMain] HikariPool-1 - Starting... +2021-01-04 00:55:51,433 INFO [restartedMain] HikariPool-1 - Start completed. +2021-01-04 00:55:51,454 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2021-01-04 00:55:52,136 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-01-04 00:55:52,144 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-01-04 00:55:52,162 INFO [restartedMain] LiveReload server is running on port 35729 +2021-01-04 00:55:52,583 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2021-01-04 00:55:52,819 INFO [restartedMain] Categories successfully set up +2021-01-04 00:55:52,924 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2021-01-04 00:55:53,037 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-04 00:55:53,244 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2021-01-04 00:55:53,262 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2021-01-04 00:55:53,274 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.304 seconds (JVM running for 4.939) +2021-01-04 00:56:06,936 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-04 00:56:06,937 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2021-01-04 00:56:06,943 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms +2021-01-04 00:56:06,987 WARN [http-nio-8000-exec-1] wrong +2021-01-04 00:56:27,658 WARN [http-nio-8000-exec-7] matched +2021-01-04 00:57:16,096 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-04 00:57:16,098 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2021-01-04 00:57:16,102 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2021-01-04 00:57:16,118 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2021-01-04 00:57:18,376 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 41573 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2021-01-04 00:57:18,381 INFO [restartedMain] No active profile set, falling back to default profiles: default +2021-01-04 00:57:18,457 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-04 00:57:18,457 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-04 00:57:18,888 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-01-04 00:57:18,953 INFO [restartedMain] Finished Spring Data repository scanning in 58ms. Found 6 JPA repository interfaces. +2021-01-04 00:57:19,618 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2021-01-04 00:57:19,627 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2021-01-04 00:57:19,628 INFO [restartedMain] Starting service [Tomcat] +2021-01-04 00:57:19,628 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2021-01-04 00:57:19,694 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2021-01-04 00:57:19,694 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1236 ms +2021-01-04 00:57:19,873 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2021-01-04 00:57:19,907 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2021-01-04 00:57:20,002 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2021-01-04 00:57:20,083 INFO [restartedMain] HikariPool-1 - Starting... +2021-01-04 00:57:20,501 INFO [restartedMain] HikariPool-1 - Start completed. +2021-01-04 00:57:20,522 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2021-01-04 00:57:21,158 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-01-04 00:57:21,167 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-01-04 00:57:21,182 INFO [restartedMain] LiveReload server is running on port 35729 +2021-01-04 00:57:21,614 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2021-01-04 00:57:21,839 INFO [restartedMain] Categories successfully set up +2021-01-04 00:57:21,938 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2021-01-04 00:57:22,050 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-04 00:57:22,271 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2021-01-04 00:57:22,289 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2021-01-04 00:57:22,303 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.331 seconds (JVM running for 4.978) +2021-01-04 01:10:30,792 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-04 01:10:30,793 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2021-01-04 01:10:30,801 INFO [http-nio-8000-exec-1] Completed initialization in 7 ms +2021-01-04 01:10:30,827 WARN [http-nio-8000-exec-1] in Bounds +2021-01-04 01:10:35,161 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2021-01-04 01:10:55,660 WARN [http-nio-8000-exec-6] matched +2021-01-04 01:11:31,032 WARN [http-nio-8000-exec-10] in Bounds +2021-01-04 01:11:44,561 WARN [http-nio-8000-exec-2] in Bounds +2021-01-04 01:12:00,937 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2021-01-04 01:45:45,703 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-04 01:45:45,707 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2021-01-04 01:45:45,710 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2021-01-04 01:45:45,723 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2021-01-04 01:45:48,882 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 69675 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2021-01-04 01:45:48,885 INFO [restartedMain] No active profile set, falling back to default profiles: default +2021-01-04 01:45:48,946 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-04 01:45:48,947 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-04 01:45:49,494 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-01-04 01:45:49,558 INFO [restartedMain] Finished Spring Data repository scanning in 57ms. Found 6 JPA repository interfaces. +2021-01-04 01:45:50,235 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2021-01-04 01:45:50,243 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2021-01-04 01:45:50,244 INFO [restartedMain] Starting service [Tomcat] +2021-01-04 01:45:50,244 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2021-01-04 01:45:50,299 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2021-01-04 01:45:50,299 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1352 ms +2021-01-04 01:45:50,467 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2021-01-04 01:45:50,502 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2021-01-04 01:45:50,593 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2021-01-04 01:45:50,661 INFO [restartedMain] HikariPool-1 - Starting... +2021-01-04 01:45:51,019 INFO [restartedMain] HikariPool-1 - Start completed. +2021-01-04 01:45:51,040 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2021-01-04 01:45:51,637 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-01-04 01:45:51,642 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-01-04 01:45:51,653 INFO [restartedMain] LiveReload server is running on port 35729 +2021-01-04 01:45:52,079 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2021-01-04 01:45:52,808 INFO [restartedMain] Categories successfully set up +2021-01-04 01:45:52,872 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2021-01-04 01:45:52,968 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-04 01:45:53,130 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2021-01-04 01:45:53,147 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2021-01-04 01:45:53,157 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.628 seconds (JVM running for 5.231) +2021-01-04 01:46:12,002 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-04 01:46:12,002 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2021-01-04 01:46:12,007 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms +2021-01-04 01:46:12,038 WARN [http-nio-8000-exec-1] in Bounds +2021-01-04 01:46:14,776 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2021-01-04 01:46:28,201 WARN [http-nio-8000-exec-6] matched +2021-01-04 01:48:25,518 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-04 01:48:25,522 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2021-01-04 01:48:25,525 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2021-01-04 01:48:25,536 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2021-01-04 01:48:28,739 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 69907 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2021-01-04 01:48:28,741 INFO [restartedMain] No active profile set, falling back to default profiles: default +2021-01-04 01:48:28,801 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-04 01:48:28,802 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-04 01:48:29,187 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-01-04 01:48:29,239 INFO [restartedMain] Finished Spring Data repository scanning in 46ms. Found 6 JPA repository interfaces. +2021-01-04 01:48:29,874 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2021-01-04 01:48:29,886 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2021-01-04 01:48:29,887 INFO [restartedMain] Starting service [Tomcat] +2021-01-04 01:48:29,888 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2021-01-04 01:48:29,950 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2021-01-04 01:48:29,951 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1149 ms +2021-01-04 01:48:30,107 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2021-01-04 01:48:30,143 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2021-01-04 01:48:30,242 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2021-01-04 01:48:30,306 INFO [restartedMain] HikariPool-1 - Starting... +2021-01-04 01:48:30,636 INFO [restartedMain] HikariPool-1 - Start completed. +2021-01-04 01:48:30,655 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2021-01-04 01:48:31,249 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-01-04 01:48:31,254 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-01-04 01:48:31,268 INFO [restartedMain] LiveReload server is running on port 35729 +2021-01-04 01:48:31,636 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2021-01-04 01:48:31,861 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2021-01-04 01:48:31,957 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-04 01:48:32,131 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2021-01-04 01:48:32,152 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2021-01-04 01:48:32,162 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.777 seconds (JVM running for 4.348) +2021-01-04 01:48:40,988 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-04 01:48:40,989 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2021-01-04 01:48:40,994 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms +2021-01-04 01:48:41,019 WARN [http-nio-8000-exec-1] in Bounds +2021-01-04 01:48:43,036 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2021-01-04 01:48:56,138 WARN [http-nio-8000-exec-5] matched +2021-01-04 01:50:00,090 ERROR [http-nio-8000-exec-8] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.ArrayIndexOutOfBoundsException: Index 1 out of bounds for length 1] with root cause +java.lang.ArrayIndexOutOfBoundsException: Index 1 out of bounds for length 1 + at com.github.cato447.AbizeitungVotingSystem.controller.VotingController.candidateSaving(VotingController.java:221) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:566) + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:878) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:792) + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.base/java.lang.Thread.run(Thread.java:829) +2021-01-04 01:51:39,048 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-04 01:51:39,051 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2021-01-04 01:51:39,055 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2021-01-04 01:51:39,070 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2021-01-04 01:51:42,185 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 70219 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2021-01-04 01:51:42,188 INFO [restartedMain] No active profile set, falling back to default profiles: default +2021-01-04 01:51:42,247 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-04 01:51:42,247 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-04 01:51:42,648 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-01-04 01:51:42,695 INFO [restartedMain] Finished Spring Data repository scanning in 41ms. Found 6 JPA repository interfaces. +2021-01-04 01:51:43,313 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2021-01-04 01:51:43,322 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2021-01-04 01:51:43,322 INFO [restartedMain] Starting service [Tomcat] +2021-01-04 01:51:43,323 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2021-01-04 01:51:43,388 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2021-01-04 01:51:43,389 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1141 ms +2021-01-04 01:51:43,554 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2021-01-04 01:51:43,588 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2021-01-04 01:51:43,675 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2021-01-04 01:51:43,742 INFO [restartedMain] HikariPool-1 - Starting... +2021-01-04 01:51:44,116 INFO [restartedMain] HikariPool-1 - Start completed. +2021-01-04 01:51:44,136 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2021-01-04 01:51:44,743 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-01-04 01:51:44,750 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-01-04 01:51:44,761 INFO [restartedMain] LiveReload server is running on port 35729 +2021-01-04 01:51:45,215 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2021-01-04 01:51:45,448 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2021-01-04 01:51:45,546 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-04 01:51:45,725 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2021-01-04 01:51:45,742 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2021-01-04 01:51:45,752 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.915 seconds (JVM running for 4.496) +2021-01-04 01:59:41,880 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-04 01:59:41,885 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2021-01-04 01:59:41,890 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2021-01-04 01:59:41,905 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2021-01-04 01:59:45,027 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 70580 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2021-01-04 01:59:45,030 INFO [restartedMain] No active profile set, falling back to default profiles: default +2021-01-04 01:59:45,087 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-04 01:59:45,088 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-04 01:59:45,506 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-01-04 01:59:45,553 INFO [restartedMain] Finished Spring Data repository scanning in 41ms. Found 6 JPA repository interfaces. +2021-01-04 01:59:46,181 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2021-01-04 01:59:46,192 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2021-01-04 01:59:46,193 INFO [restartedMain] Starting service [Tomcat] +2021-01-04 01:59:46,193 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2021-01-04 01:59:46,250 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2021-01-04 01:59:46,251 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1163 ms +2021-01-04 01:59:46,413 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2021-01-04 01:59:46,450 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2021-01-04 01:59:46,539 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2021-01-04 01:59:46,609 INFO [restartedMain] HikariPool-1 - Starting... +2021-01-04 01:59:46,960 INFO [restartedMain] HikariPool-1 - Start completed. +2021-01-04 01:59:46,987 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2021-01-04 01:59:47,589 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-01-04 01:59:47,597 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-01-04 01:59:47,609 INFO [restartedMain] LiveReload server is running on port 35729 +2021-01-04 01:59:48,005 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2021-01-04 01:59:48,237 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2021-01-04 01:59:48,333 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-04 01:59:48,494 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2021-01-04 01:59:48,514 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2021-01-04 01:59:48,523 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.849 seconds (JVM running for 4.447) +2021-01-04 01:59:58,093 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-04 01:59:58,094 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2021-01-04 01:59:58,100 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms +2021-01-04 01:59:58,120 WARN [http-nio-8000-exec-1] in Bounds +2021-01-04 02:00:05,646 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2021-01-04 02:00:20,714 WARN [http-nio-8000-exec-5] matched +2021-01-04 02:03:40,152 WARN [http-nio-8000-exec-1] in Bounds +2021-01-04 02:05:15,532 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-04 02:05:15,534 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2021-01-04 02:05:15,539 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2021-01-04 02:05:15,551 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2021-01-04 02:05:18,784 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 70908 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2021-01-04 02:05:18,787 INFO [restartedMain] No active profile set, falling back to default profiles: default +2021-01-04 02:05:18,857 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-04 02:05:18,858 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-04 02:05:19,291 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-01-04 02:05:19,352 INFO [restartedMain] Finished Spring Data repository scanning in 52ms. Found 6 JPA repository interfaces. +2021-01-04 02:05:20,006 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2021-01-04 02:05:20,016 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2021-01-04 02:05:20,016 INFO [restartedMain] Starting service [Tomcat] +2021-01-04 02:05:20,016 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2021-01-04 02:05:20,079 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2021-01-04 02:05:20,079 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1220 ms +2021-01-04 02:05:20,259 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2021-01-04 02:05:20,291 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2021-01-04 02:05:20,376 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2021-01-04 02:05:20,440 INFO [restartedMain] HikariPool-1 - Starting... +2021-01-04 02:05:20,766 INFO [restartedMain] HikariPool-1 - Start completed. +2021-01-04 02:05:20,787 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2021-01-04 02:05:21,402 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-01-04 02:05:21,410 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-01-04 02:05:21,426 INFO [restartedMain] LiveReload server is running on port 35729 +2021-01-04 02:05:21,838 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true +2021-01-04 02:05:22,065 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2021-01-04 02:05:22,161 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-04 02:05:22,329 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2021-01-04 02:05:22,348 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2021-01-04 02:05:22,358 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.937 seconds (JVM running for 4.514) +2021-01-04 02:11:07,453 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-04 02:11:07,457 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2021-01-04 02:11:07,461 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2021-01-04 02:11:07,473 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2021-01-04 02:11:10,707 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 71248 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2021-01-04 02:11:10,710 INFO [restartedMain] No active profile set, falling back to default profiles: default +2021-01-04 02:11:10,772 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-04 02:11:10,773 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-04 02:11:11,169 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-01-04 02:11:11,214 INFO [restartedMain] Finished Spring Data repository scanning in 40ms. Found 5 JPA repository interfaces. +2021-01-04 02:11:11,836 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2021-01-04 02:11:11,845 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2021-01-04 02:11:11,845 INFO [restartedMain] Starting service [Tomcat] +2021-01-04 02:11:11,845 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2021-01-04 02:11:11,905 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2021-01-04 02:11:11,906 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1132 ms +2021-01-04 02:11:12,078 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2021-01-04 02:11:12,111 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2021-01-04 02:11:12,202 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2021-01-04 02:11:12,274 INFO [restartedMain] HikariPool-1 - Starting... +2021-01-04 02:11:12,614 INFO [restartedMain] HikariPool-1 - Start completed. +2021-01-04 02:11:12,639 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2021-01-04 02:11:13,257 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-01-04 02:11:13,266 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-01-04 02:11:13,279 INFO [restartedMain] LiveReload server is running on port 35729 +2021-01-04 02:11:13,646 INFO [restartedMain] Program started with arguments: votingPhase=false addingPhase=true +2021-01-04 02:11:13,902 INFO [restartedMain] Voters successfully set up +2021-01-04 02:11:13,955 INFO [restartedMain] Categories successfully set up +2021-01-04 02:11:13,995 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2021-01-04 02:11:14,092 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-04 02:11:14,268 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2021-01-04 02:11:14,282 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2021-01-04 02:11:14,292 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.946 seconds (JVM running for 4.512) +2021-01-04 02:13:20,085 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-04 02:13:20,088 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2021-01-04 02:13:20,092 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2021-01-04 02:13:20,107 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java index c6b778f..eb13216 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java @@ -6,7 +6,6 @@ import com.github.cato447.AbizeitungVotingSystem.helper.RandomNumber; import com.github.cato447.AbizeitungVotingSystem.repositories.*; import com.github.cato447.AbizeitungVotingSystem.table.TableAction; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Value; import org.springframework.mail.SimpleMailMessage; import org.springframework.mail.javamail.JavaMailSender; import org.springframework.stereotype.Controller; @@ -26,9 +25,8 @@ import java.util.*; @Controller public class VotingController { - private boolean votingPhase = false; - private boolean mottoPhase = false; - private boolean addingPhase = false; + private boolean votingPhase; + private boolean addingPhase; private static final Logger LOGGER = LogManager.getLogger(VotingController.class); private TableAction tableAction = new TableAction(); @@ -42,9 +40,6 @@ public class VotingController { @Autowired CategoryRepository categoryRepository; - @Autowired - MottoRepository mottoRepository; - @Autowired PossibleCandidateRepository possibleCandidateRepository; @@ -57,11 +52,10 @@ public class VotingController { @PostConstruct public void init() { - mottoPhase = false; - votingPhase = true; - addingPhase = false; + votingPhase = false; + addingPhase = true; - LOGGER.info("Program started with arguments: votingPhase="+ votingPhase + " mottoPhase=" + mottoPhase + " addingPhase=" + addingPhase); + LOGGER.info("Program started with arguments: votingPhase="+ votingPhase + " addingPhase=" + addingPhase); if (voterRepository.findAll().size() == 0) { tableAction.setUpVoters(voterRepository); @@ -70,14 +64,10 @@ public class VotingController { if (categoryRepository.findAll().size() == 0) { tableAction.setUpCategories(categoryRepository); + possibleCandidateRepository.deleteAll(); LOGGER.info("Categories successfully set up"); } - if (mottoRepository.findAll().size() == 0){ - tableAction.setUpMottos(mottoRepository); - LOGGER.info("Mottos successfully set up"); - } - if (candidateRepository.findAll().size() == 0 && votingPhase == true && possibleCandidateRepository.findAll().size() != 0) { tableAction.setUpCandidates(possibleCandidateRepository, candidateRepository); LOGGER.info("Candidates successfully set up"); @@ -122,9 +112,6 @@ public class VotingController { } else if (voter.getCandidatesubmit_status() && addingPhase) { LOGGER.warn(name + " has already submitted its candidates"); return "errors/alreadyVoted.html"; - } else if (voter.getMotto_status() && mottoPhase) { - LOGGER.warn(name + " has already chose their motto"); - return "errors/alreadyVoted.html"; } else { if (authCodesRepository.findByName(name) == null) { AuthCode authCode = tableAction.generateToken(name, RandomNumber.getRandomNumberString(), authCodesRepository); @@ -165,12 +152,7 @@ public class VotingController { String tokenStatus = tableAction.checkToken(name, code, authCodesRepository); if (tokenStatus.equals("matched")) { LOGGER.warn("matched"); - if (mottoPhase) { - List mottos = mottoRepository.findAll(); - model.addAttribute("mottos", mottos); - model.addAttribute("name", name); - return "mottoVoting.html"; - } else if (addingPhase) { + if (addingPhase) { PossibleCandidateWrapper possibleCandidates = new PossibleCandidateWrapper(); List categories = categoryRepository.findAll(); for (int i = 0; i < categories.size(); i++) { @@ -204,54 +186,59 @@ public class VotingController { @RequestMapping("/saveCandidates") public String candidateSaving(@ModelAttribute PossibleCandidateWrapper possibleCandidates, @RequestParam String name) { - if (voterRepository.findByEmail(name).getVote_status()) { + if (voterRepository.findByEmail(name).getCandidatesubmit_status()) { return "errors/alreadyVoted.html"; } else { LinkedList posCandidates = possibleCandidates.getPossibleCandidates(); + LinkedList voteForPosCandidates = new LinkedList<>(); + LinkedList addToPosCandidates = new LinkedList<>(); long index = 1; for (PossibleCandidate posCandidate : posCandidates) { if (posCandidate.getName() != "") { if (possibleCandidateRepository.findByNameAndCategory(posCandidate.getName(), categoryRepository.findById(index).get()) != null) { PossibleCandidate p = possibleCandidateRepository.findByNameAndCategory(posCandidate.getName(), categoryRepository.findById(index).get()); - p.setVotes(p.getVotes() + 1); - possibleCandidateRepository.save(p); + voteForPosCandidates.add(p); } else { + if(index > 31 && posCandidate.getName().indexOf(" ") != -1){ + posCandidate.setName(posCandidate.getName().split(" ")[1]); + } PossibleCandidate possibleCandidate = new PossibleCandidate(posCandidate.getName(), categoryRepository.findById(index).get()); - possibleCandidateRepository.save(possibleCandidate); + addToPosCandidates.add(possibleCandidate); } } index++; } + for (PossibleCandidate p: voteForPosCandidates) { + p.setVotes(p.getVotes() + 1); + possibleCandidateRepository.save(p); + } + + for (PossibleCandidate p: addToPosCandidates) { + possibleCandidateRepository.save(p); + } + tableAction.updateCandidatesubmit_status(name, voterRepository); return "voteSuccessful.html"; } } - @RequestMapping("/saveMotto") - public String mottoSaving(@RequestParam String name, @RequestParam String voteValue) { - LOGGER.info(name); - if (voterRepository.findByEmail(name).getMotto_status()) { - return "errors/alreadySubmitted.html"; - } else { - tableAction.voteForMotto(voteValue, mottoRepository); - tableAction.updateMottoStatus(name, voterRepository); - LOGGER.info(name + " has choose his motto"); - } - return "voteSuccessful.html"; - } - @RequestMapping("/processVote") public String ProcessVote(@RequestParam String name, @RequestParam String voteValues) { if (voterRepository.findByEmail(name).getVote_status()) { return "errors/alreadyVoted.html"; } else { + LinkedList voteFor = new LinkedList<>(); if(!voteValues.equals("")) { String[] partVoteValues = voteValues.split(","); for (String s : partVoteValues) { - tableAction.voteForCandidate(s, candidateRepository); + voteFor.add(s); } LOGGER.info(name + " has voted!"); } + for (String s: voteFor) { + tableAction.voteForCandidate(s, candidateRepository); + } + tableAction.updateVotingStatus(name, voterRepository); return "voteSuccessful.html"; } diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/entities/Motto.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/entities/Motto.java deleted file mode 100644 index e3d6334..0000000 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/entities/Motto.java +++ /dev/null @@ -1,58 +0,0 @@ -package com.github.cato447.AbizeitungVotingSystem.entities; - -import javax.persistence.*; - -@Entity -@Table(name = "mottos") -public class Motto implements Comparable{ - - public Motto() { - super(); - } - - public Motto(String name) { - super(); - this.name = name; - this.votes = 0; - } - - @Id - @GeneratedValue(strategy = GenerationType.IDENTITY) - private Long id; - private String name; - - private Integer votes; - - - public Long getId() { - return id; - } - - public String getName() { - return name; - } - - public Integer getVotes() { - return votes; - } - - public void setName(String name) { - this.name = name; - } - - public void setVotes(Integer votes) { - this.votes = votes; - } - - public void voteFor() { - this.votes += 1; - } - - @Override - public int compareTo(Motto m) { - if (getVotes() == null || m.getVotes() == null) { - return 0; - } - return m.getVotes().compareTo(getVotes()); - } -} diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/entities/Voter.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/entities/Voter.java index 3bbe10a..97a2c51 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/entities/Voter.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/entities/Voter.java @@ -14,7 +14,6 @@ public class Voter { this.email = email; this.vote_status = false; this.candidatesubmit_status = false; - this.motto_status = false; } @Id @@ -22,7 +21,6 @@ public class Voter { private Long id; private String email; private Boolean vote_status; - private Boolean motto_status; private Boolean candidatesubmit_status; public Long getId() { @@ -41,10 +39,6 @@ public class Voter { return candidatesubmit_status; } - public Boolean getMotto_status() { - return motto_status; - } - public void vote(){ vote_status = true; } @@ -52,6 +46,4 @@ public class Voter { public void submitCandidates() { candidatesubmit_status = true; } - - public void voteMotto() { motto_status = true;} } diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/repositories/MottoRepository.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/repositories/MottoRepository.java deleted file mode 100644 index 0d3ecb0..0000000 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/repositories/MottoRepository.java +++ /dev/null @@ -1,14 +0,0 @@ -package com.github.cato447.AbizeitungVotingSystem.repositories; - -import com.github.cato447.AbizeitungVotingSystem.entities.Motto; -import org.springframework.data.jpa.repository.JpaRepository; - -import java.util.Optional; - -public interface MottoRepository extends JpaRepository { - - public Motto findByName(String name); - - Optional findById(Long id); - -} diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/table/TableAction.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/table/TableAction.java index 25117f8..c4bc283 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/table/TableAction.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/table/TableAction.java @@ -1,16 +1,9 @@ package com.github.cato447.AbizeitungVotingSystem.table; -import com.github.cato447.AbizeitungVotingSystem.controller.VotingController; import com.github.cato447.AbizeitungVotingSystem.entities.*; import com.github.cato447.AbizeitungVotingSystem.repositories.*; -import org.aspectj.weaver.loadtime.definition.LightXMLParser; import java.io.*; -import java.lang.reflect.Array; -import java.net.JarURLConnection; -import java.net.URL; -import java.net.URLConnection; -import java.nio.Buffer; import java.util.*; public class TableAction { @@ -31,12 +24,6 @@ public class TableAction { voterRepository.save(voter); } - public void updateMottoStatus(String email, VoterRepository voterRepository){ - Voter voter = voterRepository.findByEmail(email); - voter.voteMotto(); - voterRepository.save(voter); - } - public AuthCode generateToken(String name, String code, AuthCodesRepository authCodesRepository) { AuthCode authCode = new AuthCode(name, code); try{ @@ -82,13 +69,6 @@ public class TableAction { candidateRepository.save(candidate); } - public void voteForMotto(String id, MottoRepository mottoRepository){ - long mottoID = Long.valueOf(id); - Motto motto = mottoRepository.findById(mottoID).get(); - motto.voteFor(); - mottoRepository.save(motto); - } - public void setUpVoters(VoterRepository voterRepository){ try (InputStream inputStream = getClass().getResourceAsStream("/Q2_emails.txt"); BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream))) { @@ -142,7 +122,7 @@ public class TableAction { } public void setUpCategories(CategoryRepository categoryRepository){ - try (InputStream inputStream = getClass().getResourceAsStream("/Categories.txt"); + try (InputStream inputStream = getClass().getResourceAsStream("/Categories2.txt"); BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream))) { String line = ""; ArrayList categories = new ArrayList(); @@ -156,20 +136,4 @@ public class TableAction { e.printStackTrace(); } } - - public void setUpMottos(MottoRepository mottoRepository){ - try (InputStream inputStream = getClass().getResourceAsStream("/Mottos.txt"); - BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream))) { - String line = ""; - ArrayList mottos = new ArrayList<>(); - while ((line = reader.readLine())!= null){ - String name = line; - Motto motto = new Motto(name); - mottos.add(motto); - } - mottoRepository.saveAll(mottos); - } catch (IOException e) { - e.printStackTrace(); - } - } } diff --git a/src/main/resources/Categories2.txt b/src/main/resources/Categories2.txt index 51986db..204a4a2 100644 --- a/src/main/resources/Categories2.txt +++ b/src/main/resources/Categories2.txt @@ -10,7 +10,7 @@ Ehrgeizig, ehrgeiziger, ... Miss Make-Up Meiste Punkte in Flensburg Im Bundestag -Leber als Bimsstein +Bimsstein als Leber Bester Schwiegersohn Beste Schwiegertochter Lebt im Fitnessstudio @@ -47,7 +47,4 @@ Unterrichtet auch, wenn die Schule brennt Ist immer da Lebt in der Schule Musste einen Wald für Arbeitsblätter roden lassen -Top gestylt - - - +Top gestylt \ No newline at end of file diff --git a/src/main/resources/Q2_emails.txt b/src/main/resources/Q2_emails.txt index 57e2756..25d79ef 100644 --- a/src/main/resources/Q2_emails.txt +++ b/src/main/resources/Q2_emails.txt @@ -158,4 +158,6 @@ niklas.klaffki@adolfinum.de alessio.padovano@adolfinum.de jonas.breder@adolfinum.de ben.maas@adolfinum.de -mina.ercan@adolfinum.de \ No newline at end of file +mina.ercan@adolfinum.de +maya.springstein@adolfinum.de +can.patir@adolfinum.de \ No newline at end of file diff --git a/src/main/resources/templates/addingCandidates.html b/src/main/resources/templates/addingCandidates.html index 7d0c149..908566b 100644 --- a/src/main/resources/templates/addingCandidates.html +++ b/src/main/resources/templates/addingCandidates.html @@ -42,10 +42,10 @@
-
+

Lehrer

-
+

Schüler

From 436142f546db0191a8076b2d53ac78a18af769d8 Mon Sep 17 00:00:00 2001 From: Simon Date: Sat, 9 Jan 2021 02:35:55 +0100 Subject: [PATCH 22/35] Added second voting --- .../controller/VotingController.java | 2 +- .../templates/errors/alreadyVoted.html | 33 ++++++++++++++++--- .../templates/errors/votingClosed.html | 4 +-- 3 files changed, 31 insertions(+), 8 deletions(-) diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java index eb13216..9f1b561 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java @@ -76,7 +76,7 @@ public class VotingController { @RequestMapping("/") public String WelcomeSite() { - LocalDate finishDate = LocalDate.of(2021, Month.JANUARY,8); + LocalDate finishDate = LocalDate.of(2021, Month.JANUARY,17); LocalDate now = LocalDate.now(); if(now.isAfter(finishDate)){ diff --git a/src/main/resources/templates/errors/alreadyVoted.html b/src/main/resources/templates/errors/alreadyVoted.html index 2fafb30..cea84dc 100644 --- a/src/main/resources/templates/errors/alreadyVoted.html +++ b/src/main/resources/templates/errors/alreadyVoted.html @@ -8,15 +8,38 @@ -
-

Du hast schon abgestimmt!

- -
+
+

Du hast schon abgestimmt!

+

Nächste Abstimmung in:

+ +
- diff --git a/src/main/resources/templates/errors/votingClosed.html b/src/main/resources/templates/errors/votingClosed.html index 5c5e830..f04a09e 100644 --- a/src/main/resources/templates/errors/votingClosed.html +++ b/src/main/resources/templates/errors/votingClosed.html @@ -9,8 +9,8 @@
-

Das Voting wurde beendet!

-

Informationen zu Votings sind der Adolfinumwebsite zu entnehmen

+

Du scheinst zu spät zu sein!

+

Momentan findet kein Voting statt

From 4c56f2c0ab21886fb93f016b623c46bc2a2953ee Mon Sep 17 00:00:00 2001 From: Simon Date: Sat, 9 Jan 2021 03:50:07 +0100 Subject: [PATCH 23/35] Back up of first Database --- Databases/First Voting/VotingSystem.sql | 1691 +++++++++++++++++++++++ 1 file changed, 1691 insertions(+) create mode 100644 Databases/First Voting/VotingSystem.sql diff --git a/Databases/First Voting/VotingSystem.sql b/Databases/First Voting/VotingSystem.sql new file mode 100644 index 0000000..b839da6 --- /dev/null +++ b/Databases/First Voting/VotingSystem.sql @@ -0,0 +1,1691 @@ +-- phpMyAdmin SQL Dump +-- version 5.0.4 +-- https://www.phpmyadmin.net/ +-- +-- Host: localhost +-- Erstellungszeit: 09. Jan 2021 um 00:57 +-- Server-Version: 5.7.32-0ubuntu0.18.04.1 +-- PHP-Version: 7.2.24-0ubuntu0.18.04.7 + +SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; +START TRANSACTION; +SET time_zone = "+00:00"; + + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8mb4 */; + +-- +-- Datenbank: `VotingSystem` +-- + +-- -------------------------------------------------------- + +-- +-- Tabellenstruktur für Tabelle `auth_codes` +-- + +CREATE TABLE `auth_codes` ( + `id` bigint(20) NOT NULL, + `code` varchar(255) DEFAULT NULL, + `name` varchar(255) DEFAULT NULL, + `time` bigint(20) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +-- +-- Daten für Tabelle `auth_codes` +-- + +INSERT INTO `auth_codes` (`id`, `code`, `name`, `time`) VALUES +(38, '088179', 'dilan.oeztuerk@adolfinum.de', 1609110317373), +(124, '126316', 'niklas.klaffki@adolfinum.de ', 1609166045175); + +-- -------------------------------------------------------- + +-- +-- Tabellenstruktur für Tabelle `candidates` +-- + +CREATE TABLE `candidates` ( + `id` bigint(20) NOT NULL, + `name` varchar(255) DEFAULT NULL, + `votes` int(11) DEFAULT NULL, + `category_id` bigint(20) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +-- +-- Daten für Tabelle `candidates` +-- + +INSERT INTO `candidates` (`id`, `name`, `votes`, `category_id`) VALUES +(211, 'Simon Bussmann', 17, 1), +(212, 'Lili Schweitzer', 17, 1), +(213, 'Leon Borgerding', 31, 1), +(214, 'Moritz Weihnacht', 16, 1), +(215, 'Cedric Damerow', 38, 1), +(216, 'Jerome Laukamp', 26, 2), +(217, 'Justin Kauschke', 17, 2), +(218, 'Burak Kulac', 44, 2), +(219, 'Moritz Liebisch ', 11, 2), +(220, 'Christian Beutel', 22, 2), +(221, 'Nico Hahn', 22, 3), +(222, 'Meret Fass', 18, 3), +(223, 'Sven Mittmann', 26, 3), +(224, 'Manon Schroff ', 29, 3), +(225, 'Hendrik Herffs', 24, 3), +(226, 'Meret Fass', 35, 4), +(227, 'Marie Pütter', 45, 4), +(228, 'Laura König', 18, 4), +(229, 'Delia Schmitz ', 10, 4), +(230, 'Christian Beutel ', 16, 4), +(231, 'Burak Kulac', 19, 5), +(232, 'Justus Bösken', 46, 5), +(233, 'Jerome Laukamp', 21, 5), +(234, 'Moritz Liebisch', 3, 5), +(235, 'Ben Schwarz', 32, 5), +(236, 'Burak Kulac', 55, 6), +(237, 'Jerome Laukamp ', 48, 6), +(238, 'Justin Kauschke ', 9, 6), +(239, 'Moritz Liebisch', 2, 6), +(240, 'Leon Borgerding', 8, 6), +(241, 'Jerome Laukamp ', 26, 7), +(242, 'Moritz Liebisch', 49, 7), +(243, 'Yarkin Kulaksiz', 8, 7), +(244, 'Justin Kauschke', 16, 7), +(245, 'Alexander Pinske', 22, 7), +(246, 'Marie und Nico', 48, 8), +(247, 'Christian und Romyna', 31, 8), +(248, 'Isabelle und Moritz', 13, 8), +(249, 'Leon und Luise', 22, 8), +(250, 'Jennifer und Victor', 8, 8), +(251, 'Delia Schmitz', 46, 9), +(252, 'Leonie Walusch', 14, 9), +(253, 'Laura König', 25, 9), +(254, 'Simon Bussmann', 17, 9), +(255, 'Lukas Corell', 15, 9), +(256, 'Jerome Laukamp', 17, 10), +(257, 'Patrick Preuß', 42, 10), +(258, 'Moritz Liebisch', 13, 10), +(259, 'Justin Kauschke', 24, 10), +(260, 'Yarkin Kulaksiz', 23, 10), +(261, 'Jerome Laukamp ', 14, 11), +(262, 'Burak Kulac', 20, 11), +(263, 'Sean McCormick-Silex', 41, 11), +(264, 'Leonie Wallusch', 38, 11), +(265, 'Simon Bussmann', 7, 11), +(266, 'Simon Bussmann', 17, 12), +(267, 'Delia Schmitz ', 21, 12), +(268, 'Justus Bösken', 32, 12), +(269, 'Lavinia Schmitz ', 45, 12), +(270, 'Moritz Weihnacht', 8, 12), +(271, 'Evelyn Hofmann', 48, 13), +(272, 'Helena neukirch ', 29, 13), +(273, 'Manon Schroff', 11, 13), +(274, 'Julius Preußer', 10, 13), +(275, 'Burak Kulac', 22, 13), +(276, 'Jerome laukamp ', 15, 14), +(277, 'Nico Lipinski', 42, 14), +(278, 'Phillip Heckhoff', 36, 14), +(279, 'Alexander Neumann', 8, 14), +(280, 'Luca van den Boom', 18, 14), +(281, 'Jerome Laukamp', 55, 15), +(282, 'Patrick Preuß', 21, 15), +(283, 'Justus Bösken', 12, 15), +(284, 'Julia Müller', 12, 15), +(285, 'Ben Schwarz', 17, 15), +(286, 'Moritz Liebisch', 13, 16), +(287, 'Jan Schliekmann', 58, 16), +(288, 'Jerome Laukamp', 6, 16), +(289, 'Anna Wilmschen', 40, 16), +(290, 'Malo Soulier', 7, 16), +(291, 'Evelyn Hofmann', 39, 17), +(292, 'Manon Schroff', 20, 17), +(293, 'Greta Bentgens', 21, 17), +(294, 'Antonia Eigemann', 11, 17), +(295, 'Luzi Weichert', 23, 17), +(296, 'Burak Kulac', 30, 18), +(297, 'Sean McCormick-Silex', 47, 18), +(298, 'Luis Erpenbach', 27, 18), +(299, 'Delia Schmitz', 9, 18), +(300, 'Christian Beutel', 12, 18), +(301, 'Simon Bussmann', 46, 19), +(302, 'Evelyn Hofmann', 17, 19), +(304, 'Chiara Welter', 37, 19), +(305, 'Antonia Eigemann', 14, 19), +(306, 'Romyna Gurny', 44, 20), +(307, 'Annika Koch', 24, 20), +(308, 'Laura König', 15, 20), +(309, 'Carlotta Tückmantel', 12, 20), +(310, 'Marie Scheidung', 26, 20), +(311, 'Katharina Schmitz', 24, 21), +(312, 'Nicolas Cunha', 32, 21), +(313, 'Clemens Spoo ', 31, 21), +(314, 'Luise Lu', 21, 21), +(315, 'Jolan Gerritzen', 15, 21), +(316, 'Jerome Laukamp und Moritz Liebisch', 45, 22), +(317, 'Katharina Schmitz und Linnea Paulukuhn', 30, 22), +(318, 'Anna Feldmann und Lilly Schmidtke', 19, 22), +(319, 'Dilan Öztürk und Malin Kalnis', 15, 22), +(320, 'Laura Rüttershoff und Calotta Tückmantel', 10, 22), +(321, 'Christian Pickardt', 39, 23), +(322, 'Jerome Laukamp', 20, 23), +(323, 'Moritz Liebisch ', 25, 23), +(324, 'Nouel Verberkt', 22, 23), +(325, 'Julius Preußer ', 13, 23), +(326, 'Robin Heldt', 30, 24), +(327, 'Antonia Eigemann', 27, 24), +(328, 'Christian Beutel ', 24, 24), +(329, 'Ben Schwarz', 24, 24), +(330, 'Dilan Öztürk', 18, 24), +(331, 'Marie Scheidung', 49, 25), +(332, 'Delia Schmitz', 20, 25), +(333, 'Nicolas Cunha', 23, 25), +(334, 'Greta Bentgens ', 22, 25), +(335, 'Jerome Laukamp', 10, 25), +(336, 'Laurin Severith', 43, 26), +(337, 'Katharina Schmitz', 5, 26), +(338, 'Lewis Lehner', 13, 26), +(339, 'Justus Bösken', 15, 26), +(340, 'Alexander Kupillas ', 42, 26), +(341, 'Jolan Gerritzen ', 47, 27), +(342, 'Anna Feldmann', 35, 27), +(343, 'Tim Krichel', 19, 27), +(344, 'Jan Hövel ', 17, 27), +(345, 'Amelie Laake', 6, 27), +(346, 'Jolan Gerritzen', 26, 28), +(347, 'Marie Scheidung', 34, 28), +(348, 'Delia Schmitz', 9, 28), +(349, 'Luis Erpenbach', 43, 28), +(350, 'Simon Bussmann', 9, 28), +(351, ' Jerome Laukamp', 46, 29), +(352, 'Moritz Liebisch', 21, 29), +(353, 'Justus Bösken', 20, 29), +(354, 'Burak Kulac', 6, 29), +(355, 'Lavinia Schmitz', 25, 29), +(356, 'Emma Sprenger', 25, 30), +(357, 'Zeynep Efe', 40, 30), +(358, 'Marie Scheidung', 28, 30), +(359, 'Antonia Eigemann ', 10, 30), +(360, 'Carlotta Tückmantel', 15, 30), +(361, 'Jan Schliekmann', 30, 31), +(362, 'Christian Beutel', 24, 31), +(363, 'Clemens Spoo', 19, 31), +(364, 'Ben Schwarz', 11, 31), +(365, 'Malo Soulier', 23, 31), +(366, 'Melinda Hirschelmann', 42, 32), +(367, 'Manon Schroff', 19, 32), +(368, 'Evelyn Hofmann', 22, 32), +(369, 'Paula Haub', 13, 32), +(370, 'Luzi Weichert', 19, 32), +(371, 'Herr Nolte', 37, 33), +(372, 'Frau Reiss', 19, 33), +(373, 'Herr Heisig-Pitzen', 20, 33), +(374, 'Frau Kahlert ', 21, 33), +(375, 'Frau Adams', 25, 33), +(376, 'Frau Meier', 23, 34), +(377, 'Herr Nolte', 29, 34), +(378, 'Herr Koopmann', 24, 34), +(379, 'Frau Reiss', 28, 34), +(380, 'Herr Liesegang ', 15, 34), +(381, 'Frau Müller', 49, 35), +(382, 'Herr Schattenberg', 38, 35), +(383, 'Herr Heisig-Pitzen', 11, 35), +(384, 'Herr Watkins', 12, 35), +(385, 'Frau Grade', 13, 35), +(386, 'Herr Krauskopf', 47, 36), +(387, 'Frau Klein', 16, 36), +(388, 'Frau Reiss', 14, 36), +(389, 'Frau Haustein ', 30, 36), +(390, 'Frau Adams', 18, 36), +(391, 'Herr Herrmann', 48, 37), +(392, 'Herr Klag', 44, 37), +(393, 'Herr Niemeier', 12, 37), +(394, 'Herr Heining ', 9, 37), +(395, 'Frau Dietz', 10, 37), +(396, 'Frau Reiss', 22, 38), +(397, 'Frau Kahlert ', 36, 38), +(398, 'Frau Haustein', 20, 38), +(399, 'Frau Romberg ', 33, 38), +(400, 'Frau Schlüter', 12, 38), +(401, 'Herr Schattenberg', 23, 39), +(402, 'Herr Heisig', 20, 39), +(403, 'Herr Heße', 31, 39), +(404, 'Herr Klümper', 16, 39), +(405, 'Herr Koopmann', 23, 39), +(406, 'Koopmann und Liesegang', 65, 40), +(407, 'Meyering und Milde', 22, 40), +(408, 'Evers und Neumann', 18, 40), +(409, 'Heining, Liesegang und Koopmann', 10, 40), +(410, 'Rennert und Schubert ', 8, 40), +(411, 'Frau Müller', 39, 41), +(412, 'Frau Grade', 16, 41), +(413, 'Herr Schirra ', 26, 41), +(414, 'Frau Sokolowski', 26, 41), +(415, 'Herr Watkins ', 18, 41), +(416, 'Frau Müller', 17, 42), +(417, 'Frau Meyering ', 38, 42), +(418, 'Herr Schattenberg', 16, 42), +(419, 'Herr Nolte', 28, 42), +(420, 'Herr Heße', 25, 42), +(422, 'Manon Schroff', 9, 19); + +-- -------------------------------------------------------- + +-- +-- Tabellenstruktur für Tabelle `categories` +-- + +CREATE TABLE `categories` ( + `id` bigint(20) NOT NULL, + `name` varchar(255) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +-- +-- Daten für Tabelle `categories` +-- + +INSERT INTO `categories` (`id`, `name`) VALUES +(1, 'Nesthocker'), +(2, 'Beste Ausreden'), +(3, 'Verfressenste'), +(4, 'Ehre wem Ehre gebührt - Die Engagiertesten'), +(5, 'Verhandlungskünstler'), +(6, 'Stufenclown'), +(7, 'Knacki'), +(8, 'Traumpaar'), +(9, 'Lexikon'), +(10, 'Harzer'), +(11, 'Unvergesslich'), +(12, 'Größter Klugscheißer'), +(13, 'Future Celebrity'), +(14, 'Pornhub als Abendbeschäftigung'), +(15, 'Größte/r Schnorrer/in'), +(16, 'Hat gefühlt die meisten Fehlstunden'), +(17, 'Größte Diva'), +(18, 'Weltherrschaft 2040'), +(19, 'Größte Labertasche'), +(20, 'Sonnenschein'), +(21, 'Kleinster Aufwand, größter Erfolg'), +(22, 'Ziemlich beste Freunde'), +(23, 'Am faulsten'), +(24, 'Immer zu spät'), +(25, 'Lehrers Liebling'), +(26, 'Gleich geblieben'), +(27, 'Größter Bonze'), +(28, 'Verdient später am meisten'), +(29, 'Lehrerschreck'), +(30, 'Augenschmaus (W)'), +(31, 'Augenschmaus (M)'), +(32, 'Lästermaul'), +(33, 'Notenwürfler'), +(34, 'Macht alles außer Unterricht'), +(35, 'Übermotiviert'), +(36, 'Schülerschreck'), +(37, 'Mathegötter (der/die beste Mathelehrer/in)'), +(38, 'Falscher Beruf'), +(39, 'Größte Sauklaue'), +(40, 'Lehrerbuddies'), +(41, 'Lebt den Beruf'), +(42, 'Unvergesslich'); + +-- -------------------------------------------------------- + +-- +-- Tabellenstruktur für Tabelle `mottos` +-- + +CREATE TABLE `mottos` ( + `id` bigint(20) NOT NULL, + `name` varchar(255) DEFAULT NULL, + `votes` int(11) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +-- +-- Daten für Tabelle `mottos` +-- + +INSERT INTO `mottos` (`id`, `name`, `votes`) VALUES +(1, 'CannABIs - wir haben es durchgezogen!', 0), +(2, 'ABI 2,010 ‰ - Meist dichter als Denker', 0), +(3, 'KABItän Blaubär - Immer blau und trotzdem schlau', 0), +(4, 'HABI Potter - Wir verlassen die Kammer des Schreckens', 0), +(5, 'A BItch - Für einen Punkt tue ich alles!', 6), +(6, 'ABIthur - Wenn das Elite von die Gymnahsium gehen tut', 0), +(7, 'LABIrinth - Planlos zum Ziel', 0), +(8, 'ABIcrombie & Fitch - Models gehen, Elche bleiben (Abercrombie & Fitch)', 0), +(9, 'SemipermeABIlität - Nur die Besten kommen durch', 0), +(10, 'KohlrABI - Wir machen uns vom Acker', 0), +(11, 'ABIgasmus - Aber das war nur das Vorspiel', 0); + +-- -------------------------------------------------------- + +-- +-- Tabellenstruktur für Tabelle `possible_candidates` +-- + +CREATE TABLE `possible_candidates` ( + `id` bigint(20) NOT NULL, + `name` varchar(255) DEFAULT NULL, + `votes` int(11) NOT NULL, + `category_id` bigint(20) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +-- +-- Daten für Tabelle `possible_candidates` +-- + +INSERT INTO `possible_candidates` (`id`, `name`, `votes`, `category_id`) VALUES +(43, 'Jerome Laukamp', 12, 2), +(44, 'Linnea Paulukuhn', 2, 3), +(45, 'Marie Pütter', 14, 4), +(47, 'Moritz Liebisch', 24, 7), +(48, 'Emma Sprenger und Gabriel Schacht', 3, 8), +(49, 'Laura König', 4, 9), +(50, 'Evelyn Hofmann', 13, 13), +(51, 'Jan Schliekmann', 19, 16), +(52, 'Evelyn Hofmann', 21, 17), +(53, 'Marie Pütter', 3, 18), +(54, 'Manon Schroff', 3, 19), +(55, 'Romyna Gurny', 7, 20), +(56, 'Katharina Schmitz', 12, 21), +(57, 'Antonia Eigemann', 11, 24), +(58, 'Meret Faß', 1, 25), +(60, 'Marie Scheidung', 6, 28), +(61, 'Emma Sprenger', 10, 30), +(62, 'Jan Schliekmann', 10, 31), +(63, 'Frau Reiss', 6, 34), +(64, 'Frau Müller', 22, 35), +(65, 'Herr Krauskopf', 18, 36), +(66, 'Herr Klag', 22, 37), +(67, 'Herr Heining', 2, 38), +(68, 'Herr Heisig', 8, 39), +(70, 'Frau Müller', 18, 41), +(71, 'Frau Müller', 7, 42), +(78, 'Manon', 2, 11), +(83, 'Manon', 4, 19), +(84, 'Marie scheidung', 3, 20), +(86, 'Marie scheidung', 13, 25), +(89, 'Justus bösken', 1, 32), +(93, 'Frau Neumann ', 2, 38), +(94, 'Christian Beutel', 5, 2), +(95, 'Katharina Schmitz', 4, 3), +(96, 'Luzi Weichert', 2, 4), +(97, 'Justin Kauschke ', 2, 6), +(98, 'Jerome Laukamp ', 24, 7), +(100, 'Delia Schmitz', 21, 9), +(101, 'Moritz Liebisch', 7, 10), +(103, 'Luzi Weichert', 3, 13), +(104, 'Jerome laukamp ', 12, 14), +(105, 'Moritz Liebisch', 20, 16), +(107, 'Melina Kascha', 1, 19), +(109, 'Christian Beutel ', 9, 24), +(110, 'Katharina Schmitz', 2, 25), +(111, 'Jan Hövel ', 5, 27), +(112, 'Herr Koopmann ', 3, 35), +(113, 'Herr Herrmann', 23, 37), +(114, 'Herr Krauskopf ', 5, 38), +(115, 'Frau Meyering ', 4, 42), +(116, 'Kira Winzen', 2, 3), +(117, 'Laura König', 8, 4), +(120, 'Ben Schwarz', 2, 7), +(121, 'Jennifer und Victor', 5, 8), +(123, 'Julius', 1, 12), +(124, 'Amelie Laake', 3, 13), +(126, 'Simon', 1, 19), +(127, 'Louise', 1, 20), +(128, 'Johanna Böckmann', 2, 21), +(129, 'Jerome', 6, 23), +(132, 'Leonie Wallusch', 2, 26), +(133, 'Julius', 1, 27), +(134, 'Delia', 5, 28), +(135, 'Jerome', 31, 29), +(138, 'Frau Meier', 14, 34), +(139, 'Herr Heining ', 9, 37), +(140, 'Herr Heining ', 3, 39), +(141, 'Alexander Schwab', 1, 2), +(143, 'Meret', 21, 4), +(144, 'Simon Bussmann', 3, 5), +(145, 'Jan Niklas', 1, 6), +(149, 'Delia', 1, 11), +(150, 'Simon Bussmann', 17, 12), +(151, 'Romyna', 1, 13), +(152, 'Marwa', 3, 16), +(154, 'Laura König', 4, 20), +(159, 'Godwin', 1, 29), +(162, 'Herr Nolte', 10, 33), +(163, 'Herr Nolte', 9, 34), +(164, 'Bietenbeck', 1, 35), +(168, 'Herr Dierks', 3, 41), +(172, 'Evelyn ', 1, 6), +(175, 'Evelyn ', 7, 19), +(176, 'Aysegül ', 2, 20), +(179, 'Evelyn ', 2, 30), +(180, 'Frau Kahlert ', 6, 33), +(181, 'Herr Kuster ', 3, 34), +(182, 'Frau Adams ', 3, 35), +(183, 'Frau Reiss', 7, 36), +(184, 'Frau Kahlert ', 10, 38), +(187, 'Luise ', 1, 9), +(192, 'Frau Klein', 13, 36), +(193, 'Frau Dietz', 6, 37), +(194, 'Herr Koopmann und Herr Liesegang', 44, 40), +(195, 'Frau Sokolowski', 5, 41), +(196, 'Jan Schliekmann', 3, 1), +(197, 'Ben Schwarz', 5, 2), +(199, 'Ben Schwarz', 4, 5), +(200, 'moritz weihnacht', 1, 9), +(201, 'Julius Preußer', 1, 10), +(202, 'Moritz Weihnacht', 4, 12), +(204, 'Romyna Gurny', 1, 15), +(205, 'Anna Wilmschen', 7, 16), +(206, 'Emma Sprenger ', 1, 17), +(207, 'Jan Hövel', 2, 19), +(208, 'Annika Koch', 5, 20), +(209, 'Romyna Gruny', 1, 21), +(210, 'hendrik pierlo', 1, 23), +(211, 'Robin Heldt', 11, 24), +(212, 'Mara Spicker', 2, 25), +(213, 'Mara Spicker', 2, 26), +(214, 'Anna Feldmann', 11, 27), +(216, 'Manon Schroff', 10, 32), +(217, 'Frau Adams', 5, 33), +(218, 'Herr Schattenberg', 10, 35), +(219, 'Frau Grade', 1, 36), +(220, 'Herr Schattenberg', 9, 39), +(222, 'Herr Schattenberg', 2, 41), +(223, 'Herr Schattenberg', 2, 42), +(224, 'Christian pickard', 1, 1), +(226, 'romyna gurny', 1, 11), +(228, 'alina fünderich', 1, 14), +(232, 'joline gilles', 1, 23), +(233, 'ben schwarz', 8, 24), +(234, 'annika koch', 2, 25), +(235, 'Simon Bussmann', 1, 26), +(236, 'ben schwarz', 3, 28), +(237, 'romyna gurny', 2, 30), +(238, 'julius preußer', 2, 31), +(241, 'Herr Meschendörfer', 2, 39), +(243, 'Herr heining', 3, 41), +(245, 'Melina Kascha', 3, 1), +(251, 'Johanna ', 4, 12), +(253, 'Nico Lipinski', 10, 14), +(254, 'Katharina ', 1, 15), +(255, 'Delia', 3, 17), +(256, 'Hamza', 1, 18), +(257, 'Lilly Ventzke', 1, 19), +(258, 'Lilly Ventzke', 1, 20), +(259, 'Linnea ', 1, 21), +(261, 'Nicolas', 2, 23), +(262, 'Simon Bussmann', 3, 24), +(264, 'Noemi', 1, 26), +(267, 'Delia', 2, 32), +(269, 'Frau Schlossarek', 5, 34), +(270, 'Herr Niemeier', 11, 37), +(271, 'Frau Petrovic', 1, 38), +(272, 'Herr Klümper', 5, 39), +(274, 'Herr Nolte', 5, 42), +(275, 'Christian Beutel ', 2, 3), +(278, 'Delia Schmitz ', 6, 4), +(279, 'Jerome Laukamp ', 30, 6), +(280, 'Anessa ', 1, 17), +(281, 'Frau Skorwider ', 2, 33), +(282, 'Frau Romberg ', 1, 34), +(283, 'Frau Romberg ', 2, 36), +(284, 'Frau Romberg ', 7, 38), +(285, 'Frau Grade ', 1, 39), +(287, 'Frau Grade', 7, 41), +(288, 'Janni', 1, 1), +(290, 'Jerome ', 1, 3), +(297, 'Nico scholzen ', 2, 13), +(300, 'Emma sprenger', 1, 19), +(301, 'Antonia Eigemann ', 2, 20), +(302, 'Clemens Spoo ', 7, 21), +(304, 'Jan ', 2, 23), +(305, 'Clemens Spoo ', 1, 26), +(307, 'Antonia Eigemann ', 4, 30), +(309, 'Frau Reiss', 7, 33), +(320, 'Lana', 1, 3), +(321, 'Manon', 1, 5), +(324, 'Sören ', 1, 9), +(325, 'Sören ', 1, 12), +(328, 'Antonia ', 2, 15), +(331, 'Ben ', 1, 18), +(332, 'Mara Blanke ', 2, 20), +(333, 'Ben ', 2, 21), +(334, 'Helena Zeynep ', 1, 22), +(336, 'Julia Müller ', 2, 24), +(337, 'Laura König ', 3, 25), +(338, 'Delia ', 1, 26), +(339, 'Paula Hain ', 1, 27), +(340, 'Clemens ', 1, 28), +(341, 'Evelyn ', 1, 29), +(342, 'Anesa ', 3, 30), +(344, 'Lily Schmitdke', 5, 32), +(346, 'Evers ', 1, 36), +(348, 'Herr Weber ', 1, 38), +(350, 'Herr rennert Herr Watkins ', 1, 40), +(352, 'Herr Neumann', 2, 42), +(355, 'Greta und Lars', 2, 8), +(356, 'Greta', 1, 9), +(357, 'Niklas Klaffki', 2, 10), +(358, 'Simon Bussmann', 4, 11), +(359, 'Greta', 2, 20), +(361, 'Greta', 1, 28), +(362, 'Moritz W.', 1, 29), +(363, 'Greta', 1, 30), +(371, 'Burak Kulac', 6, 2), +(372, 'Marie Scheidung', 1, 3), +(373, 'Marie Scheidung', 4, 4), +(374, 'Felix Kirsten', 2, 5), +(375, 'Laurin Severith ', 1, 6), +(377, 'Amelie Laake ', 2, 19), +(378, 'Jan Schliekmann ', 1, 23), +(379, 'Milo', 1, 24), +(380, 'Jerome Laukamp', 6, 25), +(381, 'Anna Wilmschen', 1, 27), +(383, 'Ben Schwarz', 4, 31), +(384, 'Herr Kisters', 2, 33), +(385, 'Herr Kisters ', 4, 34), +(386, 'Frau Meyering und Frau Milde', 4, 40), +(387, 'Herr Koopmann', 4, 42), +(388, 'Alexander Kupillas', 1, 1), +(389, 'Alexander Neumann', 2, 2), +(393, 'Noelia', 1, 10), +(396, 'Manon Schroff', 4, 13), +(397, 'Alexander Neumann', 4, 14), +(398, 'Jerome Laukamp', 7, 16), +(400, 'Justus Bösken', 2, 18), +(401, 'Simon Bussmann', 15, 19), +(402, 'Moritz Weihnacht', 2, 21), +(403, 'Joline und Julia', 1, 22), +(404, 'Simon Bussmann', 4, 23), +(405, 'Simon Bußmann', 1, 25), +(409, 'Robin Heldt', 2, 31), +(410, 'Dilan', 1, 32), +(411, 'Herr Heining', 4, 35), +(413, 'Herr Rennert', 2, 41), +(414, 'Elsa', 2, 1), +(417, 'Leonie W.', 1, 10), +(419, 'Leon V.', 1, 13), +(420, 'Evelyn', 1, 14), +(422, 'Negar', 1, 16), +(423, 'Greta', 6, 17), +(425, 'Elsa', 1, 20), +(428, 'Karolina ', 1, 26), +(429, 'Jerome', 1, 27), +(430, 'Laura K.', 1, 28), +(431, 'Maya L.', 1, 30), +(433, 'Laura R.', 1, 32), +(434, 'Herr Mecklenburg', 1, 35), +(435, 'Frau Schlüter', 2, 36), +(436, 'Frau Schlüter', 6, 38), +(437, 'Frau Schlossarek', 2, 39), +(438, 'Frau Monreal', 1, 41), +(439, 'Herr Rennert', 3, 42), +(440, 'Isabell', 3, 12), +(442, 'Frau Meier ', 1, 33), +(443, 'Herr Rennert ', 4, 34), +(445, 'Frau Schroer ', 2, 38), +(446, 'Gerrit Schulz', 2, 1), +(447, 'Robin Heldt', 2, 2), +(448, 'Sven Mittmann', 7, 3), +(449, 'Laura König', 2, 5), +(451, 'Julia Lener ', 1, 9), +(452, 'Elsa', 1, 10), +(453, 'Dušanka Djukanovic', 1, 11), +(455, 'Laura Kurreck', 2, 13), +(457, 'Charlotte Schirmer', 1, 15), +(458, 'Luzi Weichert', 4, 17), +(460, 'Simon Berger', 2, 21), +(462, 'Lana Peric', 1, 23), +(463, 'Emma Sprenger', 3, 24), +(464, 'Sean McCormeck Silex', 2, 26), +(465, 'Jolan Gerritzen ', 26, 27), +(466, 'Jolan Gerritzen', 7, 28), +(467, 'Inge Delia Dorothea', 1, 29), +(468, 'Meter Fass', 2, 30), +(469, 'Clemens Spoo', 5, 31), +(470, 'Luzi Weichert', 4, 32), +(471, 'Herr Heße ', 2, 36), +(472, 'Frau Monreal ', 1, 38), +(473, 'Herr Heße', 3, 41), +(474, 'Herr Heße', 7, 42), +(475, 'Leonie Wallusch', 1, 1), +(477, 'Joline G.', 1, 20), +(478, 'Moritz Weihnacht', 1, 24), +(479, 'Johanna B.', 1, 25), +(480, 'Frau Schlossareck', 1, 33), +(483, 'Frau Meyer', 1, 38), +(484, 'Frau Klein', 3, 41), +(485, 'Nikika Lauff', 1, 1), +(486, 'Lavinia Schmitz', 1, 2), +(487, 'Lavinia Schmitz', 1, 4), +(488, 'Ioannis Börner', 1, 5), +(489, 'Moritz Weihnacht', 1, 6), +(490, 'Lavinia Schmitz ', 2, 9), +(491, 'Timo Otto', 1, 11), +(492, 'Lavinia Schmitz ', 5, 12), +(493, 'Timo Otto ', 2, 13), +(496, 'Lavinia Schmitz ', 2, 19), +(497, 'Lavinia Schmitz ', 1, 28), +(501, 'Simon Bussmann', 2, 2), +(502, 'Meret Fass', 7, 3), +(503, 'Burak', 1, 4), +(504, 'Delia ', 1, 5), +(506, 'Julia ', 1, 10), +(507, 'Marie Pütter', 1, 11), +(508, 'Greta ', 2, 12), +(510, 'Julia Müller ', 3, 15), +(511, 'Charlotta tückmantel ', 1, 20), +(512, 'Burak', 1, 21), +(513, 'Mery, Malin, Dilan', 1, 22), +(514, 'Moritz liebisch ', 5, 23), +(515, 'Greta bentgens ', 7, 25), +(516, 'Jennifer ', 1, 26), +(517, 'Herr voss', 1, 35), +(518, 'Frau Reiss', 13, 38), +(519, 'Herr heße ', 6, 39), +(520, 'Liesegang, Kopmann ', 1, 40), +(521, 'Herr Schirra ', 6, 41), +(522, 'Cedric', 3, 1), +(523, 'Amelie Laake', 4, 3), +(525, 'Moritz Liebisch', 6, 5), +(526, 'Justin Kauschke', 4, 7), +(528, 'Justin Kauschke', 6, 10), +(529, 'Amelie Laake', 1, 11), +(531, 'Lena Schlayer', 2, 13), +(533, 'Ben Schwarz', 3, 15), +(535, 'Laura Rüttershoff', 2, 18), +(536, 'Luise Lu', 5, 21), +(537, 'Laura K., Johanna B., Delia S.', 1, 22), +(538, 'Dilan Öztürk', 6, 24), +(539, 'Katharina Schmitz', 3, 26), +(541, 'Katharina Schmitz', 2, 28), +(542, 'Moritz Liebisch', 16, 29), +(543, 'Carlotta Tückmantel', 3, 30), +(544, 'Jerome Laukamp', 1, 31), +(545, 'Greta Bentgens', 3, 32), +(546, 'Herr Koopmann', 4, 39), +(548, 'Frau Haustein', 1, 41), +(549, 'Frau Haustein', 1, 42), +(550, 'Romyna ', 1, 1), +(551, 'Christian Beutel ', 4, 4), +(552, 'Marie Scheidung ', 1, 9), +(555, 'Annika koch ', 1, 13), +(557, 'Christian Beutel ', 4, 18), +(558, 'Jerome ', 1, 19), +(559, 'Christian Beutel ', 1, 20), +(560, 'Paul Nowack', 1, 21), +(561, 'Gabriel,Tim,Christian Beutel', 1, 22), +(562, 'Christian Beutel ', 3, 25), +(564, 'Tim Krichel', 8, 27), +(565, 'Tim Krichel', 3, 28), +(567, 'Tim Krichel ', 3, 31), +(568, 'Gabriel Schacht ', 1, 32), +(571, 'Herr Frings', 2, 36), +(574, 'Herr Buchmüller ', 2, 42), +(575, 'Lewis Lehner', 2, 1), +(576, 'Simon H. ', 1, 3), +(578, 'Simon H.', 1, 6), +(580, 'Laura R.', 1, 9), +(582, 'Laura R.', 1, 12), +(586, 'Elsa', 2, 16), +(588, 'Carlotta', 3, 20), +(589, 'Maike', 2, 21), +(590, 'Lena und Laura ', 1, 22), +(593, 'Philip', 1, 26), +(595, 'Laura R.', 2, 28), +(599, 'Fr. Meier ', 1, 33), +(608, 'Mara', 1, 19), +(614, 'Eray', 2, 5), +(618, 'Zeynep', 1, 13), +(620, 'Eray', 1, 18), +(621, 'Eray', 1, 20), +(622, 'Alessio', 1, 21), +(623, 'Jerome Moritz ', 8, 22), +(624, 'Helena', 1, 26), +(625, 'Eray', 1, 31), +(626, 'Frau Kahlert', 3, 33), +(627, 'Stahlmann', 1, 34), +(632, 'Rahrbach sander', 1, 39), +(637, 'Daria', 1, 2), +(639, 'Marie Scheidung ', 1, 5), +(641, 'Luzi', 3, 9), +(642, 'Lilly Schmidtke ', 1, 11), +(644, 'Melinda ', 2, 15), +(645, 'Leonie Wallusch ', 4, 18), +(646, 'Luzi Weichert ', 1, 19), +(647, 'Lilly Schmidtke ', 1, 20), +(649, 'Anna und Lilly ', 2, 22), +(650, 'Anna Wilmschen', 1, 23), +(652, 'Maximilian Sommer ', 1, 27), +(653, 'Lilly Schmidtke ', 1, 28), +(656, 'Herr Voß', 3, 33), +(659, 'Rennert und Schubert ', 2, 40), +(662, 'Jan Hövel', 1, 1), +(663, 'Manon Schroff', 2, 2), +(664, 'Isabell', 1, 3), +(665, 'Ben Schwarz', 1, 4), +(667, 'Felix Kirsten ', 1, 9), +(668, 'Moritz Weihnacht', 1, 10), +(672, 'Jerome Laukamp', 16, 15), +(676, 'Simon Bussmann, Manon Schroff, Evelyn', 1, 19), +(677, 'Lavinia, Manon ', 1, 20), +(679, 'Katha und Linnea', 1, 22), +(682, 'Nico Schulzen', 1, 25), +(685, 'Felix Kirsten ', 2, 28), +(687, 'Lavinia', 1, 30), +(697, 'Herr Herrmann', 3, 41), +(700, 'Greta', 1, 2), +(701, 'Lena Görich', 1, 4), +(703, 'Evelyn Hofmann', 1, 11), +(704, 'Anesa Cavcic', 3, 13), +(705, 'Amelie David', 1, 15), +(706, 'Antonia Eigemann', 5, 17), +(708, 'Luise Lu', 1, 20), +(709, 'Amelie David', 1, 21), +(710, 'Lena Görich + Yara Müser', 1, 22), +(712, 'Lena Schleyer', 1, 26), +(713, 'Luzi Weichert', 1, 28), +(714, 'Marie Scheidung', 6, 30), +(715, 'Victor Kock Sanchez', 1, 31), +(716, 'Melinda Hirschelmann', 10, 32), +(722, 'Emma Sprenger', 1, 13), +(723, 'Kira', 3, 15), +(724, 'Maya', 1, 16), +(726, 'Delia', 1, 19), +(727, 'Joline', 1, 20), +(728, 'Ben und Nils', 1, 22), +(729, 'Simon Stavroulakis', 1, 26), +(731, 'Leon Borgerding', 2, 31), +(732, 'Frau Dr. Kleine', 1, 34), +(733, 'Herr Heisig-Pitzen', 7, 35), +(734, 'Herr Klag', 4, 41), +(735, 'Yarkin', 1, 1), +(736, 'Dusanka', 1, 5), +(737, 'Shaun', 1, 11), +(738, 'Annika Lieblang', 1, 12), +(740, 'Lewis Lehner', 1, 15), +(741, 'Laura R, Lena S', 1, 22), +(743, 'Luise Lu', 2, 26), +(744, 'Laura Rüttershoff', 1, 30), +(745, 'Frau Hennemann', 2, 38), +(747, 'Antonia', 2, 2), +(748, 'Burak', 1, 3), +(749, 'Luise', 1, 5), +(750, 'Dušanka ', 1, 9), +(751, 'Jan', 1, 12), +(752, 'Jan Hövel', 2, 15), +(753, 'Burak', 9, 18), +(754, 'Jennifer ', 1, 20), +(755, 'Jennifer', 1, 21), +(756, 'Jennifer und Pia', 1, 22), +(758, 'Carlotta', 1, 26), +(760, 'Philipp', 1, 31), +(761, 'Petrovic', 2, 33), +(762, 'Tenbusch', 1, 34), +(766, 'Tenbusch und Rennert', 1, 40), +(767, 'Frau Tenbusch ', 1, 42), +(768, 'Lili Schweitzer', 4, 1), +(769, 'Justin Kauschke', 6, 2), +(770, 'Justus Bösken', 8, 5), +(771, 'Burak Kulac', 35, 6), +(773, 'Jerome Laukamp', 10, 10), +(774, 'Leonie Wallusch', 4, 11), +(776, 'Jan Schliekmann', 1, 14), +(777, 'Justin Kauschke', 3, 15), +(778, 'Julius Preußer', 2, 16), +(779, 'Manon Schroff', 12, 17), +(780, 'Antonia Eigemann', 4, 19), +(781, 'Emma Sprenger', 1, 20), +(782, 'Katharina Schmitz Linnea Paulukuhn', 6, 22), +(783, 'Maya Springstein', 1, 23), +(784, 'Delia Schmitz', 9, 25), +(785, 'Laurin Severith', 4, 26), +(786, 'Nico Scholzen', 2, 31), +(787, 'Herr Heisig-Pitzen', 6, 33), +(788, 'Herr Heisig', 1, 36), +(789, 'Herr Petering', 2, 39), +(791, 'Herr Petering', 3, 41), +(792, 'Frau Milde', 2, 42), +(793, 'Sven Mittmann', 3, 2), +(794, 'Delia Schmitz ', 9, 12), +(795, 'Nicolas Cunha', 8, 21), +(796, 'Luis Erpenbach', 1, 24), +(797, 'Nicolas Cunha', 7, 25), +(798, 'Herr Liesegang ', 5, 34), +(799, 'Herr Niemeier', 1, 35), +(800, 'Herr Bollhorst', 1, 39), +(802, 'Leonie Wallusch', 3, 2), +(803, 'Amelie Laake', 2, 4), +(804, 'Isabelle Schneider + Moritz Weihnacht', 7, 8), +(808, 'Laura Rüttershoff', 3, 15), +(809, 'Christian Pickart', 2, 16), +(810, 'Leonie Wallusch', 2, 19), +(811, 'Anesa', 2, 20), +(812, 'Simon Bussmann', 3, 21), +(814, 'Laura Kurreck', 2, 24), +(815, 'Laura Rüttershoff', 2, 25), +(816, 'Niklas Gröger', 2, 26), +(817, 'Christian Beutel', 6, 31), +(819, 'Herr Neunzig', 3, 36), +(820, 'Heining, Liesegang, Koopmann', 2, 40), +(821, 'Herr Meschendörfer ', 3, 42), +(822, 'Tim Müller ', 1, 1), +(823, 'Hendrik Herffs', 4, 3), +(825, 'Chiara', 1, 13), +(826, 'Simon Bussmann', 2, 14), +(829, 'Chiara ', 2, 20), +(830, 'Ben Maas', 2, 23), +(831, 'Leon Borgerding ', 4, 24), +(832, 'Simon Berger ', 1, 25), +(833, 'Tim Zentzis ', 1, 26), +(837, 'Max So.', 1, 32), +(838, 'Hr. Klag', 1, 33), +(843, 'Herr Nolte ', 1, 39), +(845, 'Frau Meyering', 1, 41), +(846, 'Frau Grade ', 2, 42), +(847, 'Eray Arici', 1, 1), +(849, 'Nico Hahn', 7, 3), +(850, 'Katharina Schmitz', 1, 4), +(851, 'Burak Kulac', 12, 5), +(852, 'Eray Arici', 2, 7), +(854, 'Christian Pickardt', 1, 10), +(855, 'Sean McCormick-Silex', 7, 11), +(856, 'Mara Blanke', 1, 13), +(857, 'Luca Urbanczyk', 1, 14), +(858, 'Luca Urbanczyk', 1, 17), +(859, 'Nikita Lauf', 1, 19), +(860, 'Christian Pickardt', 1, 20), +(861, 'Tim Müller', 1, 23), +(862, 'Justus Bösken', 4, 24), +(863, 'Christian Pickardt', 1, 26), +(864, 'Christian Pickardt', 2, 29), +(865, 'Christian Pickardt', 1, 32), +(866, 'Frau Gehlen', 3, 33), +(867, 'Herr Watkins', 6, 35), +(868, 'Frau Gehlen', 4, 38), +(869, 'Frau Gehlen', 1, 39), +(871, 'Luca Urbancyzk', 1, 30), +(872, 'Hamza Hasoumi', 1, 2), +(873, 'Sean McCormick-Silex', 1, 4), +(874, 'Sean McCormick-Silex', 2, 9), +(875, 'Nico Lipinski', 1, 11), +(876, 'Lukas Corell', 4, 12), +(877, 'Tim Müller', 2, 14), +(878, 'Nouel Verberkt', 3, 15), +(879, 'Christian Pickardt', 6, 23), +(880, 'Hamza Hasoumi', 1, 25), +(881, 'Christian Pickardt', 1, 28), +(882, 'Christian Pickardt', 2, 31), +(883, 'Herr Schirra', 2, 35), +(884, 'Herr Kisters', 1, 42), +(886, 'Moritz Weihnacht', 3, 1), +(887, 'Milo Lehnen', 1, 2), +(888, 'Nico Lipinski', 2, 3), +(892, 'Isabelle Schneider', 2, 9), +(893, 'Gerrit Schulz', 1, 10), +(894, 'Sven Mittmann', 1, 11), +(896, 'Simon Bußmann', 1, 13), +(898, 'Luca van den Boom', 1, 19), +(900, 'Leone Wittman, Lilly Ventzke', 1, 22), +(902, 'Leony Wallusch', 1, 24), +(903, 'Luise Lu', 2, 25), +(904, 'Gerrit Schulz', 1, 26), +(905, 'Yarkin', 1, 29), +(906, 'Herr Watkins', 1, 33), +(907, 'Herr Verhoeven', 1, 34), +(908, 'Herr Otto', 1, 35), +(910, 'Frau Sokolowski ', 5, 37), +(911, 'Frau Stolte', 1, 38), +(912, 'Herr Watkins', 1, 39), +(915, 'Frau Sokolowski ', 2, 42), +(916, 'Robin', 2, 1), +(921, 'Phillip Heckhoff', 7, 14), +(922, 'Jolan', 2, 15), +(923, 'Aysegül', 1, 16), +(925, 'Paula May', 1, 19), +(926, 'Dusanka', 2, 20), +(928, 'Lavinia', 2, 29), +(929, 'Noemi ', 2, 30), +(933, 'Frau Neumann & Frau Petrovic & Frau Meier', 1, 40), +(938, 'Patrick preuß', 9, 10), +(940, 'Dilan', 1, 19), +(945, 'Frau Tenbusch', 1, 41), +(949, 'Sven Mittmann ', 1, 6), +(951, 'Yarkin', 1, 14), +(952, 'Phillip heckhoff', 1, 15), +(953, 'Lavinia ', 1, 26), +(954, 'Justus', 1, 28), +(957, 'Herr Dierks ', 3, 42), +(958, 'Justus Bösken', 5, 2), +(959, 'Antonia Eigemann', 1, 3), +(960, 'Justus Bösken', 1, 6), +(962, 'Mara Spicker', 1, 9), +(963, 'Justus Bösken', 1, 11), +(965, 'Emma', 1, 20), +(968, 'Lilly Ventzke', 2, 30), +(970, 'Herr Koopmann', 6, 34), +(971, 'Frau Sokolwski', 1, 35), +(973, 'Herr Verhoeven', 2, 41), +(976, 'Zeynep', 1, 9), +(977, 'Zeynep', 1, 11), +(978, 'Ben Schwarz', 1, 14), +(979, 'Mina Ercan', 1, 16), +(980, 'Lorena ', 1, 19), +(982, 'Malo und Philipp', 1, 22), +(983, 'Julius Preußer ', 4, 23), +(984, 'Julius Preußer ', 4, 24), +(985, 'Zeynep', 1, 25), +(987, 'Leon Viktora', 1, 27), +(988, 'Nico Scholzen ', 1, 28), +(989, 'Frau Grade', 4, 35), +(991, 'Herr Petering', 2, 42), +(992, 'Simon Bussmann', 4, 1), +(993, 'Mery Stern', 1, 3), +(995, 'nein', 1, 7), +(996, 'Mery Stern + Taycan Deniz Arslan', 1, 8), +(997, 'Mathieu Frederick Müller', 1, 9), +(1003, 'Lucas Corell', 1, 18), +(1010, 'Umut Patir ', 2, 27), +(1011, 'Taycan Deniz Arslan', 1, 30), +(1012, 'Mery Stern ', 1, 31), +(1013, 'Frau Voss ', 1, 33), +(1015, 'romberg ', 1, 39), +(1016, 'Herr Rücker', 3, 42), +(1017, 'Malo Soulier', 1, 3), +(1018, 'Zeynep Efe', 2, 4), +(1019, 'Knacki', 1, 7), +(1020, 'Leon Viktora + Luise Lu', 5, 8), +(1021, 'Nicolas Cunha', 2, 9), +(1022, 'Burak Kulac', 13, 11), +(1023, 'Burak Kulac', 3, 13), +(1024, 'Patrick Preuß', 5, 15), +(1026, 'Taycan Arslan', 2, 17), +(1027, 'Lukas Corell', 3, 18), +(1029, 'Malo Soulier', 3, 23), +(1030, 'Malo Soulier', 2, 24), +(1031, 'Nicolas Cunha', 2, 28), +(1032, 'Zeynep Efe', 7, 30), +(1033, 'Malo Soulier', 3, 31), +(1034, 'Frau Dr Kleine', 2, 33), +(1035, 'Frau Skorwider', 2, 34), +(1036, 'Frau Haustein', 9, 38), +(1038, 'Laura Rüttershof', 3, 5), +(1040, 'Laura Rüttershof', 1, 15), +(1041, 'Noelia', 1, 16), +(1042, 'Lena Schlayer', 1, 20), +(1043, 'Frau Hennemann', 1, 33), +(1044, 'Frau Hennemann', 1, 34), +(1045, 'Lavinia', 1, 1), +(1047, 'Moritz w', 1, 7), +(1049, 'Julian ', 1, 9), +(1052, 'Ben schwarz', 1, 13), +(1054, 'Eray', 1, 15), +(1056, 'Tim m', 1, 18), +(1057, 'Nicolas', 1, 19), +(1058, 'Gerrit', 1, 21), +(1059, 'Simon b / philip', 1, 22), +(1063, 'Simon Bussmann', 3, 28), +(1066, 'Romberg', 1, 33), +(1067, 'Herr Voß', 1, 34), +(1068, 'Sokolowski', 1, 35), +(1074, 'Herr Liesegang ', 3, 42), +(1075, 'Moritz liebisch ', 5, 2), +(1077, 'Jerome laukamp', 7, 5), +(1078, 'Yarkin kulaksis', 1, 6), +(1079, 'Trunk', 1, 9), +(1080, 'Melina ', 1, 10), +(1081, 'Jerome laukamp ', 13, 11), +(1083, 'Yarkin kulacksiz ', 2, 15), +(1084, 'Moritz Weihnacht ', 1, 18), +(1085, 'Yarkin kulacksiz ', 1, 19), +(1086, 'Lena göhrlich ', 1, 20), +(1087, 'Jerome laukamp ', 2, 21), +(1090, 'Paula haub ', 2, 27), +(1091, 'Lena göhrlich ', 1, 30), +(1092, 'Annika Lieblanng ', 1, 32), +(1098, 'Herr Neunzig ', 1, 42), +(1099, 'Manon Schroff ', 5, 3), +(1100, 'Niemand ', 1, 6), +(1101, 'Lorena und Jonas ', 3, 8), +(1102, 'Yarkin', 1, 12), +(1104, 'Justin', 1, 14), +(1105, 'Julius', 1, 15), +(1107, 'Mara Spicker', 1, 21), +(1108, 'Aysegül', 2, 23), +(1109, 'Aysegül', 1, 24), +(1110, 'Jan Hövel', 1, 25), +(1111, 'Eray', 1, 26), +(1112, 'Jan Schlieckmann', 2, 28), +(1114, 'Helena Neukirch ', 1, 32), +(1115, 'Rahrbach Sander ', 1, 33), +(1116, 'Frau Tenbusch ', 1, 34), +(1117, 'Frau Haustein', 1, 35), +(1119, 'Herr Niemeier', 1, 41), +(1120, 'Simon Stavroulakis', 2, 1), +(1121, 'Sean McCormick-Silex', 1, 3), +(1122, 'Lukas Corell', 1, 4), +(1123, 'Christian Beutel + Romyna Gurny', 13, 8), +(1124, 'Cedric Damerow', 3, 9), +(1125, 'Cedric Damerow', 1, 11), +(1126, 'Marwa Nafouti', 1, 16), +(1127, 'Joline Hackstein', 1, 20), +(1129, 'Nico Lipinski, Jan Strohhäusl, Nouel Verberkt', 1, 22), +(1130, 'Nouel Verberkt', 4, 23), +(1132, 'Burak Kulac', 1, 25), +(1133, 'Burak Kulac', 1, 26), +(1134, 'Anesa Cavcic', 1, 27), +(1135, 'Christian Beutel', 1, 28), +(1136, 'Evelyn Hofmann', 7, 32), +(1137, 'Herr Petering', 4, 34), +(1138, 'Herr Buchmüller', 1, 35), +(1139, 'Frau Rahrbach-Sander', 4, 36), +(1141, 'Herr Buchmüller', 2, 41), +(1142, 'Herr Klümper', 1, 42), +(1143, 'Carlotta Tückmantel', 1, 3), +(1144, 'Lavinia', 3, 32), +(1145, 'Schatenberg', 1, 36), +(1147, 'Laurin Severin', 1, 1), +(1148, 'Lorena Garau', 1, 3), +(1151, 'Lorena garau ', 1, 18), +(1152, 'Lorena garau ', 1, 19), +(1153, 'Zeynep efe', 2, 20), +(1154, 'Lorena und Julius ', 1, 22), +(1155, 'Manon schroff ', 1, 27), +(1156, 'Delia ', 1, 29), +(1157, 'Laurin Severin ', 2, 31), +(1158, 'Frau Soko', 1, 39), +(1161, 'Herr Kuster ', 1, 42), +(1166, 'Moritz Liebisch und antonia Eigemann', 1, 8), +(1167, 'Johanna böckmann ', 3, 9), +(1168, 'Jan schlieckmann ', 2, 10), +(1170, 'Nico lipinski ', 1, 12), +(1171, 'Helena neukirch ', 4, 13), +(1172, 'Sean mc cartney sillex ', 6, 18), +(1176, 'Anna feldmann ', 2, 28), +(1178, 'Frau Haustein ', 5, 36), +(1179, 'Herr koopmann ', 2, 38), +(1180, 'Frau Dr. Kleine ', 1, 39), +(1183, 'Tim und Lilly', 1, 8), +(1184, 'Yarkin Kulaksis', 5, 10), +(1186, 'Lili Schweitzer ', 1, 13), +(1187, 'Tim Krichel ', 1, 15), +(1188, 'Lili Schweitzer ', 1, 19), +(1189, 'Lili Schweitzer ', 1, 20), +(1191, 'Alexander Kupillas ', 2, 26), +(1192, 'Lili Schweitzer ', 2, 30), +(1193, 'Moritz Liebisch ', 1, 31), +(1194, 'Herr Kuster ', 1, 39), +(1196, 'Herr Watkins ', 4, 41), +(1197, 'Frau Reiss', 1, 42), +(1198, 'Hendrik Pierlo', 1, 1), +(1199, 'Julia Müller', 1, 4), +(1200, 'Ben Schwarz', 1, 6), +(1201, 'Jolan Gerritzen und Paula May', 2, 8), +(1202, 'Gerrit Schulz', 1, 9), +(1203, 'Moritz Liebisch', 1, 11), +(1204, 'Matthias Karl', 1, 12), +(1205, 'Nouel Verberkt', 1, 14), +(1206, 'Lana Peric', 1, 17), +(1207, 'Luis Erpenbach', 5, 18), +(1208, 'Manon Schroff', 1, 20), +(1209, 'Oliver Palinsky', 1, 21), +(1210, 'Anh Trung Vo', 1, 26), +(1211, 'Luis Erpenbach', 4, 28), +(1212, 'Yara Müser', 2, 30), +(1213, 'Nico Lipinski', 1, 31), +(1215, 'Herr Heße', 1, 34), +(1216, 'Herr Weber', 1, 35), +(1217, 'Herr Liesegang', 1, 39), +(1219, 'Frau Evers', 1, 41), +(1220, 'Luca vdb ', 1, 1), +(1222, 'Evelyn ', 2, 12), +(1224, 'Felix Kirsten ', 1, 15), +(1225, 'Noemi ', 1, 20), +(1227, 'Justin Kauschke ', 1, 26), +(1229, 'Frau Müller ', 1, 36), +(1231, 'Nico Lipinski', 1, 1), +(1232, 'Isabelle Schneider ', 1, 4), +(1234, 'Hendrik Herffs', 2, 7), +(1238, 'Laura Rittershoff', 1, 13), +(1239, 'Justus Bösken', 1, 14), +(1241, 'Alina', 1, 16), +(1242, 'Viktor', 1, 18), +(1243, 'Sven/Moritz', 1, 22), +(1244, 'Sven Mittmann ', 1, 23), +(1245, 'Isabelle Schneider ', 1, 25), +(1246, 'Justus Bösken', 2, 26), +(1247, 'Moritz Liebisch', 1, 27), +(1248, 'Justus Bösken', 5, 29), +(1249, 'Sven Mittmann ', 1, 31), +(1250, 'Antonia Eigemann', 1, 32), +(1251, 'Herr Krauskopf', 2, 33), +(1252, 'Herr Liesegang ', 1, 35), +(1253, 'Frau Rahrbach-Sander', 2, 38), +(1255, 'Herr Stockamp', 1, 41), +(1257, 'Julia Müller', 3, 3), +(1259, 'Leonie Walusch', 4, 9), +(1260, 'Julius Preußer', 3, 13), +(1261, 'Lewis Lehner', 1, 14), +(1262, 'Meret', 1, 17), +(1264, 'Simon Hormes', 1, 19), +(1265, 'Hnedrik Herffs', 1, 20), +(1266, 'Lewis', 1, 23), +(1267, 'Laura Kurreck', 1, 25), +(1269, 'Burak Kulac', 2, 29), +(1271, 'Simon Hormes', 2, 31), +(1272, 'Maike', 1, 32), +(1273, 'Frau Müller', 1, 33), +(1274, 'Schirra', 1, 34), +(1278, 'Schirra', 1, 39), +(1280, 'Herr Koopmann', 2, 41), +(1283, 'Ioannis Börner', 1, 14), +(1284, 'Justus Bösken', 4, 15), +(1286, 'Paula Haub', 1, 19), +(1287, 'Hendrik Herffs', 2, 20), +(1289, 'Laurin Severith', 3, 25), +(1290, 'Lewis Lehner', 2, 26), +(1291, 'Luise Lu', 2, 28), +(1293, 'Paula Haub', 3, 32), +(1294, 'Frau Hausstein', 5, 33), +(1297, 'Frau Skorwider', 3, 37), +(1299, 'Philip Heckhoff', 1, 5), +(1301, 'Malo Soulier ', 1, 13), +(1302, 'Julia Müller ', 1, 19), +(1304, 'Trung Vo ', 1, 28), +(1305, 'Herr Koopmann', 1, 33), +(1306, 'Frau Richter', 1, 34), +(1307, 'Leon Viktora', 1, 3), +(1308, 'Laura Kureck', 1, 9), +(1309, 'Katharina Schmitz', 1, 12), +(1310, 'Ioannis Börner', 1, 18), +(1311, 'Chiara Welter', 5, 19), +(1312, 'Hendrik Herrfs', 1, 20), +(1313, 'Malo Soulier Simon Hormes', 1, 22), +(1315, 'Tim Krichel', 2, 25), +(1316, 'Mara Blanke', 1, 26), +(1317, 'Herr Neunzig', 1, 38), +(1318, 'Frau Reiss', 1, 39), +(1319, 'Herr Renert Herr Mecklenburg', 1, 40), +(1320, 'Herr Mecklenburg', 1, 42), +(1321, 'Patrick', 2, 1), +(1327, 'Hendrik', 1, 14), +(1329, 'Tim', 1, 17), +(1330, 'Lewis', 1, 24), +(1331, 'Gabriel ', 1, 3), +(1334, 'Katharina ', 1, 13), +(1335, 'Laurin', 1, 20), +(1339, 'Manon ', 1, 30), +(1340, 'Manon', 1, 31), +(1342, 'Herr Krauskopf ', 1, 39), +(1344, 'Cedric Damerow', 2, 21), +(1346, 'Fr. Evers und Hr. Neumann', 3, 40), +(1347, 'Herr Klümper', 1, 41), +(1348, 'Malin Kalnins', 2, 1), +(1349, 'Yarkin Kulaksiz', 4, 2), +(1350, 'Simon Busmann', 1, 4), +(1351, 'Sean', 1, 5), +(1354, 'Anna Siewert', 1, 11), +(1355, 'Sean', 1, 12), +(1356, 'Ben Schwarz', 1, 16), +(1357, 'Delia Schmitz', 4, 18), +(1358, 'Moritz Weihnacht', 1, 19), +(1359, 'Julia Müller', 2, 21), +(1361, 'Allessio ', 1, 23), +(1363, 'Anna Siewert', 1, 30), +(1365, 'Herr Petering', 2, 35), +(1366, 'Frau Tenbusch', 1, 38), +(1368, 'Herr Verhoeven', 2, 42), +(1370, 'Romyna ', 1, 3), +(1371, 'Noemi ', 1, 4), +(1374, 'Greta ', 1, 13), +(1375, 'Nicolas ', 1, 14), +(1377, 'Amelie Laake ', 3, 17), +(1378, 'Burak ', 1, 19), +(1379, 'Simon Hormes', 1, 20), +(1380, 'Marie Scheidung ', 1, 21), +(1381, 'Delia und Greta ', 1, 22), +(1384, 'Nicolas ', 1, 26), +(1385, 'Marie Scheidung ', 1, 27), +(1386, 'Leon Viktora ', 1, 29), +(1389, 'Mathieu ', 1, 32), +(1390, 'Herr Klümper ', 1, 35), +(1395, 'Leonie Wallusch', 1, 12), +(1400, 'Lewis Lehner', 1, 3), +(1401, 'Leon Viktora', 1, 7), +(1402, 'Lukas Corell', 3, 9), +(1403, 'Justus Bösken', 2, 10), +(1404, 'Nicolas Cunha', 2, 12), +(1405, 'Sean McCormick Silex', 2, 13), +(1406, 'Malo Soulier', 3, 16), +(1407, 'Lavinia Schmitz', 3, 17), +(1408, 'Luise Lu', 1, 19), +(1409, 'Julian Sievers', 1, 25), +(1410, 'Tim Müller', 1, 26), +(1411, 'Lukas Corell', 1, 28), +(1412, 'Nicolas Cunha', 1, 32), +(1413, 'Herr Herrmann', 1, 36), +(1414, 'Herr Klümper', 2, 38), +(1415, 'Herr Heisig', 1, 41), +(1416, 'Leon Borgerding', 3, 1), +(1417, 'Leon Viktora', 2, 2), +(1420, 'Felix Kirsten', 1, 14), +(1422, 'Julia Müller', 2, 23), +(1423, 'Philipp Nothers', 1, 25), +(1424, 'Malin Kalnins', 1, 26), +(1425, 'Amelie Laake', 2, 27), +(1428, 'Chiara', 1, 32), +(1429, 'Herr Gerhardy', 1, 33), +(1430, 'Herr Gerhardy', 1, 34), +(1431, 'Frau Adams', 4, 36), +(1434, 'Simon Bussmann', 2, 3), +(1435, 'Cristian Beutel', 1, 5), +(1437, 'Hamsa', 1, 9), +(1438, 'Luis Erpenbach', 1, 13), +(1439, 'Lukas Boy', 1, 14), +(1440, 'Simon Bussmann', 2, 16), +(1441, 'Timo Kohlmann', 2, 21), +(1443, 'Antonia', 1, 25), +(1445, 'Herr Klümper', 2, 33), +(1446, 'Herr Rennert', 2, 35), +(1447, 'Aaron Glos', 1, 1), +(1448, 'Jolan Gerritzen', 2, 2), +(1449, 'Greta Bentgens', 1, 4), +(1450, 'Jolan Gerritzen', 2, 5), +(1451, 'Leon Borgerding', 1, 6), +(1453, 'Simon Bussmann', 3, 9), +(1454, 'Nikita Lauff', 3, 10), +(1455, 'Christian Beutel', 1, 11), +(1456, 'Justus Bösken', 5, 12), +(1457, 'Leon Borgerding', 1, 13), +(1459, 'Leony Wittmann', 1, 15), +(1460, 'Simon Bussmann', 3, 18), +(1461, 'Victor Kock Sanchez& Timo Otto', 1, 22), +(1462, 'Victor Kock Sanchez', 1, 23), +(1463, 'Amelie David', 1, 30), +(1464, 'Lars Hogardt', 1, 31), +(1465, 'Frau Adams', 1, 38), +(1467, 'Herr Frings', 1, 41), +(1468, 'Mara und Timo', 3, 8), +(1469, 'Luzi Weichert ', 2, 12), +(1470, 'Anna Feldmann ', 1, 13), +(1472, 'Anna Feldmann ', 1, 18), +(1473, 'Helena Neukirch', 2, 19), +(1476, 'Herrmann ', 1, 35), +(1477, 'Watkins ', 1, 36), +(1479, 'Pakenius ', 1, 38), +(1481, 'Herr Watkins', 1, 42), +(1482, 'Sean Silex', 2, 1), +(1484, 'Meret Faß', 1, 5), +(1485, 'Yarkin Kulaksiz', 6, 7), +(1486, 'Marie Scheidung und Niko Scholzen', 22, 8), +(1487, 'Luca Urbaknczy', 1, 18), +(1488, 'Leony Wittmann', 1, 19), +(1489, 'Malin Kalnins', 1, 20), +(1491, 'Laura Rüttershoff und Calotta Tückmantel', 1, 22), +(1492, 'Justin Kauschke', 1, 23), +(1493, 'Nico Lipinski', 1, 26), +(1494, 'Malin Kalnins', 1, 30), +(1495, 'Jan Hövel', 1, 31), +(1496, 'Herr Weber', 1, 33), +(1497, 'Herr watkins', 1, 34), +(1498, 'Herr Buchmüller', 1, 39), +(1507, 'justin k', 1, 20), +(1509, 'kamil', 1, 27), +(1510, 'yarkin k', 1, 31), +(1512, 'Herr Schirra', 4, 42), +(1513, 'Justin K', 1, 1), +(1514, 'Moritz L', 1, 3), +(1515, 'Gerrit S', 1, 4), +(1519, 'Niklas Klaffki', 1, 11), +(1520, 'Paul Nowack', 1, 12), +(1522, 'Laurin S', 1, 14), +(1524, 'Manon S', 1, 19), +(1525, 'Lena G', 1, 20), +(1528, 'Sean M', 1, 25), +(1529, 'Lilly V', 1, 26), +(1530, 'Noemi M', 1, 27), +(1531, 'Johanna B ', 1, 28), +(1536, 'Herr Klag ', 1, 35), +(1537, 'Frau Klein ', 1, 37), +(1538, 'Frau Richter', 1, 38), +(1542, 'Justin kauschke ', 1, 5), +(1543, 'Nico Scholzen', 1, 9), +(1544, 'Tim krichel ', 1, 12), +(1545, 'Patrick', 2, 14), +(1548, 'Justin', 1, 19), +(1549, 'Tim krichel', 1, 23), +(1551, 'Leon b ', 1, 26), +(1553, 'Luise', 1, 30), +(1555, 'Schlüter', 1, 33), +(1559, 'Maya Springstein', 2, 3), +(1563, 'Leonie Wallusch', 1, 16), +(1566, 'Finia', 1, 20), +(1567, 'Leon V', 1, 23), +(1568, 'Ben Maas', 1, 27), +(1569, 'Cedric D.', 1, 28), +(1570, 'Finia', 1, 30), +(1571, 'Leon Viktora', 1, 31), +(1574, 'Mery Stern', 1, 1), +(1575, 'Dilan Öztürk', 1, 2), +(1577, 'Luis Erpenbach', 1, 4), +(1578, 'Dilan ', 1, 7), +(1582, 'Jennifer', 1, 13), +(1583, 'Lilly Schmidtke', 1, 17), +(1584, 'Annika Koch', 1, 18), +(1585, 'Sophie Osterloh', 1, 19), +(1586, 'Dilan Ö und Malin K', 1, 22), +(1587, 'Mery Stern', 2, 23), +(1589, 'Isabelle', 1, 26), +(1591, 'Anna Wilmschen', 1, 30), +(1593, 'Herr Pakenius', 2, 39), +(1594, 'Victor Schroers', 1, 1), +(1596, 'Jolan Gerritzen', 1, 3), +(1597, 'Simon Berger', 1, 9), +(1598, 'Simon Berger', 1, 12), +(1599, 'Jolan Gerritzen', 2, 18), +(1602, 'Burak', 2, 2), +(1604, 'Alexander Pinske', 2, 7), +(1605, 'Timo Kohlmann-Mara Spicker', 2, 8), +(1606, 'Alessio Padovano', 2, 10), +(1607, 'Antonia Eigemann', 2, 13), +(1608, 'Jolan Gerritzen', 3, 21), +(1610, 'Herr Buchmüller', 2, 38), +(1611, 'Moritz Liebisch', 1, 6), +(1612, 'Lars, Greta', 1, 8), +(1613, 'Christian Beutel', 1, 13), +(1614, 'Luca van den Boom', 2, 14), +(1616, 'Felix Kirsten', 1, 24), +(1617, 'Lukas Corell', 1, 25), +(1618, 'Dominik Kwitowski', 1, 26), +(1620, 'Robin', 1, 2), +(1621, 'Frau Kahlert', 1, 36); + +-- -------------------------------------------------------- + +-- +-- Tabellenstruktur für Tabelle `voters` +-- + +CREATE TABLE `voters` ( + `id` bigint(20) NOT NULL, + `candidatesubmit_status` bit(1) DEFAULT NULL, + `email` varchar(255) DEFAULT NULL, + `motto_status` bit(1) DEFAULT NULL, + `vote_status` bit(1) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +-- +-- Daten für Tabelle `voters` +-- + +INSERT INTO `voters` (`id`, `candidatesubmit_status`, `email`, `motto_status`, `vote_status`) VALUES +(1, b'1', 'negar.barzegar@adolfinum.de', b'0', b'0'), +(2, b'1', 'simon.berger@adolfinum.de', b'0', b'1'), +(3, b'0', 'nicolas.cunha@adolfinum.de', b'0', b'1'), +(4, b'0', 'joline.hackstein@adolfinum.de', b'0', b'1'), +(5, b'0', 'philip.heckhoff@adolfinum.de', b'0', b'1'), +(6, b'1', 'simon.hormes@adolfinum.de', b'0', b'1'), +(7, b'1', 'benjamin.vogt@adolfinum.de', b'0', b'1'), +(8, b'0', 'taycan.arslan@adolfinum.de', b'0', b'1'), +(9, b'0', 'luca.boom@adolfinum.de', b'0', b'0'), +(10, b'1', 'leon.borgerding@adolfinum.de', b'0', b'1'), +(11, b'1', 'lukas.boy@adolfinum.de', b'0', b'1'), +(12, b'1', 'lukas.corell@adolfinum.de', b'0', b'1'), +(13, b'1', 'cedric.damerow@adolfinum.de', b'0', b'0'), +(14, b'1', 'amelie.david@adolfinum.de', b'0', b'1'), +(15, b'1', 'zeynep.efe@adolfinum.de', b'0', b'1'), +(16, b'1', 'melinda.hirschelmann@adolfinum.de', b'0', b'1'), +(17, b'1', 'lars.hogardt@adolfinum.de', b'0', b'0'), +(18, b'0', 'malin.kalnins@adolfinum.de', b'0', b'1'), +(19, b'0', 'victor.kocksnchez@adolfinum.de', b'0', b'1'), +(20, b'0', 'kamil.kowalczyk@adolfinum.de', b'0', b'1'), +(21, b'0', 'romyna.gurny@adolfinum.de', b'0', b'1'), +(22, b'0', 'noelia.kocksnchez@adolfinum.de', b'0', b'1'), +(23, b'1', 'lili.schweitzer@adolfinum.de', b'0', b'1'), +(24, b'1', 'jerome.laukamp@adolfinum.de', b'0', b'1'), +(25, b'0', 'elisa.bahl@adolfinum.de', b'0', b'1'), +(26, b'0', 'lisa.baumeister@adolfinum.de', b'0', b'1'), +(27, b'1', 'johanna.boeckmann@adolfinum.de', b'0', b'1'), +(28, b'1', 'svenja.fischer@adolfinum.de', b'0', b'1'), +(29, b'0', 'lena.goehlich@adolfinum.de', b'0', b'1'), +(30, b'0', 'paula.haub@adolfinum.de', b'0', b'1'), +(31, b'0', 'daria.horstmann@adolfinum.de', b'0', b'1'), +(32, b'1', 'melina.kascha@adolfinum.de', b'0', b'1'), +(33, b'1', 'pia.kleinwegen@adolfinum.de', b'0', b'1'), +(34, b'1', 'lauramarie.koenig@adolfinum.de', b'0', b'1'), +(35, b'1', 'yarkin.kulaksiz@adolfinum.de', b'0', b'1'), +(36, b'1', 'amelie.laake@adolfinum.de', b'0', b'1'), +(37, b'1', 'noemi.malaponti@adolfinum.de', b'0', b'1'), +(38, b'1', 'yara.mueser@adolfinum.de', b'0', b'1'), +(39, b'0', 'paul.nowack@adolfinum.de', b'0', b'1'), +(40, b'0', 'luca.ofiera@adolfinum.de', b'0', b'0'), +(41, b'1', 'timo.otto@adolfinum.de', b'0', b'0'), +(42, b'0', 'linnea.paulukuhn@adolfinum.de', b'0', b'1'), +(43, b'1', 'isabelle.schneider@adolfinum.de', b'0', b'1'), +(44, b'1', 'nico.scholzen@adolfinum.de', b'0', b'1'), +(45, b'1', 'manon.schroff@adolfinum.de', b'0', b'1'), +(46, b'1', 'carlotta.tueckmantel@adolfinum.de', b'0', b'1'), +(47, b'1', 'simon.bussmann@adolfinum.de', b'0', b'1'), +(48, b'0', 'luis.erpenbach@adolfinum.de', b'0', b'1'), +(49, b'1', 'meret.fass@adolfinum.de', b'0', b'1'), +(50, b'1', 'anna.feldmann@adolfinum.de', b'0', b'1'), +(51, b'1', 'alina.fuenderich@adolfinum.de', b'0', b'1'), +(52, b'1', 'joline.gilles@adolfinum.de', b'0', b'1'), +(53, b'1', 'karolina.hein@adolfinum.de', b'0', b'1'), +(54, b'1', 'robin.heldt@adolfinum.de', b'0', b'1'), +(55, b'1', 'annika.koch@adolfinum.de', b'0', b'1'), +(56, b'0', 'dusanka.djukanovic@adolfinum.de', b'0', b'0'), +(57, b'1', 'aaron.glos@adolfinum.de', b'0', b'1'), +(58, b'1', 'ayseguel.guelten@adolfinum.de', b'0', b'1'), +(59, b'1', 'hamza.hasoumi@adolfinum.de', b'0', b'1'), +(60, b'0', 'evelyn.hofmann@adolfinum.de', b'0', b'1'), +(61, b'1', 'burakmustafa.kulac@adolfinum.de', b'0', b'1'), +(62, b'0', 'dominik.kwitowski@adolfinum.de', b'0', b'1'), +(63, b'1', 'julia.lener@adolfinum.de', b'0', b'1'), +(64, b'0', 'paula.may@adolfinum.de', b'0', b'1'), +(65, b'0', 'luca.mueller@adolfinum.de', b'0', b'0'), +(66, b'1', 'mathieu.mueller@adolfinum.de', b'0', b'0'), +(67, b'0', 'marie.puetter@adolfinum.de', b'0', b'1'), +(68, b'1', 'hendrik.herffs@adolfinum.de', b'0', b'1'), +(69, b'1', 'greta.bentgens@adolfinum.de', b'0', b'1'), +(70, b'0', 'sven.mittmann@adolfinum.de', b'0', b'0'), +(71, b'0', 'jan.hoevel@adolfinum.de', b'0', b'0'), +(72, b'0', 'tim.krichel@adolfinum.de', b'0', b'1'), +(73, b'0', 'milo.lehnen@adolfinum.de', b'0', b'0'), +(74, b'0', 'lewis.lehner@adolfinum.de', b'0', b'1'), +(75, b'0', 'nico.lipinski@adolfinum.de', b'0', b'1'), +(76, b'1', 'luise.lu@adolfinum.de', b'0', b'1'), +(77, b'1', 'maike.nawarotzky@adolfinum.de', b'0', b'1'), +(78, b'0', 'rabea.peters@adolfinum.de', b'0', b'1'), +(79, b'1', 'patrick.preuss@adolfinum.de', b'0', b'1'), +(80, b'1', 'julius.preusser@adolfinum.de', b'0', b'1'), +(81, b'1', 'marie.scheidung@adolfinum.de', b'0', b'1'), +(82, b'1', 'lena.schlayer@adolfinum.de', b'0', b'1'), +(83, b'1', 'emma.sprenger@adolfinum.de', b'0', b'1'), +(84, b'1', 'klaudia.kapala@adolfinum.de', b'0', b'1'), +(85, b'0', 'gabriel.schacht@adolfinum.de', b'0', b'1'), +(86, b'1', 'delia.schmitz@adolfinum.de', b'0', b'1'), +(87, b'1', 'katharina.schmitz@adolfinum.de', b'0', b'1'), +(88, b'0', 'laurin.severith@adolfinum.de', b'0', b'0'), +(89, b'1', 'julian.sievers@adolfinum.de', b'0', b'1'), +(90, b'1', 'anna.siewert@adolfinum.de', b'0', b'1'), +(91, b'1', 'chiara.welter@adolfinum.de', b'0', b'1'), +(92, b'0', 'kira.winzen@adolfinum.de', b'0', b'0'), +(93, b'0', 'tim.zentzis@adolfinum.de', b'0', b'0'), +(94, b'1', 'justus.boesken@adolfinum.de', b'0', b'1'), +(95, b'1', 'finia.brinkmann@adolfinum.de', b'0', b'1'), +(96, b'0', 'anesa.cavcic@adolfinum.de', b'0', b'1'), +(97, b'1', 'antonia.eigemann@adolfinum.de', b'0', b'1'), +(98, b'1', 'nico.hahn@adolfinum.de', b'0', b'0'), +(99, b'0', 'timo.kohlmann@adolfinum.de', b'0', b'0'), +(100, b'1', 'alexander.kupillas@adolfinum.de', b'0', b'1'), +(101, b'1', 'alexander.neumann@adolfinum.de', b'0', b'0'), +(102, b'1', 'sophie.osterloh@adolfinum.de', b'0', b'1'), +(103, b'1', 'clemens.palinsky@adolfinum.de', b'0', b'1'), +(104, b'1', 'oliver.palinsky@adolfinum.de', b'0', b'1'), +(105, b'0', 'hendrik.pierlo@adolfinum.de', b'0', b'1'), +(106, b'1', 'lilly.schmidtke@adolfinum.de', b'0', b'1'), +(107, b'1', 'mara.spicker@adolfinum.de', b'0', b'0'), +(108, b'0', 'anhtrung.vo@adolfinum.de', b'0', b'0'), +(109, b'1', 'ben.schwarz@adolfinum.de', b'0', b'0'), +(110, b'1', 'luca.urbanczyk@adolfinum.de', b'0', b'1'), +(111, b'0', 'helena.neukirch@adolfinum.de', b'0', b'1'), +(112, b'0', 'nikita.lauff@adolfinum.de', b'0', b'0'), +(113, b'1', 'jennifer.lengard@adolfinum.de', b'0', b'1'), +(114, b'1', 'julia.mueller@adolfinum.de', b'0', b'1'), +(115, b'0', 'philipp.nothers@adolfinum.de', b'0', b'1'), +(116, b'0', 'judith.oppenberg@adolfinum.de', b'0', b'1'), +(117, b'1', 'dilan.oeztuerk@adolfinum.de', b'0', b'0'), +(118, b'0', 'malo.soulier@adolfinum.de', b'0', b'1'), +(119, b'0', 'mery.stern@adolfinum.de', b'0', b'1'), +(120, b'0', 'nouel.verberkt@adolfinum.de', b'0', b'1'), +(121, b'1', 'leon.viktora@adolfinum.de', b'0', b'1'), +(122, b'1', 'pia.anthes@adolfinum.de', b'0', b'1'), +(123, b'1', 'eray.arici@adolfinum.de', b'0', b'1'), +(124, b'1', 'christian.beutel@adolfinum.de', b'0', b'1'), +(125, b'1', 'mara.blanke@adolfinum.de', b'0', b'1'), +(126, b'0', 'lilly.ventzke@adolfinum.de', b'0', b'1'), +(127, b'1', 'luzi.weichert@adolfinum.de', b'0', b'1'), +(128, b'1', 'moritz.weihnacht@adolfinum.de', b'0', b'1'), +(129, b'1', 'leony.wittmann@adolfinum.de', b'0', b'1'), +(130, b'1', 'annika.lieblang@adolfinum.de', b'0', b'1'), +(131, b'0', 'leonie.wallusch@adolfinum.de', b'0', b'0'), +(132, b'1', 'felix.kirsten@adolfinum.de', b'0', b'1'), +(133, b'1', 'moritz.liebisch@adolfinum.de', b'0', b'1'), +(134, b'1', 'christian.pickardt@adolfinum.de', b'0', b'1'), +(135, b'0', 'jan.schliekmann@adolfinum.de', b'0', b'0'), +(136, b'1', 'elsa.piplack@adolfinum.de', b'0', b'1'), +(137, b'0', 'jolan.gerritzen@adolfinum.de', b'0', b'1'), +(138, b'1', 'lorena.garau@adolfinum.de', b'0', b'1'), +(139, b'0', 'matthias.karl@adolfinum.de', b'0', b'0'), +(140, b'0', 'justin.kauschke@adolfinum.de', b'0', b'1'), +(141, b'1', 'leonie.kramer@adolfinum.de', b'0', b'1'), +(142, b'1', 'laura.kurreck@adolfinum.de', b'0', b'1'), +(143, b'0', 'maya.lueck@adolfinum.de', b'0', b'1'), +(144, b'0', 'sean.mccormick-silex@adolfinum.de', b'0', b'0'), +(145, b'1', 'tim.mueller@adolfinum.de', b'0', b'0'), +(146, b'1', 'lana.peric@adolfinum.de', b'0', b'1'), +(147, b'1', 'jan.pintostrohhaeusl@adolfinum.de', b'0', b'1'), +(148, b'1', 'laura.ruettershoff@adolfinum.de', b'0', b'1'), +(149, b'0', 'charlotte.schirmer@adolfinum.de', b'0', b'1'), +(150, b'1', 'lavinia.schmitz@adolfinum.de', b'0', b'1'), +(151, b'1', 'victor.schroers@adolfinum.de', b'0', b'0'), +(152, b'1', 'gerrit.schulz@adolfinum.de', b'0', b'1'), +(153, b'1', 'clemens.spoo@adolfinum.de', b'0', b'1'), +(154, b'0', 'simon.stavroulakis@adolfinum.de', b'0', b'0'), +(155, b'1', 'ioannis.boerner@adolfinum.de', b'0', b'1'), +(156, b'0', 'marwa.nafouti@adolfinum.de', b'0', b'0'), +(157, b'0', 'niklas.klaffki@adolfinum.de', b'0', b'0'), +(158, b'0', 'alessio.padovano@adolfinum.de', b'0', b'1'), +(159, b'0', 'jonas.breder@adolfinum.de', b'0', b'0'), +(160, b'1', 'ben.maas@adolfinum.de', b'0', b'1'), +(161, b'0', 'mina.ercan@adolfinum.de', b'0', b'1'), +(162, b'1', 'can.patir@adolfinum.de', b'0', b'1'), +(163, b'0', 'maya.springstein@adolfinum.de', b'0', b'0'); + +-- +-- Indizes der exportierten Tabellen +-- + +-- +-- Indizes für die Tabelle `auth_codes` +-- +ALTER TABLE `auth_codes` + ADD PRIMARY KEY (`id`); + +-- +-- Indizes für die Tabelle `candidates` +-- +ALTER TABLE `candidates` + ADD PRIMARY KEY (`id`), + ADD KEY `FKahv5ay5uut18brh5v69sfeggh` (`category_id`); + +-- +-- Indizes für die Tabelle `categories` +-- +ALTER TABLE `categories` + ADD PRIMARY KEY (`id`); + +-- +-- Indizes für die Tabelle `mottos` +-- +ALTER TABLE `mottos` + ADD PRIMARY KEY (`id`); + +-- +-- Indizes für die Tabelle `possible_candidates` +-- +ALTER TABLE `possible_candidates` + ADD PRIMARY KEY (`id`), + ADD KEY `FK78ng7m4e2cn5j59yadagcnhbs` (`category_id`); + +-- +-- Indizes für die Tabelle `voters` +-- +ALTER TABLE `voters` + ADD PRIMARY KEY (`id`); + +-- +-- AUTO_INCREMENT für exportierte Tabellen +-- + +-- +-- AUTO_INCREMENT für Tabelle `auth_codes` +-- +ALTER TABLE `auth_codes` + MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=149; + +-- +-- AUTO_INCREMENT für Tabelle `candidates` +-- +ALTER TABLE `candidates` + MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=423; + +-- +-- AUTO_INCREMENT für Tabelle `categories` +-- +ALTER TABLE `categories` + MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=43; + +-- +-- AUTO_INCREMENT für Tabelle `mottos` +-- +ALTER TABLE `mottos` + MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; + +-- +-- AUTO_INCREMENT für Tabelle `possible_candidates` +-- +ALTER TABLE `possible_candidates` + MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1622; + +-- +-- AUTO_INCREMENT für Tabelle `voters` +-- +ALTER TABLE `voters` + MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=165; + +-- +-- Constraints der exportierten Tabellen +-- + +-- +-- Constraints der Tabelle `candidates` +-- +ALTER TABLE `candidates` + ADD CONSTRAINT `FKahv5ay5uut18brh5v69sfeggh` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`); + +-- +-- Constraints der Tabelle `possible_candidates` +-- +ALTER TABLE `possible_candidates` + ADD CONSTRAINT `FK78ng7m4e2cn5j59yadagcnhbs` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`); +COMMIT; + +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; From b5d18c63ce9f3a720638ac274dd4097fceb8ef76 Mon Sep 17 00:00:00 2001 From: Simon Date: Sat, 9 Jan 2021 18:32:31 +0100 Subject: [PATCH 24/35] Fixed out of bounds exception --- .../AbizeitungVotingSystem/controller/VotingController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java index 9f1b561..ddf32af 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java @@ -200,7 +200,7 @@ public class VotingController { voteForPosCandidates.add(p); } else { if(index > 31 && posCandidate.getName().indexOf(" ") != -1){ - posCandidate.setName(posCandidate.getName().split(" ")[1]); + posCandidate.setName(posCandidate.getName().split(" ")[posCandidate.getName().split(" ").length-1]); } PossibleCandidate possibleCandidate = new PossibleCandidate(posCandidate.getName(), categoryRepository.findById(index).get()); addToPosCandidates.add(possibleCandidate); From 577015fa3f7a68eabc0f98a49c3ac50290ee490b Mon Sep 17 00:00:00 2001 From: Simon Date: Sat, 9 Jan 2021 20:23:16 +0100 Subject: [PATCH 25/35] BUGFIX --- .../controller/VotingController.java | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java index ddf32af..6fe81fc 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java @@ -190,32 +190,23 @@ public class VotingController { return "errors/alreadyVoted.html"; } else { LinkedList posCandidates = possibleCandidates.getPossibleCandidates(); - LinkedList voteForPosCandidates = new LinkedList<>(); - LinkedList addToPosCandidates = new LinkedList<>(); long index = 1; for (PossibleCandidate posCandidate : posCandidates) { if (posCandidate.getName() != "") { if (possibleCandidateRepository.findByNameAndCategory(posCandidate.getName(), categoryRepository.findById(index).get()) != null) { PossibleCandidate p = possibleCandidateRepository.findByNameAndCategory(posCandidate.getName(), categoryRepository.findById(index).get()); - voteForPosCandidates.add(p); + p.setVotes(p.getVotes() + 1); + possibleCandidateRepository.save(p); } else { - if(index > 31 && posCandidate.getName().indexOf(" ") != -1){ - posCandidate.setName(posCandidate.getName().split(" ")[posCandidate.getName().split(" ").length-1]); + if (index > 31 && posCandidate.getName().indexOf(" ") != -1) { + posCandidate.setName(posCandidate.getName().split(" ")[posCandidate.getName().split(" ").length - 1]); } PossibleCandidate possibleCandidate = new PossibleCandidate(posCandidate.getName(), categoryRepository.findById(index).get()); - addToPosCandidates.add(possibleCandidate); + possibleCandidateRepository.save(possibleCandidate); } } index++; } - for (PossibleCandidate p: voteForPosCandidates) { - p.setVotes(p.getVotes() + 1); - possibleCandidateRepository.save(p); - } - - for (PossibleCandidate p: addToPosCandidates) { - possibleCandidateRepository.save(p); - } tableAction.updateCandidatesubmit_status(name, voterRepository); return "voteSuccessful.html"; From a14d2a6f33a30808802dd83d8e01b12b20084724 Mon Sep 17 00:00:00 2001 From: Simon Date: Sat, 9 Jan 2021 20:34:55 +0100 Subject: [PATCH 26/35] temp --- .../AbizeitungVotingSystem/controller/VotingController.java | 2 +- src/main/resources/templates/errors/votingClosed.html | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java index 6fe81fc..33cd7f5 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java @@ -76,7 +76,7 @@ public class VotingController { @RequestMapping("/") public String WelcomeSite() { - LocalDate finishDate = LocalDate.of(2021, Month.JANUARY,17); + LocalDate finishDate = LocalDate.of(2021, Month.JANUARY,8); LocalDate now = LocalDate.now(); if(now.isAfter(finishDate)){ diff --git a/src/main/resources/templates/errors/votingClosed.html b/src/main/resources/templates/errors/votingClosed.html index f04a09e..a54361f 100644 --- a/src/main/resources/templates/errors/votingClosed.html +++ b/src/main/resources/templates/errors/votingClosed.html @@ -9,8 +9,7 @@
-

Du scheinst zu spät zu sein!

-

Momentan findet kein Voting statt

+

Es finden momentan Wartungen statt

From 7fd2221e0a882507b5d0a12e805b4c08a1c2d949 Mon Sep 17 00:00:00 2001 From: Simon Date: Sat, 9 Jan 2021 21:09:46 +0100 Subject: [PATCH 27/35] reverse block --- .../AbizeitungVotingSystem/controller/VotingController.java | 2 +- src/main/resources/templates/errors/votingClosed.html | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java index 33cd7f5..6fe81fc 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java @@ -76,7 +76,7 @@ public class VotingController { @RequestMapping("/") public String WelcomeSite() { - LocalDate finishDate = LocalDate.of(2021, Month.JANUARY,8); + LocalDate finishDate = LocalDate.of(2021, Month.JANUARY,17); LocalDate now = LocalDate.now(); if(now.isAfter(finishDate)){ diff --git a/src/main/resources/templates/errors/votingClosed.html b/src/main/resources/templates/errors/votingClosed.html index a54361f..b41d13c 100644 --- a/src/main/resources/templates/errors/votingClosed.html +++ b/src/main/resources/templates/errors/votingClosed.html @@ -9,7 +9,8 @@
-

Es finden momentan Wartungen statt

+

Du bist leider zu spät

+

Momentan ist hier auf der Seite nichts los

From 69b320b28b77dd17e258368891958fdba45a01c0 Mon Sep 17 00:00:00 2001 From: Simon Date: Sat, 9 Jan 2021 21:26:13 +0100 Subject: [PATCH 28/35] Added exeptions --- .../controller/VotingController.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java index 6fe81fc..d4389ff 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java @@ -199,7 +199,14 @@ public class VotingController { possibleCandidateRepository.save(p); } else { if (index > 31 && posCandidate.getName().indexOf(" ") != -1) { - posCandidate.setName(posCandidate.getName().split(" ")[posCandidate.getName().split(" ").length - 1]); + if (posCandidate.getName().split(" ")[posCandidate.getName().split(" ").length-1] == "Neumann" || + posCandidate.getName().split(" ")[posCandidate.getName().split(" ").length-1] == "neumann" || + posCandidate.getName().split(" ")[posCandidate.getName().split(" ").length-1] == "Mecklenburg" || + posCandidate.getName().split(" ")[posCandidate.getName().split(" ").length-1] == "mecklenburg" ){ + posCandidate.setName(posCandidate.getName()); + } else { + posCandidate.setName(posCandidate.getName().split(" ")[posCandidate.getName().split(" ").length - 1]); + } } PossibleCandidate possibleCandidate = new PossibleCandidate(posCandidate.getName(), categoryRepository.findById(index).get()); possibleCandidateRepository.save(possibleCandidate); From 3528c1d0d37c183fb126109086f01a4b96b69069 Mon Sep 17 00:00:00 2001 From: Simon Date: Sat, 9 Jan 2021 21:56:17 +0100 Subject: [PATCH 29/35] Final release --- .../controller/VotingController.java | 21 ++++++++++++------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java index d4389ff..1abcf02 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java @@ -193,23 +193,28 @@ public class VotingController { long index = 1; for (PossibleCandidate posCandidate : posCandidates) { if (posCandidate.getName() != "") { - if (possibleCandidateRepository.findByNameAndCategory(posCandidate.getName(), categoryRepository.findById(index).get()) != null) { + if (possibleCandidateRepository.findByNameAndCategory(posCandidate.getName(), categoryRepository.findById(index).get()) != null || + possibleCandidateRepository.findByNameAndCategory(posCandidate.getName().split(" ")[posCandidate.getName().split(" ").length-1], categoryRepository.findById(index).get()) != null) { PossibleCandidate p = possibleCandidateRepository.findByNameAndCategory(posCandidate.getName(), categoryRepository.findById(index).get()); p.setVotes(p.getVotes() + 1); possibleCandidateRepository.save(p); } else { if (index > 31 && posCandidate.getName().indexOf(" ") != -1) { - if (posCandidate.getName().split(" ")[posCandidate.getName().split(" ").length-1] == "Neumann" || - posCandidate.getName().split(" ")[posCandidate.getName().split(" ").length-1] == "neumann" || - posCandidate.getName().split(" ")[posCandidate.getName().split(" ").length-1] == "Mecklenburg" || - posCandidate.getName().split(" ")[posCandidate.getName().split(" ").length-1] == "mecklenburg" ){ - posCandidate.setName(posCandidate.getName()); + if (posCandidate.getName().split(" ")[posCandidate.getName().split(" ").length-1].equals("Neumann") || + posCandidate.getName().split(" ")[posCandidate.getName().split(" ").length-1].equals("neumann") || + posCandidate.getName().split(" ")[posCandidate.getName().split(" ").length-1].equals("Mecklenburg") || + posCandidate.getName().split(" ")[posCandidate.getName().split(" ").length-1].equals("mecklenburg")){ + PossibleCandidate possibleCandidate = new PossibleCandidate(posCandidate.getName(), categoryRepository.findById(index).get()); + possibleCandidateRepository.save(possibleCandidate); } else { posCandidate.setName(posCandidate.getName().split(" ")[posCandidate.getName().split(" ").length - 1]); + PossibleCandidate possibleCandidate = new PossibleCandidate(posCandidate.getName(), categoryRepository.findById(index).get()); + possibleCandidateRepository.save(possibleCandidate); } + } else { + PossibleCandidate possibleCandidate = new PossibleCandidate(posCandidate.getName(), categoryRepository.findById(index).get()); + possibleCandidateRepository.save(possibleCandidate); } - PossibleCandidate possibleCandidate = new PossibleCandidate(posCandidate.getName(), categoryRepository.findById(index).get()); - possibleCandidateRepository.save(possibleCandidate); } } index++; From 4e2472335852e3ba80061a765c25a1938ddef4b5 Mon Sep 17 00:00:00 2001 From: Simon Date: Sat, 9 Jan 2021 22:07:45 +0100 Subject: [PATCH 30/35] asdf --- .../controller/VotingController.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java index 1abcf02..120d2ea 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java @@ -193,8 +193,11 @@ public class VotingController { long index = 1; for (PossibleCandidate posCandidate : posCandidates) { if (posCandidate.getName() != "") { - if (possibleCandidateRepository.findByNameAndCategory(posCandidate.getName(), categoryRepository.findById(index).get()) != null || - possibleCandidateRepository.findByNameAndCategory(posCandidate.getName().split(" ")[posCandidate.getName().split(" ").length-1], categoryRepository.findById(index).get()) != null) { + if (possibleCandidateRepository.findByNameAndCategory(posCandidate.getName(), categoryRepository.findById(index).get()) != null ||) { + PossibleCandidate p = possibleCandidateRepository.findByNameAndCategory(posCandidate.getName(), categoryRepository.findById(index).get()); + p.setVotes(p.getVotes() + 1); + possibleCandidateRepository.save(p); + } else if (possibleCandidateRepository.findByNameAndCategory(posCandidate.getName().split(" ")[posCandidate.getName().split(" ").length-1], categoryRepository.findById(index).get()) != null){ PossibleCandidate p = possibleCandidateRepository.findByNameAndCategory(posCandidate.getName(), categoryRepository.findById(index).get()); p.setVotes(p.getVotes() + 1); possibleCandidateRepository.save(p); From 4ec09ac16c7e0619701c47ebbf3281fa5a5e0d8d Mon Sep 17 00:00:00 2001 From: Simon Date: Sat, 9 Jan 2021 22:08:55 +0100 Subject: [PATCH 31/35] asdf2 --- .../AbizeitungVotingSystem/controller/VotingController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java index 120d2ea..9cdb424 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java @@ -198,7 +198,7 @@ public class VotingController { p.setVotes(p.getVotes() + 1); possibleCandidateRepository.save(p); } else if (possibleCandidateRepository.findByNameAndCategory(posCandidate.getName().split(" ")[posCandidate.getName().split(" ").length-1], categoryRepository.findById(index).get()) != null){ - PossibleCandidate p = possibleCandidateRepository.findByNameAndCategory(posCandidate.getName(), categoryRepository.findById(index).get()); + PossibleCandidate p = possibleCandidateRepository.findByNameAndCategory(posCandidate.getName().split(" ")[posCandidate.getName().split(" ").length-1], categoryRepository.findById(index).get()); p.setVotes(p.getVotes() + 1); possibleCandidateRepository.save(p); } else { From ab3a36859a1116198c7c12a9ead2ece528276cc7 Mon Sep 17 00:00:00 2001 From: Simon Date: Sat, 9 Jan 2021 22:09:48 +0100 Subject: [PATCH 32/35] asdf3 --- .../AbizeitungVotingSystem/controller/VotingController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java index 9cdb424..d301d80 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java @@ -193,7 +193,7 @@ public class VotingController { long index = 1; for (PossibleCandidate posCandidate : posCandidates) { if (posCandidate.getName() != "") { - if (possibleCandidateRepository.findByNameAndCategory(posCandidate.getName(), categoryRepository.findById(index).get()) != null ||) { + if (possibleCandidateRepository.findByNameAndCategory(posCandidate.getName(), categoryRepository.findById(index).get()) != null) { PossibleCandidate p = possibleCandidateRepository.findByNameAndCategory(posCandidate.getName(), categoryRepository.findById(index).get()); p.setVotes(p.getVotes() + 1); possibleCandidateRepository.save(p); From ddf670cc94000530d7af6cf23d9d3a6e6e7a6ae9 Mon Sep 17 00:00:00 2001 From: Simon Date: Sun, 17 Jan 2021 15:54:32 +0100 Subject: [PATCH 33/35] Prepared everything for the votings --- Databases/Second Voting/VotingSystem.sql | 1424 +++++++++++++++++ logs/Voting.log | 749 +++------ .../controller/VotingController.java | 4 +- .../table/TableAction.java | 2 +- src/main/resources/static/styles/voting.css | 20 +- .../templates/errors/alreadyVoted.html | 33 +- 6 files changed, 1669 insertions(+), 563 deletions(-) create mode 100644 Databases/Second Voting/VotingSystem.sql diff --git a/Databases/Second Voting/VotingSystem.sql b/Databases/Second Voting/VotingSystem.sql new file mode 100644 index 0000000..f5568e8 --- /dev/null +++ b/Databases/Second Voting/VotingSystem.sql @@ -0,0 +1,1424 @@ +-- phpMyAdmin SQL Dump +-- version 5.0.4 +-- https://www.phpmyadmin.net/ +-- +-- Host: localhost +-- Generation Time: Jan 17, 2021 at 02:49 PM +-- Server version: 5.7.32-0ubuntu0.18.04.1 +-- PHP Version: 7.2.24-0ubuntu0.18.04.7 + +SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; +START TRANSACTION; +SET time_zone = "+00:00"; + + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8mb4 */; + +-- +-- Database: `VotingSystem` +-- + +-- -------------------------------------------------------- + +-- +-- Table structure for table `auth_codes` +-- + +CREATE TABLE `auth_codes` ( + `id` bigint(20) NOT NULL, + `code` varchar(255) DEFAULT NULL, + `name` varchar(255) DEFAULT NULL, + `time` bigint(20) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +-- +-- Dumping data for table `auth_codes` +-- + +INSERT INTO `auth_codes` (`id`, `code`, `name`, `time`) VALUES +(25, '031122', 'Chiara.welter@adolfinum.de', 1610210262297), +(69, '589037', 'lewis.lehner@adolfinum.de', 1610216832849), +(93, '984374', 'ayseguel.guelten@adolfinum.de', 1610227655083), +(121, '929229', 'victor.schroers@adolfinum.de', 1610295259012); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `candidates` +-- + +CREATE TABLE `candidates` ( + `id` bigint(20) NOT NULL, + `name` varchar(255) DEFAULT NULL, + `votes` int(11) DEFAULT NULL, + `category_id` bigint(20) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `categories` +-- + +CREATE TABLE `categories` ( + `id` bigint(20) NOT NULL, + `name` varchar(255) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +-- +-- Dumping data for table `categories` +-- + +INSERT INTO `categories` (`id`, `name`) VALUES +(1, 'Sportler/in des Jahres'), +(2, 'Best dressed student'), +(3, 'Picasso Jr.'), +(4, 'Verpeilt, verpeilter, ...'), +(5, 'Große Klappe'), +(6, 'Darf auf keiner Party fehlen'), +(7, 'Stille Wasser sind tief'), +(8, 'Patrick-Fragen-Steller'), +(9, 'Ehrgeizig, ehrgeiziger, ...'), +(10, 'Miss Make-Up'), +(11, 'Meiste Punkte in Flensburg'), +(12, 'Im Bundestag'), +(13, 'Bimsstein als Leber'), +(14, 'Bester Schwiegersohn'), +(15, 'Beste Schwiegertochter'), +(16, 'Lebt im Fitnessstudio'), +(17, 'Koffeinjunkie'), +(18, 'Erkennt man am Lachen'), +(19, 'Dschungelkönig/in'), +(20, 'Bei Geburt getrennte Zwillinge (Aussehen)'), +(21, 'Future Rockstar'), +(22, 'Schummelt sich durchs Abi'), +(23, 'Organisationstalent'), +(24, 'Gute Seele'), +(25, 'Nobelpreisträger'), +(26, 'Nachteule'), +(27, 'Präsentationspro'), +(28, 'Lehrerassistent für Technik'), +(29, 'Meiste Screentime'), +(30, 'Interessiert sich wirklich für den Unterricht'), +(31, 'Kleiner Exentriker'), +(32, 'Herrscht hart, aber gerecht'), +(33, 'Niemand traut sich zu schwänzen'), +(34, 'Man lernt nicht für die Schule sondern fürs Leben'), +(35, 'Kontert am besten'), +(36, 'Best dressed teacher'), +(37, 'Eigentlich Motivationstrainer'), +(38, 'Schlimmstes Tafelbild'), +(39, 'Möchtegern Comedian'), +(40, 'Führt ein Doppelleben'), +(41, '\"Ich beende den Unterricht\"'), +(42, 'Schülerschwarm (M)'), +(43, 'Schülerschwarm (W)'), +(44, 'Harte Schale, weicher Kern'), +(45, 'Sklaventreiber'), +(46, 'Unterrichtet auch, wenn die Schule brennt'), +(47, 'Ist immer da'), +(48, 'Lebt in der Schule'), +(49, 'Musste einen Wald für Arbeitsblätter roden lassen'), +(50, 'Top gestylt'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `possible_candidates` +-- + +CREATE TABLE `possible_candidates` ( + `id` bigint(20) NOT NULL, + `name` varchar(255) DEFAULT NULL, + `votes` int(11) NOT NULL, + `category_id` bigint(20) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +-- +-- Dumping data for table `possible_candidates` +-- + +INSERT INTO `possible_candidates` (`id`, `name`, `votes`, `category_id`) VALUES +(1, 'Charlotte Schirmer', 5, 1), +(2, 'Meret Faß', 5, 2), +(3, 'Zeynep Efe', 34, 3), +(4, 'Robin Heldt', 2, 4), +(5, 'Justus Bösken', 9, 5), +(6, 'Lars Hogardt', 2, 6), +(7, 'Anna Sievert', 9, 7), +(8, 'Delia Schmitz', 13, 9), +(10, 'Alexander Kupillas', 2, 11), +(11, 'Justus Bösken', 16, 12), +(12, 'Jerome Laukamp', 9, 13), +(13, 'Jan Hövel', 5, 14), +(14, 'Greta Bentgens', 2, 15), +(15, 'Jerome Laukamp', 22, 16), +(16, 'Alexander Kupillas', 10, 18), +(17, 'Justin Kauschke', 1, 19), +(18, 'Malo Soulier', 1, 21), +(19, 'Jerome Laukamp', 14, 22), +(20, 'Meret Faß', 12, 23), +(21, 'Greta Bentgens', 1, 24), +(22, 'Cederic Damerow', 5, 25), +(24, 'Victor Schroers', 2, 27), +(25, 'Simon Bussmann', 35, 28), +(26, 'Simon Bussmann', 2, 29), +(28, 'Justus Bösken', 1, 31), +(29, 'Schattenberg', 15, 32), +(31, 'Meier', 2, 34), +(32, 'Niemeier', 1, 35), +(33, 'Petering', 1, 36), +(34, 'Gerade', 1, 37), +(35, 'Klümper', 3, 38), +(36, 'Busch', 3, 40), +(38, 'Koopmann', 17, 42), +(39, 'Müller', 5, 43), +(40, 'Schattenberg', 4, 44), +(42, 'Schattenberg', 11, 46), +(43, 'Klein', 7, 47), +(50, 'Tim Müller', 1, 1), +(51, 'Marie Scheidung', 6, 3), +(52, 'Gerrit Schulz', 1, 4), +(53, 'Nico Lipinski', 2, 5), +(54, 'Gerrit Schulz', 1, 7), +(55, 'Patrick Preuß', 10, 8), +(56, 'Marie Scheidung', 9, 9), +(57, 'Gerrit Schulz', 1, 11), +(58, 'Moritz Weihnacht', 1, 12), +(59, 'Kamil', 1, 22), +(60, 'Sokolowski', 1, 32), +(64, 'Watkins', 3, 38), +(65, 'Dierks', 1, 39), +(68, 'Ben Schwarz ', 3, 1), +(69, 'Zeynep Efe', 13, 2), +(70, 'Antonia Eigemann', 3, 4), +(71, 'Marie Scheidung', 17, 15), +(72, 'Yarkin Kulaksiz ', 3, 18), +(74, 'Kozianka', 6, 32), +(75, 'Herrmann', 7, 33), +(76, 'Grade', 1, 36), +(78, 'Petering', 3, 39), +(79, 'Dinkelmann', 10, 40), +(82, 'Kozianka', 4, 45), +(83, 'Niemeier', 1, 46), +(84, 'Hennemann', 1, 47), +(87, 'Moritz Liebisch', 2, 1), +(88, 'Lena Schlayer', 17, 3), +(89, 'Jerome Laukamp', 2, 4), +(90, 'Moritz Liebisch', 7, 5), +(91, 'Laura König', 9, 9), +(92, 'Laura König', 4, 12), +(93, 'Delia Schmitz', 7, 23), +(94, 'Lena Schlayer', 2, 24), +(95, 'Laura König', 1, 25), +(96, 'Mara Blanke', 6, 27), +(97, 'Laura König', 16, 30), +(98, 'Schlossarek', 1, 33), +(99, 'Grade', 2, 34), +(101, 'Romberg', 1, 39), +(102, 'Kuster', 2, 41), +(104, 'Schattenberg', 7, 47), +(105, 'Hermann', 3, 48), +(106, 'Skorwider', 8, 49), +(107, 'Nico Scholzen', 12, 1), +(110, 'Christian Pickart', 2, 4), +(111, 'Robin Heldt', 1, 5), +(112, 'Laura Rüttershoff', 5, 6), +(113, 'Simon Hormes', 2, 8), +(114, 'Annika Lieblang', 5, 9), +(116, 'Jerome Laukamp', 12, 11), +(117, 'Isabelle Schneider', 1, 12), +(118, 'Christian Beutel', 8, 14), +(119, 'Isabelle Schneider', 1, 15), +(120, 'Eray Arici', 4, 16), +(121, 'Isabelle Schneider', 2, 17), +(123, 'Christian Pickart', 1, 22), +(125, 'Isabelle Schneider', 1, 24), +(128, 'Dusanka', 1, 27), +(129, 'Joline Gilles ', 1, 30), +(130, 'Schroer', 1, 32), +(131, 'Schirra', 3, 34), +(132, 'Koopmann', 16, 36), +(134, 'Heining', 2, 38), +(136, 'Schirra', 1, 40), +(137, 'Haustein', 2, 41), +(141, 'Christian Beutel', 6, 1), +(142, 'Helena Neukirch ', 3, 2), +(143, 'Aysegül Gülten ', 2, 4), +(144, 'Evelyn Hofmann ', 4, 5), +(145, 'Lili Schweitzer ', 8, 8), +(146, 'Delia Sch', 1, 10), +(147, 'Eray Arici ', 8, 11), +(148, 'Julius Preusser ', 1, 12), +(149, 'Niklas Klaffki ', 2, 13), +(150, 'Helena Neukirch ', 2, 17), +(151, 'Justus Bösken ', 4, 18), +(152, 'Jerome Laukamp ', 3, 19), +(153, 'Julius Preusser ', 1, 22), +(154, 'Zeynep Efe ', 1, 23), +(155, 'Julius Preusser ', 1, 29), +(157, 'Zeynep Efe ', 1, 31), +(159, 'Müller', 3, 34), +(165, 'Müller', 1, 40), +(166, 'Adams', 5, 41), +(167, 'Müller', 4, 44), +(168, 'Schattenberg', 13, 45), +(169, 'Adams', 4, 46), +(170, 'Adams', 2, 47), +(171, 'Adams', 1, 48), +(172, 'Reiss', 1, 49), +(173, 'Reiss', 5, 50), +(174, 'Felix Kirsten ', 8, 1), +(175, 'Antonia Eigemann ', 2, 6), +(176, 'Isabel Schneider ', 1, 7), +(177, 'Jérôme Laukamp ', 3, 8), +(180, 'Ben schwarz ', 2, 11), +(181, 'Leony Walusch', 1, 12), +(182, 'Moritz Liebisch ', 4, 13), +(183, 'Zeynep Efe ', 4, 15), +(185, 'Ben Schwarz ', 1, 19), +(186, 'Ben Schwarz ', 2, 22), +(187, 'Manon Schroff ', 2, 23), +(188, 'Zeynep Efe ', 4, 24), +(190, 'Jan Schliekmann ', 1, 31), +(192, 'Klein', 6, 33), +(197, 'Krauskopf', 4, 41), +(198, 'voß', 1, 45), +(199, 'Klaudia K.', 2, 3), +(200, 'Elsa P.', 1, 4), +(202, 'Karolina Hein', 2, 7), +(203, 'Julia Müller', 2, 17), +(204, 'Delia S.', 2, 18), +(207, 'Elsa P.', 1, 26), +(209, 'Elsa P.', 1, 30), +(210, 'Reiss', 2, 33), +(211, 'Schlossarek', 1, 47), +(212, 'Delia Schmitz', 2, 2), +(213, 'Lukas Boy', 4, 28), +(216, 'Neumann', 3, 38), +(217, 'Neumann', 5, 49), +(220, 'Ben Schwarz', 3, 5), +(221, 'mina ercan ', 1, 7), +(222, 'justus bösken', 1, 8), +(223, 'Annika Koch', 1, 9), +(224, 'Lea Gerritzen ', 1, 10), +(225, 'Simon Bussmann', 6, 12), +(226, 'Anna Wilmschen ', 1, 13), +(227, 'Leon Viktora ', 2, 14), +(228, 'Annika Koch', 6, 15), +(229, 'Romyna Gurny', 3, 16), +(230, 'Joline Gilles ', 2, 18), +(231, 'Lili Schweizer', 4, 19), +(234, 'Annika Koch', 4, 24), +(235, 'Joline Gilles', 2, 26), +(236, 'Justus Bösken', 11, 27), +(237, 'Jerome Laukamp', 2, 29), +(238, 'Leonie Wallusch', 2, 30), +(240, 'Watkins', 4, 33), +(242, 'Bollhorst', 1, 35), +(244, 'Schattenberg', 7, 37), +(245, 'Schattenberg', 5, 38), +(246, 'Kuster', 1, 39), +(247, 'Koopmann', 5, 40), +(249, 'Bollhorst', 1, 42), +(254, 'Watkins', 2, 47), +(257, 'Bollhorst', 1, 50), +(258, 'Katharina', 1, 1), +(259, 'Romyna', 1, 4), +(260, 'Lilly Schmitdke', 1, 5), +(261, 'Leon Borgerding', 3, 6), +(262, 'Sophie Osterloh', 2, 7), +(263, 'Laura Rhüttershoff', 1, 9), +(266, 'Simon Hormes', 1, 14), +(267, 'Hendrik Herffs', 3, 16), +(268, 'Carlotta Tückmantel', 5, 17), +(269, 'Christian Beutel', 5, 19), +(272, 'Joline Gilles', 1, 22), +(273, 'Mara Blanke', 2, 23), +(274, 'Gerrit', 1, 25), +(275, 'Gerrit', 3, 28), +(276, 'Joline Gilles', 1, 29), +(277, 'Annika Koch', 1, 30), +(279, 'Schröer', 1, 33), +(280, 'Richter', 1, 35), +(281, 'Schirra', 4, 37), +(282, 'Meschendörfer', 2, 38), +(283, 'Meschendörfer', 1, 39), +(284, 'schröer', 1, 40), +(285, 'niemeier', 1, 41), +(288, 'bollhorst', 1, 44), +(294, 'Lana Peric', 1, 4), +(295, 'Justin Kauschke', 1, 5), +(296, 'Lana Peric', 2, 6), +(297, 'Julia Lehner', 1, 7), +(299, 'Charlotte Schirmer', 1, 9), +(300, 'Meret Fass', 1, 10), +(301, 'Mara Blanke', 2, 12), +(302, 'Lana Peric', 1, 13), +(303, 'Philip Heckhoff', 2, 16), +(304, 'Marie Pütter', 2, 17), +(305, 'Dušanka Djukanovic', 2, 18), +(306, 'Paul Novak', 3, 19), +(307, 'Joline Hackstein', 1, 21), +(308, 'Moritz Liebisch', 9, 22), +(309, 'Lana Peric', 1, 24), +(310, 'Laura Kurreck', 2, 25), +(311, 'Lana Peric', 2, 26), +(312, 'Laura Kurreck', 1, 27), +(313, 'Marie Pütter', 1, 29), +(316, 'Heße', 7, 32), +(317, 'Heße', 9, 33), +(318, 'Heße', 5, 34), +(319, 'Rennert', 6, 35), +(320, 'Liesegang', 2, 36), +(322, 'Petrovi?', 1, 38), +(324, 'Liesegang', 1, 40), +(325, 'Heisig', 3, 41), +(326, 'Rennert', 3, 42), +(328, 'Petering', 1, 44), +(330, 'Müller', 5, 46), +(331, 'Wans', 6, 47), +(333, 'Heße', 7, 49), +(334, 'Meier', 3, 50), +(335, 'Paula Haub', 1, 2), +(337, 'Laurin', 1, 6), +(338, 'Lilly V.', 1, 7), +(339, 'Jan Höfel', 1, 8), +(340, 'Johanna Böckmann', 6, 9), +(341, 'Evelyn Hofmann', 12, 10), +(342, 'Moritz Liebisch', 11, 11), +(343, 'Justin Kauschke', 10, 13), +(345, 'Manon Schroff', 3, 15), +(347, 'Noemi M.', 1, 17), +(349, 'Katharina S.', 1, 19), +(350, 'Laura König', 6, 24), +(351, 'Antonia Eigemann', 1, 26), +(353, 'Evelyn Hofmann', 5, 29), +(354, 'Delia Schmitz', 10, 30), +(356, 'Frings', 5, 33), +(357, 'Dierks', 2, 34), +(358, 'Frings', 3, 35), +(361, 'Petering', 3, 38), +(363, 'Herr Neumann', 3, 40), +(367, 'Kozianka', 3, 44), +(368, 'Frings', 2, 45), +(370, 'Müller', 1, 47), +(372, 'Schubert', 5, 49), +(373, 'Kozianka', 1, 50), +(376, 'Laura K.', 1, 3), +(377, 'Chiara ', 1, 4), +(378, 'Janni (der neue ) ', 1, 5), +(379, 'Ben M.', 1, 6), +(380, 'Chiara ', 1, 7), +(381, 'Christian B.', 1, 8), +(384, 'Ben M.', 1, 11), +(387, 'Chiara ', 1, 15), +(390, 'Chiara', 2, 18), +(391, 'Alessio', 1, 19), +(393, 'Gerrit', 1, 21), +(394, 'Alex Neumann', 1, 22), +(395, 'Gerrit ', 1, 23), +(396, 'Chiara', 1, 24), +(397, 'Julian S.', 1, 25), +(398, 'Hendrik H.', 1, 26), +(400, 'Chiara', 1, 29), +(402, 'Nikita ', 1, 31), +(403, 'Meyering', 1, 32), +(405, 'Nolte', 2, 34), +(407, 'Meyer', 2, 36), +(409, 'Küppers', 1, 38), +(410, 'Kozianka', 1, 40), +(411, 'Neumann', 7, 41), +(413, 'Lindemann', 4, 43), +(414, 'Milde', 4, 44), +(415, 'Nolte', 1, 46), +(416, 'Verhoeven', 1, 47), +(417, 'Klag', 10, 48), +(418, 'Grade', 3, 49), +(420, 'Manon Schroff', 5, 5), +(421, 'Jan Hövel', 1, 18), +(422, 'Marie Pütter', 7, 23), +(423, 'Koopmann', 4, 34), +(425, 'Münker', 4, 38), +(427, 'Kuster', 2, 47), +(428, 'Simon Hormes', 2, 4), +(430, 'Chiara Welter', 16, 10), +(431, 'Jolan Gerritzen', 1, 12), +(432, 'Jolan', 1, 14), +(433, 'Philip Heckhoff', 2, 18), +(435, 'Simon Berger', 3, 21), +(436, 'Justin Kauschke', 1, 22), +(437, 'Laura König', 3, 23), +(438, 'Simon Berger', 1, 24), +(439, 'Lukas Boy', 1, 26), +(440, 'Victor Schroers', 3, 28), +(441, 'Jolan', 1, 29), +(445, 'Krauskopf', 1, 35), +(446, 'Klag', 1, 36), +(449, 'Sokolowski', 2, 39), +(451, 'Krauskopf', 1, 44), +(453, 'Klein', 4, 46), +(457, 'Linnea Paulukuhn ', 1, 1), +(458, 'Marie Scheidung', 1, 4), +(459, 'Lilly Ventzke', 3, 6), +(460, 'Elisa Bahl', 1, 7), +(461, 'Anesa Cavcic', 13, 10), +(462, 'Tim Krichel', 2, 13), +(463, 'Gabriel Schacht', 4, 14), +(465, 'Emma Sprenger ', 2, 17), +(467, 'Yara Müser', 4, 21), +(468, 'Lilly Schmidtke ', 5, 23), +(469, 'Leon Borgerding', 1, 25), +(470, 'Melina Kascha', 3, 26), +(471, 'Simon Hormes', 2, 27), +(472, 'Manon Schroff', 6, 29), +(473, 'Greta Bentgens', 3, 30), +(474, 'Klein', 1, 32), +(475, 'Müller', 3, 33), +(478, 'Adams', 3, 38), +(479, 'Heining', 3, 39), +(484, 'Watkins', 7, 44), +(485, 'Adams', 1, 45), +(489, 'Müller', 2, 50), +(490, 'Lili Schweitzer ', 1, 2), +(491, 'Carlotta Tückmantel', 2, 3), +(492, 'Lili Schweitzer ', 10, 4), +(497, 'Moritz Liebisch ', 1, 14), +(498, 'Noemi Malaponti', 3, 15), +(499, 'Ben schwarz ', 11, 16), +(500, 'Antonia Eigemann', 1, 17), +(504, 'Luzi Weichert', 6, 21), +(505, 'Paula Haub ', 2, 22), +(506, 'Leony Wittmann', 2, 24), +(507, 'Lilly Ventzke ', 1, 25), +(508, 'Moritz Liebisch ', 2, 26), +(509, 'Leony Wittmann ', 1, 27), +(511, 'Felix Kiersten ', 1, 29), +(513, 'Milde', 7, 32), +(515, 'Dinkelmann', 2, 34), +(516, 'Voss', 1, 35), +(521, 'Jenssen', 1, 40), +(522, 'Sokolowski', 3, 41), +(525, 'Rennert', 4, 44), +(531, 'Neumann', 8, 50), +(532, 'Lilly Ventzke ', 2, 2), +(533, 'Helena neukirch ', 2, 7), +(534, 'Ben schwarz ', 2, 13), +(535, 'Felix Kirsten ', 1, 14), +(536, 'Leony Wittmann ', 2, 17), +(537, 'Lilly Ventzke ', 2, 18), +(538, 'Evelyn Hofmann', 11, 19), +(539, 'Evelyn Hofmann und Lilly Ventzke ', 2, 20), +(541, 'Antonia Eigemann ', 1, 24), +(542, 'Katharina Schmitz ', 2, 25), +(544, 'Rabea Peters ', 2, 31), +(549, 'Voß', 5, 36), +(551, 'Kisters', 3, 38), +(553, 'Krauskopf', 1, 40), +(555, 'Weber', 5, 42), +(564, 'Malo Soulier ', 4, 2), +(565, 'Leon Viktora', 1, 4), +(566, 'Umut Patir', 1, 5), +(567, 'Burak Kulac', 4, 6), +(568, 'Luise Lu', 1, 9), +(569, 'Mery Stern', 1, 10), +(570, 'Leon Viktora', 3, 11), +(571, 'Leon Borgerding ', 5, 14), +(572, 'Mercy Stern ', 1, 15), +(573, 'Nicolas Cunha', 6, 16), +(574, 'Simon Hormes ', 2, 24), +(575, 'Mery Stern ', 1, 25), +(576, 'Leon Borgerding ', 7, 26), +(577, 'Taycan Arslan', 1, 27), +(578, 'Leon Borgerding ', 6, 29), +(581, 'Heße', 2, 35), +(583, 'Heße', 5, 38), +(585, 'Fischer', 2, 40), +(586, 'Liesegang', 1, 42), +(588, 'Heße', 7, 44), +(589, 'Heße', 2, 45), +(590, 'Buchmüller', 1, 46), +(591, 'Heining', 1, 47), +(595, 'Daria', 2, 4), +(597, 'Carlotta, Judith', 1, 20), +(598, 'Burak', 1, 27), +(602, 'Laura R.', 1, 2), +(608, 'Emma ', 1, 8), +(622, 'Delia', 1, 25), +(623, 'Carlotta', 1, 26), +(624, 'Laura R.', 1, 27), +(625, 'Kira ', 2, 29), +(627, 'Wans', 2, 32), +(630, 'Liesegang', 7, 35), +(632, 'Heisig', 2, 37), +(639, 'Wans', 3, 44), +(641, 'Wans', 3, 46), +(643, 'Wans', 1, 48), +(646, 'Gabriel Schacht', 3, 1), +(647, 'Marie Scheidung', 3, 2), +(648, 'Julia Müller', 3, 4), +(649, 'Lavinia Schmitz', 4, 5), +(650, 'Nikita Lauff', 6, 7), +(651, 'Antonia Eigemann', 1, 8), +(652, 'Justin Kauschke', 2, 11), +(653, 'Laura Rüttershoff', 5, 12), +(654, 'Svenja Fischer', 4, 17), +(655, 'Laura Rüttershoff', 5, 18), +(657, 'Amelie Laake', 3, 21), +(658, 'Jan Schliekmann', 4, 22), +(659, 'Annika Koch', 2, 25), +(660, 'Julia Müller', 9, 26), +(661, 'Greta Bentgens', 2, 29), +(662, 'Lavinia Schmitz', 4, 31), +(665, 'Haustein', 2, 34), +(666, 'Koopmann', 13, 35), +(668, 'Heining', 3, 37), +(671, 'Miadowicz', 5, 42), +(673, 'Voß', 2, 44), +(676, 'Schattenberg', 10, 49), +(677, 'Benjamins', 2, 50), +(678, 'Lena Schlayer', 5, 1), +(680, 'Christian Beutel', 1, 4), +(701, 'Mecklenburg', 1, 50), +(705, 'Lisa Baumeister', 1, 7), +(708, 'Manon ', 1, 11), +(709, 'Lilly Ventzke', 1, 13), +(710, 'Julian ', 1, 14), +(711, 'Medina Kascha', 1, 17), +(712, 'Lili Schweitzer', 4, 18), +(714, 'Clemens und Oliver', 11, 20), +(715, 'Romyna', 2, 24), +(716, 'Luis Erpenbach', 5, 25), +(717, 'Linnea ', 1, 27), +(719, 'Evelyn', 1, 31), +(722, 'Klümper', 4, 34), +(723, 'Meyering', 1, 35), +(725, 'Klag', 1, 37), +(729, 'Nolte', 1, 41), +(730, 'Christmann', 1, 42), +(732, 'Watkins', 2, 45), +(733, 'Krauskopf', 4, 46), +(734, 'Niemeier', 1, 47), +(738, 'Lorena Garau ', 1, 4), +(739, 'Jerome Laukamp ', 8, 5), +(740, 'Evelyn Hoffmann ', 1, 6), +(741, 'Marie Scheidung ', 1, 7), +(742, 'Burak ', 1, 12), +(743, 'Clemens Spoo ', 1, 14), +(744, 'Lorena Garau', 3, 17), +(746, 'Luzi und Laura König ', 1, 20), +(747, 'Helena Neukirch ', 1, 22), +(749, 'Helena Neukirch ', 1, 24), +(750, 'Zeynep Efe', 1, 25), +(751, 'Lorena Garau ', 2, 29), +(752, 'Marie Scheidung ', 1, 30), +(753, 'Julius Preußer ', 2, 31), +(754, 'Romberg', 1, 33), +(757, 'Müller', 1, 36), +(759, 'Reiss', 3, 38), +(761, 'Reiss', 3, 40), +(762, 'Hermann', 1, 41), +(766, 'Reiss', 2, 45), +(769, 'Müller', 2, 48), +(770, 'Kleine', 1, 49), +(772, 'Dusanka Djukanovic ', 3, 2), +(773, 'Joline Gillis', 2, 3), +(774, 'Mara Blanke', 3, 4), +(775, 'Charlotte Schirmer ', 1, 17), +(778, 'Sokolowski', 3, 46), +(779, 'Romberg', 2, 48), +(780, 'Greta Bentgens', 1, 2), +(782, 'Tim Müller', 1, 5), +(785, 'Greta Bentgens', 2, 12), +(787, 'Robin Heldt', 1, 14), +(788, 'Yara', 1, 15), +(789, 'Timo K.', 1, 16), +(791, 'Anesa', 1, 18), +(792, 'Amelie D. und Elisa B.', 1, 20), +(795, 'Leonie Kramer', 1, 24), +(796, 'Moritz W.', 1, 25), +(797, 'Lukas Boy', 1, 27), +(798, 'Christian B.', 1, 29), +(799, 'Simon H.', 1, 30), +(800, 'Janni', 1, 31), +(803, 'Liesegang', 1, 34), +(804, 'Buchmüller', 2, 35), +(806, 'Rennert', 10, 37), +(807, 'Koopmann', 5, 38), +(809, 'Schubert', 2, 42), +(815, 'Voß', 1, 49), +(818, 'Julia Müller ', 2, 3), +(821, 'Jan Hövel', 1, 9), +(822, 'Elsa Piplack', 4, 24), +(823, 'Evelyn', 1, 27), +(824, 'Moritz liebisch', 3, 29), +(825, 'Petering', 3, 34), +(827, 'Sokolowski', 1, 44), +(829, 'Leon Viktora', 1, 1), +(831, 'Emma Sprenger', 2, 6), +(832, 'Justin Kauschke', 1, 8), +(834, 'Nico Scholzen', 4, 14), +(835, 'Greta Bentgens', 7, 17), +(836, 'Katharina Schmitz', 3, 18), +(837, 'Malo und Manon', 1, 20), +(838, 'Isabelle Schneider', 2, 23), +(839, 'Leonie Wallusch', 1, 25), +(840, 'Luzi Weichert', 2, 27), +(841, 'Moritz Weihnacht', 1, 28), +(842, 'Isabelle Schneider', 6, 30), +(843, 'Leonie Wallusch', 6, 31), +(846, 'Skorwider', 2, 34), +(852, 'Kahlert', 1, 40), +(859, 'Petering', 2, 47), +(860, 'Sokolowski', 3, 48), +(862, 'König', 1, 50), +(863, 'Jerome Laukamp', 2, 1), +(864, 'Moritz Weihnacht ', 1, 4), +(865, 'Julian Sievers ', 2, 9), +(866, 'Delia Schmitz ', 4, 12), +(867, 'Watkins', 3, 32), +(869, 'Schirra', 2, 36), +(870, 'Liesegang', 1, 37), +(871, 'Liesegang', 1, 38), +(872, 'Klümper', 1, 39), +(874, 'Schirra', 1, 47), +(876, 'Christian Pickardt', 1, 2), +(877, 'Alexander Kupillas', 1, 3), +(878, 'Sean McCormick Silex', 1, 4), +(879, 'Sean McCormick Silex', 1, 7), +(880, 'Tim Müller', 1, 8), +(881, 'Jolan Gerritzen', 1, 11), +(882, 'Laura Korek', 1, 12), +(883, 'Luca Urbanczyk', 1, 14), +(884, 'Mara Blanke', 1, 15), +(885, 'Jerome Liebisch', 1, 16), +(888, 'Christian Pickardt', 1, 19), +(889, 'Christian Pickardt und Luise Luu', 1, 20), +(890, 'Mori Calliope', 1, 21), +(891, 'Christian Beutel', 2, 22), +(892, 'Katharina Schmitz', 1, 23), +(893, 'Hamza Hasoumi', 1, 24), +(894, 'Airi Akitsuki', 1, 25), +(895, 'Christian Pickardt', 2, 26), +(896, 'Luca Urbanczyk ', 1, 27), +(897, 'Lucas Korell', 1, 28), +(898, 'Tim Zentzis', 1, 29), +(899, 'Christian Pickardt', 1, 30), +(900, 'Sean McCormick-Silex', 5, 31), +(901, 'Frings', 2, 32), +(902, 'Kleine', 1, 33), +(904, 'Petering', 2, 35), +(905, 'Herrmann', 1, 36), +(906, 'Neumann', 2, 37), +(907, 'Gehlen', 1, 38), +(909, 'Haustein', 1, 40), +(910, 'Watkins', 2, 41), +(911, 'Kisters', 1, 42), +(912, 'Kirisu', 1, 43), +(913, 'Vollendorf', 1, 44), +(914, 'Gehlen', 1, 45), +(915, 'Watkins', 1, 46), +(917, 'Kleine', 1, 48), +(918, 'Tenhaven', 1, 49), +(919, 'Kisters', 1, 50), +(920, 'Mara Blanke ', 2, 8), +(921, 'Paula May', 1, 18), +(922, ' Chiara Welter', 1, 19), +(923, 'Joline Hackstein', 1, 24), +(924, 'Hamza Hasoumi', 1, 25), +(925, 'Burak Kulac', 3, 28), +(926, 'Helena Neukirch ', 1, 31), +(927, 'Herrmann', 3, 32), +(930, 'Milde', 2, 35), +(931, 'Neumann', 7, 36), +(932, 'Müller', 12, 37), +(933, 'Kleine', 2, 38), +(935, 'Petering', 3, 41), +(937, 'Frau Voß', 35, 43), +(941, 'Sokolowski', 9, 47), +(943, 'Müller', 3, 49), +(944, 'Koopman', 6, 50), +(949, 'Krauskopf', 10, 33), +(950, 'Watkins', 3, 34), +(951, 'Heisig', 4, 38), +(952, 'Koopmann', 21, 39), +(954, 'Krauskopf', 9, 45), +(955, 'Klein', 28, 48), +(957, 'Nicolas Cunha', 2, 1), +(958, 'Lewis Lehner', 5, 4), +(959, 'Simon Bußmann', 4, 5), +(960, 'Luis Erpenbach', 1, 7), +(961, 'Lavinia Schmitz', 8, 10), +(962, 'Lukas Corell', 6, 12), +(963, 'Leon Viktora', 2, 13), +(964, 'Burak Kulac', 1, 14), +(965, 'Romyna Gurny', 3, 15), +(966, 'Lewis Lehner', 2, 16), +(967, 'Simon Hormes', 3, 18), +(968, 'Leon Borgerding', 4, 24), +(969, 'Lukas Corell', 6, 25), +(970, 'Matthias Karl', 1, 27), +(971, 'Lana Peric', 1, 30), +(975, 'Verhoeven', 2, 34), +(976, 'Verhoeven', 2, 36), +(978, 'Herr Voß', 3, 39), +(981, 'Schirra', 6, 42), +(986, 'Heisig', 1, 47), +(988, 'Hennemann', 3, 49), +(990, 'Johanna Böckmann', 3, 1), +(991, 'Pia Kleinwegen', 2, 4), +(992, 'Amelie Laake', 3, 5), +(993, 'Anna Siewert', 1, 6), +(996, 'Klaudia Kapala', 1, 10), +(997, 'Anna Siewert', 2, 13), +(998, 'Lukas Boy', 2, 14), +(999, 'Anna Siewert', 1, 15), +(1000, 'Lena Göhlich', 2, 16), +(1001, 'Melina Kascha', 2, 18), +(1002, 'Melinda Hirschelmann', 2, 19), +(1003, 'lena und yara', 2, 20), +(1004, 'Klaudia Kapala', 1, 22), +(1005, 'Annika Lieblang', 1, 23), +(1006, 'Noemi Malaponti', 2, 24), +(1007, 'Johanna Böckmann', 3, 25), +(1008, 'Jan Hövel', 3, 27), +(1009, 'Amelie Laake', 8, 31), +(1011, 'Kozianka', 1, 33), +(1012, 'Busch', 1, 34), +(1022, 'Fiedler', 1, 44), +(1024, 'Neumann', 1, 46), +(1025, 'Herrmann', 3, 47), +(1030, 'Luise lu', 1, 4), +(1031, 'Christian beutel', 1, 6), +(1032, 'Robin Heldt', 2, 8), +(1033, 'Laura König', 2, 15), +(1041, 'Tenbusch', 1, 35), +(1043, 'Dierks', 4, 37), +(1050, 'Koopmann', 1, 44), +(1064, 'Negar ', 1, 7), +(1066, 'Isabell ', 1, 12), +(1070, 'Hokan ', 1, 27), +(1072, 'Krauskopf', 1, 32), +(1073, 'Nicklas Klaffki ', 2, 6), +(1074, 'Linnea', 2, 7), +(1076, 'Justin Kauschke ', 1, 12), +(1077, 'Laurin ', 2, 13), +(1080, 'Noemi ', 1, 24), +(1081, 'Lewis Lehner ', 1, 25), +(1085, 'Fiedler', 1, 36), +(1087, 'Koopmann', 6, 50), +(1093, 'Shawn ', 2, 27), +(1094, 'reiss', 5, 36), +(1095, 'Watkins', 1, 37), +(1096, 'Dierks', 1, 47), +(1104, 'Lilly schmidtke ', 3, 24), +(1106, 'Luzi ', 2, 26), +(1107, 'Mina ', 1, 29), +(1110, 'reiss', 1, 35), +(1112, 'Petrovic', 4, 41), +(1114, 'Rahbach-Sander', 2, 45), +(1118, 'Tim Krichel ', 1, 1), +(1120, 'Jan Schliekmann', 1, 4), +(1121, 'Justin Kauschke ', 1, 6), +(1123, 'Nicolas Cunha ', 1, 14), +(1124, 'Gabriel Schacht', 1, 17), +(1125, 'Justin Kauschke ', 1, 26), +(1126, 'Amelie Laake ', 2, 30), +(1127, 'Watkins', 2, 39), +(1129, 'Leon Borgerding', 2, 2), +(1130, 'Lars Hogardt', 1, 3), +(1132, 'Melinda', 1, 5), +(1133, 'Ben Schwarz', 1, 7), +(1134, 'Mery ', 1, 13), +(1137, 'Malin', 1, 19), +(1138, 'Gabriel Herr Koopmann', 1, 20), +(1139, 'Meret ', 1, 24), +(1142, 'Nikita Lauff', 1, 29), +(1144, 'Rennert', 3, 34), +(1145, 'Heße', 1, 36), +(1146, 'Frings', 2, 37), +(1147, 'Michler', 1, 41), +(1148, 'Heße', 1, 42), +(1149, 'Heße', 1, 50), +(1152, 'Jennifer ', 1, 9), +(1153, 'Marie', 1, 12), +(1155, 'Jennifer', 1, 15), +(1156, 'Jennifer', 1, 24), +(1158, 'Dusanka', 1, 30), +(1159, 'Emma Sprenger', 2, 2), +(1161, 'Amelie David', 1, 6), +(1162, 'Carlotta Tückmantel', 1, 7), +(1163, 'Victor Kock Sanchez', 1, 14), +(1164, 'Yara Müser', 1, 16), +(1165, 'Luzi Weichert', 1, 18), +(1166, 'Amelie David ', 1, 19), +(1167, 'Evelyn und Yara', 1, 20), +(1168, 'Leon Borgerding', 1, 21), +(1170, 'Luise Lu', 1, 24), +(1171, 'Victor Kock Sanchez ', 1, 26), +(1172, 'Marie Scheidung', 1, 27), +(1173, 'Cedric Damerow', 1, 28), +(1174, 'Schattenberg', 2, 33), +(1176, 'Krauskopf', 1, 38), +(1177, 'Weber', 1, 40), +(1178, 'Evers', 1, 41), +(1179, 'Grade', 1, 46), +(1180, 'Frings', 3, 47), +(1181, 'Liesegang', 1, 49), +(1182, 'Lewis ', 1, 1), +(1183, 'Tim Krichel', 2, 5), +(1184, 'Taycan Arslan', 1, 6), +(1185, 'Lewis Lehner', 3, 8), +(1186, 'Meter Fass', 1, 9), +(1187, 'Anna Wilmschen', 1, 10), +(1188, 'Christian Beutel', 1, 13), +(1189, 'Luise Lu', 1, 15), +(1190, 'Philipp Nothers', 1, 18), +(1191, 'Helena Neukirch', 1, 19), +(1192, 'Malo Soulier + Leon Borgerding', 1, 20), +(1193, 'Mathieu Müller', 1, 21), +(1194, 'Romyna Gurny', 2, 25), +(1195, 'Hendrik Herffs', 1, 27), +(1196, 'Heße', 1, 39), +(1197, 'Grade', 3, 47), +(1198, 'Verhoeven', 1, 50), +(1199, 'Simon Hormes', 1, 1), +(1200, 'Carlotta Tückmantel', 1, 2), +(1201, 'Mathieu Müller', 1, 4), +(1202, 'Manon Schroff', 2, 6), +(1203, 'Greta Bentgens', 3, 9), +(1204, 'Tim Krichel', 2, 14), +(1205, 'Carlotta Tückmantel ', 3, 15), +(1206, 'Luca Urbanczyk', 1, 21), +(1207, 'Felix Kirsten', 2, 22), +(1208, 'Greta Bentgens', 2, 23), +(1209, 'Carlotta Tückmantel ', 2, 24), +(1210, 'Simon Stavroulakis', 3, 25), +(1211, 'Meret Faß', 1, 27), +(1212, 'Johanna Böckmann', 5, 30), +(1213, 'Milde', 2, 37), +(1214, 'Haustein', 2, 39), +(1215, 'Dietz', 2, 41), +(1216, 'Frings', 2, 46), +(1217, 'Buchmüllee', 1, 50), +(1219, 'Gabriel ', 1, 2), +(1222, 'Katharina ', 1, 11), +(1223, 'Laurin ', 3, 14), +(1225, 'Helena', 1, 21), +(1226, 'Timo K. ', 1, 30), +(1228, 'Kozianka', 3, 36), +(1229, 'Lind', 1, 47), +(1230, 'Simon Bußmann', 2, 4), +(1231, 'Isabell Schneider', 1, 5), +(1233, 'Simon Bußmann', 1, 11), +(1234, 'Jolan Gerritzen', 2, 17), +(1236, 'Burak Kulac', 5, 19), +(1238, 'Simon Bußmann', 3, 26), +(1239, 'Jolan Gerritzen', 1, 27), +(1241, 'Lukas Correll', 1, 30), +(1242, 'Klag', 3, 33), +(1243, 'Meier', 1, 37), +(1244, 'Correll', 1, 42), +(1246, 'Niemeier', 1, 44), +(1249, 'Lars', 1, 2), +(1250, 'Helena N', 1, 4), +(1252, 'Hamza H', 1, 7), +(1253, 'Simon B', 1, 8), +(1254, 'Zeynep', 3, 9), +(1255, 'victor', 1, 12), +(1256, 'Eray Arici', 1, 14), +(1258, 'Aysegül G', 2, 18), +(1260, 'Simon B', 1, 23), +(1261, 'Eray Arici', 1, 24), +(1262, 'Lars', 2, 25), +(1263, 'Helena N', 1, 26), +(1266, 'Eray Arici', 1, 31), +(1267, 'sander', 1, 39), +(1268, 'Herrmann', 1, 41), +(1271, 'Herrmann', 2, 48), +(1273, 'Koppmann', 1, 50), +(1276, 'romyna', 1, 6), +(1280, 'Jan s', 1, 17), +(1281, 'dilan', 1, 18), +(1284, 'karolina', 1, 24), +(1287, 'cedric', 1, 31), +(1293, 'Burak Kulac', 1, 1), +(1294, 'Philip Heckoff', 1, 5), +(1295, 'Simon Hormes', 1, 6), +(1296, 'Benjamin Vogt', 2, 7), +(1297, 'Laura Kureck', 1, 9), +(1298, 'Justus Bösken', 1, 14), +(1299, 'Meret Fass', 1, 15), +(1300, 'Sven Mittmann', 2, 19), +(1301, 'Finia und Yara', 1, 20), +(1302, 'Simon Hormes', 1, 23), +(1304, 'Matthias Karl', 1, 28), +(1305, 'Schlossarek', 1, 35), +(1306, 'Schlüter', 1, 39), +(1307, 'Monreal', 1, 41), +(1308, 'Schröer', 1, 49), +(1309, 'Julius Preußer ', 1, 4), +(1310, 'Aysegül Gülten', 1, 8), +(1312, 'Leonie Wallusch', 1, 18), +(1313, 'Justus Böcken und Tim Krichel ', 1, 20), +(1314, 'R', 1, 21), +(1315, 'Clemens Spoo ', 2, 22), +(1316, 'Mina Ercan', 1, 26), +(1317, 'Zeynep Efe', 1, 27), +(1319, 'Helena Neukirch ', 3, 29), +(1321, 'Frings', 1, 39), +(1323, 'Frau Neumann', 1, 43), +(1324, 'Herrmann', 6, 46), +(1325, 'Tim krichel', 1, 4), +(1326, 'Gabriel Schacht', 1, 7), +(1328, 'Nicolas Cunha ', 3, 13), +(1329, 'Gabriel Schacht', 1, 18), +(1330, 'Lewis lehner', 1, 21), +(1331, 'Gabriel Schacht', 1, 23), +(1332, 'Marie Scheidung ', 1, 25), +(1333, 'Christian Beutel ', 1, 26), +(1334, 'Delia Schmitz ', 2, 27), +(1336, 'heisig', 1, 34), +(1337, 'Schattenberg', 1, 35), +(1338, 'kuster', 2, 40), +(1339, 'Müller', 1, 41), +(1340, 'Kozianka', 1, 42), +(1341, 'Emma Sprenger', 1, 1), +(1342, 'Katharina Schmitz', 1, 6), +(1343, 'Chiara', 1, 8), +(1346, 'Julius', 1, 17), +(1347, 'Robin und Timo', 1, 20), +(1348, 'Justus Bösken', 1, 25), +(1349, 'Burak', 1, 26), +(1352, 'Dinkelmann', 1, 35), +(1353, 'Krauskopf', 2, 39), +(1354, 'Sokolowski', 1, 40), +(1355, 'Heße', 2, 46), +(1356, 'Krauskopf', 1, 47), +(1357, 'Sven ', 1, 2), +(1358, 'Maya Lück', 1, 7), +(1359, 'Isabelle', 1, 9), +(1362, 'Nico Lipisnki', 1, 18), +(1363, 'Nouel', 1, 22), +(1365, 'Simon Bussmann', 1, 27), +(1367, 'Meier', 2, 39), +(1368, 'Reiss', 2, 41), +(1369, 'Romberg', 1, 45), +(1370, 'Luca Urbanczyk', 1, 2), +(1373, 'Nico Lipinski ', 3, 14), +(1374, 'Sean ', 1, 21), +(1375, 'Milo Lehnen', 1, 26), +(1376, 'Jan Strohäusel', 1, 27), +(1377, 'Buchmüller', 1, 50), +(1378, 'Greta Bentgens', 1, 3), +(1379, 'Nouel Verberkt ', 1, 4), +(1380, 'Rahrbach-Sander', 1, 33), +(1381, 'Monreal', 1, 34), +(1382, 'Heisig', 1, 39), +(1383, 'Rahbarch-Sander', 1, 41), +(1384, 'Stolte', 2, 43), +(1385, 'Rahrbach-Sander', 1, 46), +(1386, 'Krauskopf', 2, 49), +(1387, 'Herr Schattenberg', 1, 1), +(1388, 'Julius Preußer ', 2, 2), +(1390, 'Lorena Garau', 1, 6), +(1391, 'Zeynep Efe', 4, 7), +(1392, 'Helena Neukirch', 1, 12), +(1393, 'Zeynep Efe', 2, 17), +(1396, 'Marie Scheidung', 1, 23), +(1397, 'Sean McCormick-Silex', 2, 25), +(1398, 'Julius Preußer', 1, 26), +(1399, 'Hendrick Herrfs', 1, 28), +(1400, 'Klag', 1, 32), +(1402, 'Klag', 1, 34), +(1404, 'Klag', 1, 41), +(1406, 'Felix Kirsten', 1, 2), +(1407, 'Felix Kirsten', 1, 3), +(1408, 'Yarkin', 1, 4), +(1409, 'Moritz Weihnacht', 1, 5), +(1411, 'Jerome Laukamp', 1, 7), +(1412, 'Yarkin', 1, 8), +(1413, 'Felix Kirsten', 1, 9), +(1414, 'Felix Kirsten', 1, 12), +(1415, 'Jan Schliekman', 1, 13), +(1416, 'Lars', 1, 14), +(1418, 'Katharina Schmitz', 1, 17), +(1419, 'Ben Schwarz ', 1, 18), +(1420, 'Antonia Eigemann', 1, 19), +(1422, 'Justin Kauschke ', 1, 21), +(1424, 'Felix Kirsten', 1, 23), +(1425, 'Felix Kirsten', 1, 24), +(1426, 'Clemens Spoo', 1, 26), +(1427, 'Felix Kirsten', 1, 27), +(1429, 'Ben Schwarz', 1, 31), +(1430, 'Schirra', 1, 32), +(1431, 'Frings', 1, 34), +(1432, 'Niemeier', 1, 36), +(1433, 'Frings', 1, 40), +(1434, 'frings', 2, 41), +(1435, 'Schirra', 1, 44), +(1436, 'Niemeier', 1, 50), +(1437, 'Svenja', 1, 4), +(1438, 'Amelie Laake', 2, 6), +(1439, 'Elsa', 1, 7), +(1441, 'Amelie Laake', 2, 11), +(1442, 'Karolina Hein', 1, 15), +(1443, 'Sven Mittmann', 1, 16), +(1444, 'Lisa Baumeister und Leony', 1, 20), +(1445, 'Moritz Weihnacht', 3, 21), +(1446, 'Robin Heldt', 1, 22), +(1448, 'Jan Schliekmann', 1, 29), +(1449, 'Verhoeven', 1, 35), +(1450, 'Marciniak', 1, 41), +(1451, 'Herrmann', 2, 44), +(1452, 'Heße', 1, 47), +(1453, 'Amelie Laake', 2, 2), +(1454, 'Evelyn Hofmann', 1, 11), +(1456, 'Anna Siewert', 2, 17), +(1457, 'Amelie Laake', 1, 18), +(1458, 'Moritz Liebisch und Jerome Laukamp', 1, 20), +(1459, 'Sophie Osterloh', 1, 21), +(1460, 'Burak Kulac', 1, 22), +(1461, 'Amelie Laake', 1, 23), +(1462, 'Anna Siewert', 1, 24), +(1464, 'Yarkin Kulaksiz', 3, 28), +(1465, 'Emma Sprenger', 1, 29), +(1466, 'Schlossarek', 1, 38), +(1467, 'Stockkamp', 1, 40), +(1468, 'Tenbusch', 1, 41), +(1469, 'Heining', 1, 42), +(1470, 'Tenbusch', 1, 45), +(1471, 'Klag', 1, 46), +(1472, 'Sven Mittmann', 1, 4), +(1474, 'Jerome Laukamp', 6, 6), +(1475, 'Alina Fünderich', 1, 7), +(1479, 'Jan Hövel', 2, 23), +(1480, 'Dusanka Djukanovic', 2, 24), +(1481, 'Dušanka Djukanovic', 2, 26), +(1482, 'Ioannis Börner', 2, 28), +(1485, 'Moritz Liebisch', 1, 31), +(1486, 'Kozianka', 1, 34), +(1490, 'Watkins', 1, 48), +(1491, 'Jan Hövel', 1, 2), +(1492, 'Finia', 1, 7), +(1493, 'Sven', 1, 8), +(1494, 'Lili Schweizer', 2, 10), +(1499, 'Burak', 1, 31), +(1500, 'Schubert', 1, 36), +(1501, 'Klein', 1, 45), +(1502, 'Schubert', 1, 50), +(1506, 'Rabea', 1, 21), +(1507, 'Noelia', 1, 22), +(1508, 'Burak', 1, 28), +(1510, 'Lavinia', 1, 30), +(1512, 'Reiss', 1, 34), +(1513, 'petrovic', 4, 45), +(1514, 'schubert', 1, 46), +(1515, 'Kira', 1, 1), +(1516, 'Dylan', 1, 2), +(1517, 'Sophie', 1, 3), +(1518, 'Sophie', 1, 4), +(1520, 'Lavinia', 1, 6), +(1522, 'Luis', 1, 9), +(1525, 'Alessio', 1, 13), +(1526, 'Luis', 1, 16), +(1528, 'Sven Mittmann', 6, 21), +(1531, 'Sophie', 1, 24), +(1533, 'Mery', 1, 26), +(1535, 'Sokolowski', 1, 33), +(1536, 'Kahlert', 1, 36), +(1537, 'Packenius', 1, 38), +(1538, 'Mecklenburg', 1, 40), +(1540, 'Frings', 1, 44), +(1541, 'Sokolowski', 1, 45), +(1542, 'Koopmann', 1, 49), +(1546, 'Hendrik Herffs', 2, 13), +(1550, 'Finia Brinkmann', 2, 4), +(1551, 'Maya Springstein und Judith Oppenberg', 5, 20), +(1552, 'Aysegül Gülten', 2, 22), +(1553, 'Amelie Laake', 1, 4), +(1554, 'Burak', 1, 8), +(1556, 'Yarkin ', 1, 22), +(1557, 'Marie Pütter', 1, 24), +(1560, 'Moritz Weihnacht', 1, 31), +(1561, 'Buchmüller', 1, 34), +(1562, 'Neumann', 1, 39), +(1564, 'Klein', 1, 44), +(1565, 'Küppers', 1, 46), +(1566, 'Voß', 1, 47); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `voters` +-- + +CREATE TABLE `voters` ( + `id` bigint(20) NOT NULL, + `candidatesubmit_status` bit(1) DEFAULT NULL, + `email` varchar(255) DEFAULT NULL, + `vote_status` bit(1) DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +-- +-- Dumping data for table `voters` +-- + +INSERT INTO `voters` (`id`, `candidatesubmit_status`, `email`, `vote_status`) VALUES +(1, b'0', 'negar.barzegar@adolfinum.de', b'0'), +(2, b'1', 'simon.berger@adolfinum.de', b'0'), +(3, b'1', 'nicolas.cunha@adolfinum.de', b'0'), +(4, b'1', 'joline.hackstein@adolfinum.de', b'0'), +(5, b'0', 'philip.heckhoff@adolfinum.de', b'0'), +(6, b'1', 'simon.hormes@adolfinum.de', b'0'), +(7, b'1', 'benjamin.vogt@adolfinum.de', b'0'), +(8, b'1', 'taycan.arslan@adolfinum.de', b'0'), +(9, b'0', 'luca.boom@adolfinum.de', b'0'), +(10, b'1', 'leon.borgerding@adolfinum.de', b'0'), +(11, b'1', 'lukas.boy@adolfinum.de', b'0'), +(12, b'0', 'lukas.corell@adolfinum.de', b'0'), +(13, b'0', 'cedric.damerow@adolfinum.de', b'0'), +(14, b'1', 'amelie.david@adolfinum.de', b'0'), +(15, b'1', 'zeynep.efe@adolfinum.de', b'0'), +(16, b'1', 'melinda.hirschelmann@adolfinum.de', b'0'), +(17, b'0', 'lars.hogardt@adolfinum.de', b'0'), +(18, b'0', 'malin.kalnins@adolfinum.de', b'0'), +(19, b'0', 'victor.kocksnchez@adolfinum.de', b'0'), +(20, b'0', 'kamil.kowalczyk@adolfinum.de', b'0'), +(21, b'0', 'romyna.gurny@adolfinum.de', b'0'), +(22, b'0', 'noelia.kocksnchez@adolfinum.de', b'0'), +(23, b'1', 'lili.schweitzer@adolfinum.de', b'0'), +(24, b'0', 'jerome.laukamp@adolfinum.de', b'0'), +(25, b'1', 'elisa.bahl@adolfinum.de', b'0'), +(26, b'0', 'lisa.baumeister@adolfinum.de', b'0'), +(27, b'1', 'johanna.boeckmann@adolfinum.de', b'0'), +(28, b'1', 'svenja.fischer@adolfinum.de', b'0'), +(29, b'1', 'lena.goehlich@adolfinum.de', b'0'), +(30, b'1', 'paula.haub@adolfinum.de', b'0'), +(31, b'0', 'daria.horstmann@adolfinum.de', b'0'), +(32, b'1', 'melina.kascha@adolfinum.de', b'0'), +(33, b'1', 'pia.kleinwegen@adolfinum.de', b'0'), +(34, b'1', 'lauramarie.koenig@adolfinum.de', b'0'), +(35, b'0', 'yarkin.kulaksiz@adolfinum.de', b'0'), +(36, b'1', 'amelie.laake@adolfinum.de', b'0'), +(37, b'1', 'noemi.malaponti@adolfinum.de', b'0'), +(38, b'1', 'yara.mueser@adolfinum.de', b'0'), +(39, b'0', 'paul.nowack@adolfinum.de', b'0'), +(40, b'0', 'luca.ofiera@adolfinum.de', b'0'), +(41, b'0', 'timo.otto@adolfinum.de', b'0'), +(42, b'1', 'linnea.paulukuhn@adolfinum.de', b'0'), +(43, b'1', 'isabelle.schneider@adolfinum.de', b'0'), +(44, b'1', 'nico.scholzen@adolfinum.de', b'0'), +(45, b'0', 'manon.schroff@adolfinum.de', b'0'), +(46, b'1', 'carlotta.tueckmantel@adolfinum.de', b'0'), +(47, b'1', 'simon.bussmann@adolfinum.de', b'0'), +(48, b'1', 'luis.erpenbach@adolfinum.de', b'0'), +(49, b'0', 'meret.fass@adolfinum.de', b'0'), +(50, b'1', 'anna.feldmann@adolfinum.de', b'0'), +(51, b'1', 'alina.fuenderich@adolfinum.de', b'0'), +(52, b'1', 'joline.gilles@adolfinum.de', b'0'), +(53, b'1', 'karolina.hein@adolfinum.de', b'0'), +(54, b'0', 'robin.heldt@adolfinum.de', b'0'), +(55, b'1', 'annika.koch@adolfinum.de', b'0'), +(56, b'1', 'dusanka.djukanovic@adolfinum.de', b'0'), +(57, b'1', 'aaron.glos@adolfinum.de', b'0'), +(58, b'0', 'ayseguel.guelten@adolfinum.de', b'0'), +(59, b'1', 'hamza.hasoumi@adolfinum.de', b'0'), +(60, b'1', 'evelyn.hofmann@adolfinum.de', b'0'), +(61, b'0', 'burakmustafa.kulac@adolfinum.de', b'0'), +(62, b'0', 'dominik.kwitowski@adolfinum.de', b'0'), +(63, b'1', 'julia.lener@adolfinum.de', b'0'), +(64, b'0', 'paula.may@adolfinum.de', b'0'), +(65, b'0', 'luca.mueller@adolfinum.de', b'0'), +(66, b'0', 'mathieu.mueller@adolfinum.de', b'0'), +(67, b'1', 'marie.puetter@adolfinum.de', b'0'), +(68, b'0', 'hendrik.herffs@adolfinum.de', b'0'), +(69, b'1', 'greta.bentgens@adolfinum.de', b'0'), +(70, b'0', 'sven.mittmann@adolfinum.de', b'0'), +(71, b'1', 'jan.hoevel@adolfinum.de', b'0'), +(72, b'0', 'tim.krichel@adolfinum.de', b'0'), +(73, b'0', 'milo.lehnen@adolfinum.de', b'0'), +(74, b'0', 'lewis.lehner@adolfinum.de', b'0'), +(75, b'1', 'nico.lipinski@adolfinum.de', b'0'), +(76, b'1', 'luise.lu@adolfinum.de', b'0'), +(77, b'1', 'maike.nawarotzky@adolfinum.de', b'0'), +(78, b'0', 'rabea.peters@adolfinum.de', b'0'), +(79, b'1', 'patrick.preuss@adolfinum.de', b'0'), +(80, b'1', 'julius.preusser@adolfinum.de', b'0'), +(81, b'1', 'marie.scheidung@adolfinum.de', b'0'), +(82, b'1', 'lena.schlayer@adolfinum.de', b'0'), +(83, b'1', 'emma.sprenger@adolfinum.de', b'0'), +(84, b'1', 'klaudia.kapala@adolfinum.de', b'0'), +(85, b'1', 'gabriel.schacht@adolfinum.de', b'0'), +(86, b'1', 'delia.schmitz@adolfinum.de', b'0'), +(87, b'1', 'katharina.schmitz@adolfinum.de', b'0'), +(88, b'0', 'laurin.severith@adolfinum.de', b'0'), +(89, b'1', 'julian.sievers@adolfinum.de', b'0'), +(90, b'0', 'anna.siewert@adolfinum.de', b'0'), +(91, b'1', 'chiara.welter@adolfinum.de', b'0'), +(92, b'0', 'kira.winzen@adolfinum.de', b'0'), +(93, b'0', 'tim.zentzis@adolfinum.de', b'0'), +(94, b'1', 'justus.boesken@adolfinum.de', b'0'), +(95, b'1', 'finia.brinkmann@adolfinum.de', b'0'), +(96, b'0', 'anesa.cavcic@adolfinum.de', b'0'), +(97, b'1', 'antonia.eigemann@adolfinum.de', b'0'), +(98, b'1', 'nico.hahn@adolfinum.de', b'0'), +(99, b'0', 'timo.kohlmann@adolfinum.de', b'0'), +(100, b'0', 'alexander.kupillas@adolfinum.de', b'0'), +(101, b'0', 'alexander.neumann@adolfinum.de', b'0'), +(102, b'1', 'sophie.osterloh@adolfinum.de', b'0'), +(103, b'0', 'clemens.palinsky@adolfinum.de', b'0'), +(104, b'0', 'oliver.palinsky@adolfinum.de', b'0'), +(105, b'0', 'hendrik.pierlo@adolfinum.de', b'0'), +(106, b'0', 'lilly.schmidtke@adolfinum.de', b'0'), +(107, b'0', 'mara.spicker@adolfinum.de', b'0'), +(108, b'0', 'anhtrung.vo@adolfinum.de', b'0'), +(109, b'0', 'ben.schwarz@adolfinum.de', b'0'), +(110, b'0', 'luca.urbanczyk@adolfinum.de', b'0'), +(111, b'1', 'helena.neukirch@adolfinum.de', b'0'), +(112, b'0', 'nikita.lauff@adolfinum.de', b'0'), +(113, b'1', 'jennifer.lengard@adolfinum.de', b'0'), +(114, b'1', 'julia.mueller@adolfinum.de', b'0'), +(115, b'1', 'philipp.nothers@adolfinum.de', b'0'), +(116, b'0', 'judith.oppenberg@adolfinum.de', b'0'), +(117, b'0', 'dilan.oeztuerk@adolfinum.de', b'0'), +(118, b'0', 'malo.soulier@adolfinum.de', b'0'), +(119, b'0', 'mery.stern@adolfinum.de', b'0'), +(120, b'1', 'nouel.verberkt@adolfinum.de', b'0'), +(121, b'0', 'leon.viktora@adolfinum.de', b'0'), +(122, b'1', 'pia.anthes@adolfinum.de', b'0'), +(123, b'1', 'eray.arici@adolfinum.de', b'0'), +(124, b'0', 'christian.beutel@adolfinum.de', b'0'), +(125, b'1', 'mara.blanke@adolfinum.de', b'0'), +(126, b'1', 'lilly.ventzke@adolfinum.de', b'0'), +(127, b'1', 'luzi.weichert@adolfinum.de', b'0'), +(128, b'0', 'moritz.weihnacht@adolfinum.de', b'0'), +(129, b'1', 'leony.wittmann@adolfinum.de', b'0'), +(130, b'1', 'annika.lieblang@adolfinum.de', b'0'), +(131, b'1', 'leonie.wallusch@adolfinum.de', b'0'), +(132, b'1', 'felix.kirsten@adolfinum.de', b'0'), +(133, b'0', 'moritz.liebisch@adolfinum.de', b'0'), +(134, b'1', 'christian.pickardt@adolfinum.de', b'0'), +(135, b'0', 'jan.schliekmann@adolfinum.de', b'0'), +(136, b'1', 'elsa.piplack@adolfinum.de', b'0'), +(137, b'0', 'jolan.gerritzen@adolfinum.de', b'0'), +(138, b'1', 'lorena.garau@adolfinum.de', b'0'), +(139, b'0', 'matthias.karl@adolfinum.de', b'0'), +(140, b'0', 'justin.kauschke@adolfinum.de', b'0'), +(141, b'0', 'leonie.kramer@adolfinum.de', b'0'), +(142, b'0', 'laura.kurreck@adolfinum.de', b'0'), +(143, b'0', 'maya.lueck@adolfinum.de', b'0'), +(144, b'0', 'sean.mccormick-silex@adolfinum.de', b'0'), +(145, b'0', 'tim.mueller@adolfinum.de', b'0'), +(146, b'1', 'lana.peric@adolfinum.de', b'0'), +(147, b'1', 'jan.pintostrohhaeusl@adolfinum.de', b'0'), +(148, b'1', 'laura.ruettershoff@adolfinum.de', b'0'), +(149, b'0', 'charlotte.schirmer@adolfinum.de', b'0'), +(150, b'0', 'lavinia.schmitz@adolfinum.de', b'0'), +(151, b'0', 'victor.schroers@adolfinum.de', b'0'), +(152, b'0', 'gerrit.schulz@adolfinum.de', b'0'), +(153, b'0', 'clemens.spoo@adolfinum.de', b'0'), +(154, b'0', 'simon.stavroulakis@adolfinum.de', b'0'), +(155, b'0', 'ioannis.boerner@adolfinum.de', b'0'), +(156, b'0', 'marwa.nafouti@adolfinum.de', b'0'), +(157, b'0', 'niklas.klaffki@adolfinum.de', b'0'), +(158, b'0', 'alessio.padovano@adolfinum.de', b'0'), +(159, b'0', 'jonas.breder@adolfinum.de', b'0'), +(160, b'0', 'ben.maas@adolfinum.de', b'0'), +(161, b'0', 'mina.ercan@adolfinum.de', b'0'), +(162, b'0', 'maya.springstein@adolfinum.de', b'0'), +(163, b'0', 'can.patir@adolfinum.de', b'0'); + +-- +-- Indexes for dumped tables +-- + +-- +-- Indexes for table `auth_codes` +-- +ALTER TABLE `auth_codes` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `candidates` +-- +ALTER TABLE `candidates` + ADD PRIMARY KEY (`id`), + ADD KEY `FKahv5ay5uut18brh5v69sfeggh` (`category_id`); + +-- +-- Indexes for table `categories` +-- +ALTER TABLE `categories` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `possible_candidates` +-- +ALTER TABLE `possible_candidates` + ADD PRIMARY KEY (`id`), + ADD KEY `FK78ng7m4e2cn5j59yadagcnhbs` (`category_id`); + +-- +-- Indexes for table `voters` +-- +ALTER TABLE `voters` + ADD PRIMARY KEY (`id`); + +-- +-- AUTO_INCREMENT for dumped tables +-- + +-- +-- AUTO_INCREMENT for table `auth_codes` +-- +ALTER TABLE `auth_codes` + MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=136; + +-- +-- AUTO_INCREMENT for table `candidates` +-- +ALTER TABLE `candidates` + MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `categories` +-- +ALTER TABLE `categories` + MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51; + +-- +-- AUTO_INCREMENT for table `possible_candidates` +-- +ALTER TABLE `possible_candidates` + MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1568; + +-- +-- AUTO_INCREMENT for table `voters` +-- +ALTER TABLE `voters` + MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=164; + +-- +-- Constraints for dumped tables +-- + +-- +-- Constraints for table `candidates` +-- +ALTER TABLE `candidates` + ADD CONSTRAINT `FKahv5ay5uut18brh5v69sfeggh` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`); + +-- +-- Constraints for table `possible_candidates` +-- +ALTER TABLE `possible_candidates` + ADD CONSTRAINT `FK78ng7m4e2cn5j59yadagcnhbs` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`); +COMMIT; + +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; diff --git a/logs/Voting.log b/logs/Voting.log index d31b40e..b755cfc 100644 --- a/logs/Voting.log +++ b/logs/Voting.log @@ -1,531 +1,218 @@ -2021-01-04 00:00:49,389 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2021-01-04 00:00:49,393 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2021-01-04 00:00:49,398 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2021-01-04 00:00:49,412 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2021-01-04 00:00:51,638 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 35819 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2021-01-04 00:00:51,641 INFO [restartedMain] No active profile set, falling back to default profiles: default -2021-01-04 00:00:51,691 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-04 00:00:51,692 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-04 00:00:52,103 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2021-01-04 00:00:52,153 INFO [restartedMain] Finished Spring Data repository scanning in 44ms. Found 6 JPA repository interfaces. -2021-01-04 00:00:52,821 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2021-01-04 00:00:52,832 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2021-01-04 00:00:52,832 INFO [restartedMain] Starting service [Tomcat] -2021-01-04 00:00:52,833 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2021-01-04 00:00:52,893 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2021-01-04 00:00:52,894 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1202 ms -2021-01-04 00:00:53,064 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2021-01-04 00:00:53,098 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2021-01-04 00:00:53,194 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2021-01-04 00:00:53,266 INFO [restartedMain] HikariPool-1 - Starting... -2021-01-04 00:00:53,643 INFO [restartedMain] HikariPool-1 - Start completed. -2021-01-04 00:00:53,670 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2021-01-04 00:00:54,308 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2021-01-04 00:00:54,317 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2021-01-04 00:00:54,329 INFO [restartedMain] LiveReload server is running on port 35729 -2021-01-04 00:00:54,735 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false -2021-01-04 00:00:55,057 WARN [restartedMain] Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'votingController': Invocation of init method failed; nested exception is org.hibernate.LazyInitializationException: could not initialize proxy [com.github.cato447.AbizeitungVotingSystem.entities.Category#1] - no Session -2021-01-04 00:00:55,059 INFO [restartedMain] Closing JPA EntityManagerFactory for persistence unit 'default' -2021-01-04 00:00:55,064 INFO [restartedMain] HikariPool-1 - Shutdown initiated... -2021-01-04 00:00:55,073 INFO [restartedMain] HikariPool-1 - Shutdown completed. -2021-01-04 00:00:55,077 INFO [restartedMain] Stopping service [Tomcat] -2021-01-04 00:00:55,089 INFO [restartedMain] - -Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. -2021-01-04 00:00:55,092 ERROR [restartedMain] Application run failed -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'votingController': Invocation of init method failed; nested exception is org.hibernate.LazyInitializationException: could not initialize proxy [com.github.cato447.AbizeitungVotingSystem.entities.Category#1] - no Session - at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:160) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:415) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1786) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:594) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:516) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:324) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:322) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:202) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:897) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:879) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:551) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:143) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:758) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:750) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:397) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:315) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1237) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226) - at com.github.cato447.AbizeitungVotingSystem.AbizeitungVotingSystemApplication.main(AbizeitungVotingSystemApplication.java:14) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:566) - at org.springframework.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) -Caused by: org.hibernate.LazyInitializationException: could not initialize proxy [com.github.cato447.AbizeitungVotingSystem.entities.Category#1] - no Session - at org.hibernate.proxy.AbstractLazyInitializer.initialize(AbstractLazyInitializer.java:170) - at org.hibernate.proxy.AbstractLazyInitializer.getImplementation(AbstractLazyInitializer.java:310) - at org.hibernate.proxy.pojo.bytebuddy.ByteBuddyInterceptor.intercept(ByteBuddyInterceptor.java:45) - at org.hibernate.proxy.ProxyConfiguration$InterceptorDispatcher.intercept(ProxyConfiguration.java:95) - at com.github.cato447.AbizeitungVotingSystem.entities.Category$HibernateProxy$DGuctNKV.getName(Unknown Source) - at com.github.cato447.AbizeitungVotingSystem.table.TableAction.setUpCandidates(TableAction.java:125) - at com.github.cato447.AbizeitungVotingSystem.controller.VotingController.init(VotingController.java:90) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:566) - at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:389) - at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:333) - at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:157) - ... 24 common frames omitted -2021-01-04 00:01:52,580 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 36071 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2021-01-04 00:01:52,586 INFO [restartedMain] No active profile set, falling back to default profiles: default -2021-01-04 00:01:52,648 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-04 00:01:52,648 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-04 00:01:53,068 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2021-01-04 00:01:53,121 INFO [restartedMain] Finished Spring Data repository scanning in 47ms. Found 6 JPA repository interfaces. -2021-01-04 00:01:53,779 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2021-01-04 00:01:53,788 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2021-01-04 00:01:53,789 INFO [restartedMain] Starting service [Tomcat] -2021-01-04 00:01:53,789 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2021-01-04 00:01:53,856 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2021-01-04 00:01:53,856 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1207 ms -2021-01-04 00:01:54,032 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2021-01-04 00:01:54,065 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2021-01-04 00:01:54,169 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2021-01-04 00:01:54,255 INFO [restartedMain] HikariPool-1 - Starting... -2021-01-04 00:01:54,608 INFO [restartedMain] HikariPool-1 - Start completed. -2021-01-04 00:01:54,633 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2021-01-04 00:01:55,280 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2021-01-04 00:01:55,288 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2021-01-04 00:01:55,302 INFO [restartedMain] LiveReload server is running on port 35729 -2021-01-04 00:01:55,714 INFO [restartedMain] Program started with arguments: votingPhase=true mottoPhase=false addingPhase=false -2021-01-04 00:01:58,665 INFO [restartedMain] Candidates successfully set up -2021-01-04 00:01:58,698 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2021-01-04 00:01:58,803 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-04 00:01:58,966 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2021-01-04 00:01:58,986 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2021-01-04 00:01:58,999 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 6.763 seconds (JVM running for 7.385) -2021-01-04 00:02:54,786 INFO [http-nio-8000-exec-2] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-04 00:02:54,786 INFO [http-nio-8000-exec-2] Initializing Servlet 'dispatcherServlet' -2021-01-04 00:02:54,791 INFO [http-nio-8000-exec-2] Completed initialization in 5 ms -2021-01-04 00:02:58,585 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2021-01-04 00:02:58,605 WARN [http-nio-8000-exec-4] no code -2021-01-04 00:03:14,557 WARN [http-nio-8000-exec-7] 980176 -2021-01-04 00:03:14,557 WARN [http-nio-8000-exec-7] matched -2021-01-04 00:09:40,113 WARN [http-nio-8000-exec-3] Simon.bussmann@adolfinum.de -2021-01-04 00:09:40,115 WARN [http-nio-8000-exec-3] no code -2021-01-04 00:09:57,679 WARN [http-nio-8000-exec-5] 366680 -2021-01-04 00:09:57,680 WARN [http-nio-8000-exec-5] matched -2021-01-04 00:10:45,401 WARN [http-nio-8000-exec-2] simon.bussmann@adolfinum.de -2021-01-04 00:10:45,404 WARN [http-nio-8000-exec-2] no code -2021-01-04 00:11:08,813 WARN [http-nio-8000-exec-3] 045081 -2021-01-04 00:11:08,814 WARN [http-nio-8000-exec-3] matched -2021-01-04 00:52:46,403 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 40643 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2021-01-04 00:52:46,407 INFO [restartedMain] No active profile set, falling back to default profiles: default -2021-01-04 00:52:46,499 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-04 00:52:46,500 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-04 00:52:46,913 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2021-01-04 00:52:46,971 INFO [restartedMain] Finished Spring Data repository scanning in 51ms. Found 6 JPA repository interfaces. -2021-01-04 00:52:47,721 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2021-01-04 00:52:47,733 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2021-01-04 00:52:47,734 INFO [restartedMain] Starting service [Tomcat] -2021-01-04 00:52:47,734 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2021-01-04 00:52:47,792 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2021-01-04 00:52:47,792 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1292 ms -2021-01-04 00:52:47,989 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2021-01-04 00:52:48,040 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2021-01-04 00:52:48,127 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2021-01-04 00:52:48,190 INFO [restartedMain] HikariPool-1 - Starting... -2021-01-04 00:52:48,549 INFO [restartedMain] HikariPool-1 - Start completed. -2021-01-04 00:52:48,581 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2021-01-04 00:52:49,215 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2021-01-04 00:52:49,224 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2021-01-04 00:52:49,241 INFO [restartedMain] LiveReload server is running on port 35729 -2021-01-04 00:52:49,654 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2021-01-04 00:52:49,884 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2021-01-04 00:52:49,986 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-04 00:52:50,184 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2021-01-04 00:52:50,202 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2021-01-04 00:52:50,213 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.194 seconds (JVM running for 4.896) -2021-01-04 00:53:17,803 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-04 00:53:17,803 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2021-01-04 00:53:17,815 INFO [http-nio-8000-exec-1] Completed initialization in 12 ms -2021-01-04 00:53:17,851 WARN [http-nio-8000-exec-1] in Bounds -2021-01-04 00:53:20,237 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2021-01-04 00:53:20,252 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de has already submitted its candidates -2021-01-04 00:54:00,564 WARN [http-nio-8000-exec-7] in Bounds -2021-01-04 00:54:02,641 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de -2021-01-04 00:54:18,658 WARN [http-nio-8000-exec-2] matched -2021-01-04 00:54:50,636 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2021-01-04 00:54:50,639 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2021-01-04 00:54:50,642 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2021-01-04 00:54:50,657 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2021-01-04 00:54:52,942 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 41069 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2021-01-04 00:54:52,946 INFO [restartedMain] No active profile set, falling back to default profiles: default -2021-01-04 00:54:53,010 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-04 00:54:53,011 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-04 00:54:53,415 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2021-01-04 00:54:53,478 INFO [restartedMain] Finished Spring Data repository scanning in 56ms. Found 6 JPA repository interfaces. -2021-01-04 00:54:54,188 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2021-01-04 00:54:54,198 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2021-01-04 00:54:54,199 INFO [restartedMain] Starting service [Tomcat] -2021-01-04 00:54:54,199 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2021-01-04 00:54:54,258 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2021-01-04 00:54:54,259 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1248 ms -2021-01-04 00:54:54,462 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2021-01-04 00:54:54,518 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2021-01-04 00:54:54,612 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2021-01-04 00:54:54,684 INFO [restartedMain] HikariPool-1 - Starting... -2021-01-04 00:54:55,051 INFO [restartedMain] HikariPool-1 - Start completed. -2021-01-04 00:54:55,082 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2021-01-04 00:54:55,801 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2021-01-04 00:54:55,811 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2021-01-04 00:54:55,829 INFO [restartedMain] LiveReload server is running on port 35729 -2021-01-04 00:54:56,282 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2021-01-04 00:54:56,535 INFO [restartedMain] Categories successfully set up -2021-01-04 00:54:56,624 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2021-01-04 00:54:56,753 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-04 00:54:56,967 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2021-01-04 00:54:56,984 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2021-01-04 00:54:56,995 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.438 seconds (JVM running for 5.061) -2021-01-04 00:55:47,131 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2021-01-04 00:55:47,134 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2021-01-04 00:55:47,137 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2021-01-04 00:55:47,147 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2021-01-04 00:55:49,350 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 41256 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2021-01-04 00:55:49,354 INFO [restartedMain] No active profile set, falling back to default profiles: default -2021-01-04 00:55:49,431 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-04 00:55:49,432 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-04 00:55:49,867 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2021-01-04 00:55:49,925 INFO [restartedMain] Finished Spring Data repository scanning in 52ms. Found 6 JPA repository interfaces. -2021-01-04 00:55:50,632 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2021-01-04 00:55:50,642 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2021-01-04 00:55:50,643 INFO [restartedMain] Starting service [Tomcat] -2021-01-04 00:55:50,643 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2021-01-04 00:55:50,702 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2021-01-04 00:55:50,703 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1271 ms -2021-01-04 00:55:50,870 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2021-01-04 00:55:50,909 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2021-01-04 00:55:51,000 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2021-01-04 00:55:51,071 INFO [restartedMain] HikariPool-1 - Starting... -2021-01-04 00:55:51,433 INFO [restartedMain] HikariPool-1 - Start completed. -2021-01-04 00:55:51,454 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2021-01-04 00:55:52,136 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2021-01-04 00:55:52,144 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2021-01-04 00:55:52,162 INFO [restartedMain] LiveReload server is running on port 35729 -2021-01-04 00:55:52,583 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2021-01-04 00:55:52,819 INFO [restartedMain] Categories successfully set up -2021-01-04 00:55:52,924 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2021-01-04 00:55:53,037 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-04 00:55:53,244 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2021-01-04 00:55:53,262 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2021-01-04 00:55:53,274 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.304 seconds (JVM running for 4.939) -2021-01-04 00:56:06,936 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-04 00:56:06,937 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2021-01-04 00:56:06,943 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms -2021-01-04 00:56:06,987 WARN [http-nio-8000-exec-1] wrong -2021-01-04 00:56:27,658 WARN [http-nio-8000-exec-7] matched -2021-01-04 00:57:16,096 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2021-01-04 00:57:16,098 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2021-01-04 00:57:16,102 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2021-01-04 00:57:16,118 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2021-01-04 00:57:18,376 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 41573 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2021-01-04 00:57:18,381 INFO [restartedMain] No active profile set, falling back to default profiles: default -2021-01-04 00:57:18,457 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-04 00:57:18,457 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-04 00:57:18,888 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2021-01-04 00:57:18,953 INFO [restartedMain] Finished Spring Data repository scanning in 58ms. Found 6 JPA repository interfaces. -2021-01-04 00:57:19,618 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2021-01-04 00:57:19,627 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2021-01-04 00:57:19,628 INFO [restartedMain] Starting service [Tomcat] -2021-01-04 00:57:19,628 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2021-01-04 00:57:19,694 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2021-01-04 00:57:19,694 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1236 ms -2021-01-04 00:57:19,873 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2021-01-04 00:57:19,907 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2021-01-04 00:57:20,002 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2021-01-04 00:57:20,083 INFO [restartedMain] HikariPool-1 - Starting... -2021-01-04 00:57:20,501 INFO [restartedMain] HikariPool-1 - Start completed. -2021-01-04 00:57:20,522 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2021-01-04 00:57:21,158 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2021-01-04 00:57:21,167 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2021-01-04 00:57:21,182 INFO [restartedMain] LiveReload server is running on port 35729 -2021-01-04 00:57:21,614 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2021-01-04 00:57:21,839 INFO [restartedMain] Categories successfully set up -2021-01-04 00:57:21,938 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2021-01-04 00:57:22,050 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-04 00:57:22,271 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2021-01-04 00:57:22,289 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2021-01-04 00:57:22,303 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.331 seconds (JVM running for 4.978) -2021-01-04 01:10:30,792 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-04 01:10:30,793 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2021-01-04 01:10:30,801 INFO [http-nio-8000-exec-1] Completed initialization in 7 ms -2021-01-04 01:10:30,827 WARN [http-nio-8000-exec-1] in Bounds -2021-01-04 01:10:35,161 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2021-01-04 01:10:55,660 WARN [http-nio-8000-exec-6] matched -2021-01-04 01:11:31,032 WARN [http-nio-8000-exec-10] in Bounds -2021-01-04 01:11:44,561 WARN [http-nio-8000-exec-2] in Bounds -2021-01-04 01:12:00,937 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2021-01-04 01:45:45,703 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2021-01-04 01:45:45,707 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2021-01-04 01:45:45,710 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2021-01-04 01:45:45,723 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2021-01-04 01:45:48,882 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 69675 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2021-01-04 01:45:48,885 INFO [restartedMain] No active profile set, falling back to default profiles: default -2021-01-04 01:45:48,946 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-04 01:45:48,947 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-04 01:45:49,494 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2021-01-04 01:45:49,558 INFO [restartedMain] Finished Spring Data repository scanning in 57ms. Found 6 JPA repository interfaces. -2021-01-04 01:45:50,235 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2021-01-04 01:45:50,243 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2021-01-04 01:45:50,244 INFO [restartedMain] Starting service [Tomcat] -2021-01-04 01:45:50,244 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2021-01-04 01:45:50,299 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2021-01-04 01:45:50,299 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1352 ms -2021-01-04 01:45:50,467 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2021-01-04 01:45:50,502 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2021-01-04 01:45:50,593 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2021-01-04 01:45:50,661 INFO [restartedMain] HikariPool-1 - Starting... -2021-01-04 01:45:51,019 INFO [restartedMain] HikariPool-1 - Start completed. -2021-01-04 01:45:51,040 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2021-01-04 01:45:51,637 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2021-01-04 01:45:51,642 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2021-01-04 01:45:51,653 INFO [restartedMain] LiveReload server is running on port 35729 -2021-01-04 01:45:52,079 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2021-01-04 01:45:52,808 INFO [restartedMain] Categories successfully set up -2021-01-04 01:45:52,872 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2021-01-04 01:45:52,968 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-04 01:45:53,130 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2021-01-04 01:45:53,147 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2021-01-04 01:45:53,157 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.628 seconds (JVM running for 5.231) -2021-01-04 01:46:12,002 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-04 01:46:12,002 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2021-01-04 01:46:12,007 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms -2021-01-04 01:46:12,038 WARN [http-nio-8000-exec-1] in Bounds -2021-01-04 01:46:14,776 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de -2021-01-04 01:46:28,201 WARN [http-nio-8000-exec-6] matched -2021-01-04 01:48:25,518 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2021-01-04 01:48:25,522 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2021-01-04 01:48:25,525 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2021-01-04 01:48:25,536 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2021-01-04 01:48:28,739 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 69907 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2021-01-04 01:48:28,741 INFO [restartedMain] No active profile set, falling back to default profiles: default -2021-01-04 01:48:28,801 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-04 01:48:28,802 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-04 01:48:29,187 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2021-01-04 01:48:29,239 INFO [restartedMain] Finished Spring Data repository scanning in 46ms. Found 6 JPA repository interfaces. -2021-01-04 01:48:29,874 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2021-01-04 01:48:29,886 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2021-01-04 01:48:29,887 INFO [restartedMain] Starting service [Tomcat] -2021-01-04 01:48:29,888 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2021-01-04 01:48:29,950 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2021-01-04 01:48:29,951 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1149 ms -2021-01-04 01:48:30,107 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2021-01-04 01:48:30,143 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2021-01-04 01:48:30,242 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2021-01-04 01:48:30,306 INFO [restartedMain] HikariPool-1 - Starting... -2021-01-04 01:48:30,636 INFO [restartedMain] HikariPool-1 - Start completed. -2021-01-04 01:48:30,655 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2021-01-04 01:48:31,249 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2021-01-04 01:48:31,254 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2021-01-04 01:48:31,268 INFO [restartedMain] LiveReload server is running on port 35729 -2021-01-04 01:48:31,636 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2021-01-04 01:48:31,861 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2021-01-04 01:48:31,957 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-04 01:48:32,131 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2021-01-04 01:48:32,152 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2021-01-04 01:48:32,162 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.777 seconds (JVM running for 4.348) -2021-01-04 01:48:40,988 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-04 01:48:40,989 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2021-01-04 01:48:40,994 INFO [http-nio-8000-exec-1] Completed initialization in 5 ms -2021-01-04 01:48:41,019 WARN [http-nio-8000-exec-1] in Bounds -2021-01-04 01:48:43,036 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2021-01-04 01:48:56,138 WARN [http-nio-8000-exec-5] matched -2021-01-04 01:50:00,090 ERROR [http-nio-8000-exec-8] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.ArrayIndexOutOfBoundsException: Index 1 out of bounds for length 1] with root cause -java.lang.ArrayIndexOutOfBoundsException: Index 1 out of bounds for length 1 - at com.github.cato447.AbizeitungVotingSystem.controller.VotingController.candidateSaving(VotingController.java:221) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:566) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:878) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:792) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.base/java.lang.Thread.run(Thread.java:829) -2021-01-04 01:51:39,048 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2021-01-04 01:51:39,051 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2021-01-04 01:51:39,055 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2021-01-04 01:51:39,070 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2021-01-04 01:51:42,185 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 70219 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2021-01-04 01:51:42,188 INFO [restartedMain] No active profile set, falling back to default profiles: default -2021-01-04 01:51:42,247 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-04 01:51:42,247 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-04 01:51:42,648 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2021-01-04 01:51:42,695 INFO [restartedMain] Finished Spring Data repository scanning in 41ms. Found 6 JPA repository interfaces. -2021-01-04 01:51:43,313 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2021-01-04 01:51:43,322 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2021-01-04 01:51:43,322 INFO [restartedMain] Starting service [Tomcat] -2021-01-04 01:51:43,323 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2021-01-04 01:51:43,388 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2021-01-04 01:51:43,389 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1141 ms -2021-01-04 01:51:43,554 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2021-01-04 01:51:43,588 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2021-01-04 01:51:43,675 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2021-01-04 01:51:43,742 INFO [restartedMain] HikariPool-1 - Starting... -2021-01-04 01:51:44,116 INFO [restartedMain] HikariPool-1 - Start completed. -2021-01-04 01:51:44,136 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2021-01-04 01:51:44,743 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2021-01-04 01:51:44,750 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2021-01-04 01:51:44,761 INFO [restartedMain] LiveReload server is running on port 35729 -2021-01-04 01:51:45,215 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2021-01-04 01:51:45,448 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2021-01-04 01:51:45,546 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-04 01:51:45,725 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2021-01-04 01:51:45,742 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2021-01-04 01:51:45,752 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.915 seconds (JVM running for 4.496) -2021-01-04 01:59:41,880 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2021-01-04 01:59:41,885 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2021-01-04 01:59:41,890 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2021-01-04 01:59:41,905 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2021-01-04 01:59:45,027 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 70580 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2021-01-04 01:59:45,030 INFO [restartedMain] No active profile set, falling back to default profiles: default -2021-01-04 01:59:45,087 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-04 01:59:45,088 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-04 01:59:45,506 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2021-01-04 01:59:45,553 INFO [restartedMain] Finished Spring Data repository scanning in 41ms. Found 6 JPA repository interfaces. -2021-01-04 01:59:46,181 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2021-01-04 01:59:46,192 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2021-01-04 01:59:46,193 INFO [restartedMain] Starting service [Tomcat] -2021-01-04 01:59:46,193 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2021-01-04 01:59:46,250 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2021-01-04 01:59:46,251 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1163 ms -2021-01-04 01:59:46,413 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2021-01-04 01:59:46,450 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2021-01-04 01:59:46,539 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2021-01-04 01:59:46,609 INFO [restartedMain] HikariPool-1 - Starting... -2021-01-04 01:59:46,960 INFO [restartedMain] HikariPool-1 - Start completed. -2021-01-04 01:59:46,987 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2021-01-04 01:59:47,589 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2021-01-04 01:59:47,597 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2021-01-04 01:59:47,609 INFO [restartedMain] LiveReload server is running on port 35729 -2021-01-04 01:59:48,005 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2021-01-04 01:59:48,237 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2021-01-04 01:59:48,333 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-04 01:59:48,494 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2021-01-04 01:59:48,514 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2021-01-04 01:59:48,523 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.849 seconds (JVM running for 4.447) -2021-01-04 01:59:58,093 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-04 01:59:58,094 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' -2021-01-04 01:59:58,100 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms -2021-01-04 01:59:58,120 WARN [http-nio-8000-exec-1] in Bounds -2021-01-04 02:00:05,646 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de -2021-01-04 02:00:20,714 WARN [http-nio-8000-exec-5] matched -2021-01-04 02:03:40,152 WARN [http-nio-8000-exec-1] in Bounds -2021-01-04 02:05:15,532 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2021-01-04 02:05:15,534 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2021-01-04 02:05:15,539 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2021-01-04 02:05:15,551 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2021-01-04 02:05:18,784 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 70908 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2021-01-04 02:05:18,787 INFO [restartedMain] No active profile set, falling back to default profiles: default -2021-01-04 02:05:18,857 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-04 02:05:18,858 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-04 02:05:19,291 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2021-01-04 02:05:19,352 INFO [restartedMain] Finished Spring Data repository scanning in 52ms. Found 6 JPA repository interfaces. -2021-01-04 02:05:20,006 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2021-01-04 02:05:20,016 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2021-01-04 02:05:20,016 INFO [restartedMain] Starting service [Tomcat] -2021-01-04 02:05:20,016 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2021-01-04 02:05:20,079 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2021-01-04 02:05:20,079 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1220 ms -2021-01-04 02:05:20,259 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2021-01-04 02:05:20,291 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2021-01-04 02:05:20,376 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2021-01-04 02:05:20,440 INFO [restartedMain] HikariPool-1 - Starting... -2021-01-04 02:05:20,766 INFO [restartedMain] HikariPool-1 - Start completed. -2021-01-04 02:05:20,787 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2021-01-04 02:05:21,402 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2021-01-04 02:05:21,410 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2021-01-04 02:05:21,426 INFO [restartedMain] LiveReload server is running on port 35729 -2021-01-04 02:05:21,838 INFO [restartedMain] Program started with arguments: votingPhase=false mottoPhase=false addingPhase=true -2021-01-04 02:05:22,065 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2021-01-04 02:05:22,161 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-04 02:05:22,329 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2021-01-04 02:05:22,348 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2021-01-04 02:05:22,358 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.937 seconds (JVM running for 4.514) -2021-01-04 02:11:07,453 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2021-01-04 02:11:07,457 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2021-01-04 02:11:07,461 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2021-01-04 02:11:07,473 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. -2021-01-04 02:11:10,707 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 71248 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) -2021-01-04 02:11:10,710 INFO [restartedMain] No active profile set, falling back to default profiles: default -2021-01-04 02:11:10,772 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-04 02:11:10,773 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-04 02:11:11,169 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2021-01-04 02:11:11,214 INFO [restartedMain] Finished Spring Data repository scanning in 40ms. Found 5 JPA repository interfaces. -2021-01-04 02:11:11,836 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) -2021-01-04 02:11:11,845 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] -2021-01-04 02:11:11,845 INFO [restartedMain] Starting service [Tomcat] -2021-01-04 02:11:11,845 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] -2021-01-04 02:11:11,905 INFO [restartedMain] Initializing Spring embedded WebApplicationContext -2021-01-04 02:11:11,906 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1132 ms -2021-01-04 02:11:12,078 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] -2021-01-04 02:11:12,111 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final -2021-01-04 02:11:12,202 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} -2021-01-04 02:11:12,274 INFO [restartedMain] HikariPool-1 - Starting... -2021-01-04 02:11:12,614 INFO [restartedMain] HikariPool-1 - Start completed. -2021-01-04 02:11:12,639 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect -2021-01-04 02:11:13,257 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2021-01-04 02:11:13,266 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' -2021-01-04 02:11:13,279 INFO [restartedMain] LiveReload server is running on port 35729 -2021-01-04 02:11:13,646 INFO [restartedMain] Program started with arguments: votingPhase=false addingPhase=true -2021-01-04 02:11:13,902 INFO [restartedMain] Voters successfully set up -2021-01-04 02:11:13,955 INFO [restartedMain] Categories successfully set up -2021-01-04 02:11:13,995 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2021-01-04 02:11:14,092 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-04 02:11:14,268 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] -2021-01-04 02:11:14,282 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' -2021-01-04 02:11:14,292 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 3.946 seconds (JVM running for 4.512) -2021-01-04 02:13:20,085 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' -2021-01-04 02:13:20,088 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' -2021-01-04 02:13:20,092 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... -2021-01-04 02:13:20,107 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2021-01-17 14:53:49,688 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 7976 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2021-01-17 14:53:49,692 INFO [restartedMain] No active profile set, falling back to default profiles: default +2021-01-17 14:53:49,744 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-17 14:53:49,744 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-17 14:53:50,168 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-01-17 14:53:50,231 INFO [restartedMain] Finished Spring Data repository scanning in 51ms. Found 5 JPA repository interfaces. +2021-01-17 14:53:50,893 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2021-01-17 14:53:50,906 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2021-01-17 14:53:50,907 INFO [restartedMain] Starting service [Tomcat] +2021-01-17 14:53:50,907 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2021-01-17 14:53:50,970 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2021-01-17 14:53:50,970 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1226 ms +2021-01-17 14:53:51,174 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2021-01-17 14:53:51,223 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2021-01-17 14:53:51,341 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2021-01-17 14:53:51,411 INFO [restartedMain] HikariPool-1 - Starting... +2021-01-17 14:53:51,821 INFO [restartedMain] HikariPool-1 - Start completed. +2021-01-17 14:53:51,844 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2021-01-17 14:53:52,466 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-01-17 14:53:52,473 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-01-17 14:53:52,484 INFO [restartedMain] LiveReload server is running on port 35729 +2021-01-17 14:53:52,839 INFO [restartedMain] Program started with arguments: votingPhase=true addingPhase=false +2021-01-17 14:53:56,086 INFO [restartedMain] Candidates successfully set up +2021-01-17 14:53:56,127 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2021-01-17 14:53:56,238 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-17 14:53:56,439 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2021-01-17 14:53:56,454 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2021-01-17 14:53:56,463 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 7.114 seconds (JVM running for 7.878) +2021-01-17 14:58:34,081 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-17 14:58:34,084 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2021-01-17 14:58:34,088 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2021-01-17 14:58:34,100 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2021-01-17 14:58:37,867 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 8368 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2021-01-17 14:58:37,871 INFO [restartedMain] No active profile set, falling back to default profiles: default +2021-01-17 14:58:37,936 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-17 14:58:37,937 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-17 14:58:38,350 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-01-17 14:58:38,397 INFO [restartedMain] Finished Spring Data repository scanning in 40ms. Found 5 JPA repository interfaces. +2021-01-17 14:58:38,988 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2021-01-17 14:58:38,996 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2021-01-17 14:58:38,997 INFO [restartedMain] Starting service [Tomcat] +2021-01-17 14:58:38,997 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2021-01-17 14:58:39,049 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2021-01-17 14:58:39,049 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1112 ms +2021-01-17 14:58:39,198 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2021-01-17 14:58:39,228 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2021-01-17 14:58:39,304 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2021-01-17 14:58:39,363 INFO [restartedMain] HikariPool-1 - Starting... +2021-01-17 14:58:39,678 INFO [restartedMain] HikariPool-1 - Start completed. +2021-01-17 14:58:39,699 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2021-01-17 14:58:40,252 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-01-17 14:58:40,261 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-01-17 14:58:40,272 INFO [restartedMain] LiveReload server is running on port 35729 +2021-01-17 14:58:40,603 INFO [restartedMain] Program started with arguments: votingPhase=true addingPhase=false +2021-01-17 14:58:43,540 INFO [restartedMain] Candidates successfully set up +2021-01-17 14:58:43,572 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2021-01-17 14:58:43,663 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-17 14:58:43,819 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2021-01-17 14:58:43,832 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2021-01-17 14:58:43,841 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 6.33 seconds (JVM running for 6.868) +2021-01-17 15:00:38,920 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-17 15:00:38,921 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2021-01-17 15:00:38,927 INFO [http-nio-8000-exec-1] Completed initialization in 6 ms +2021-01-17 15:00:38,951 WARN [http-nio-8000-exec-1] in Bounds +2021-01-17 15:00:46,009 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2021-01-17 15:01:01,586 WARN [http-nio-8000-exec-6] matched +2021-01-17 15:16:30,676 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-17 15:16:30,679 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2021-01-17 15:16:30,683 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2021-01-17 15:16:30,693 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2021-01-17 15:16:32,386 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 9493 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2021-01-17 15:16:32,390 INFO [restartedMain] No active profile set, falling back to default profiles: default +2021-01-17 15:16:32,444 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-17 15:16:32,444 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-17 15:16:32,883 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-01-17 15:16:32,939 INFO [restartedMain] Finished Spring Data repository scanning in 48ms. Found 5 JPA repository interfaces. +2021-01-17 15:16:33,628 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2021-01-17 15:16:33,640 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2021-01-17 15:16:33,641 INFO [restartedMain] Starting service [Tomcat] +2021-01-17 15:16:33,641 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2021-01-17 15:16:33,708 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2021-01-17 15:16:33,709 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1265 ms +2021-01-17 15:16:33,883 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2021-01-17 15:16:33,918 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2021-01-17 15:16:34,014 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2021-01-17 15:16:34,084 INFO [restartedMain] HikariPool-1 - Starting... +2021-01-17 15:16:34,444 INFO [restartedMain] HikariPool-1 - Start completed. +2021-01-17 15:16:34,469 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2021-01-17 15:16:35,144 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-01-17 15:16:35,151 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-01-17 15:16:35,167 INFO [restartedMain] LiveReload server is running on port 35729 +2021-01-17 15:16:35,541 INFO [restartedMain] Program started with arguments: votingPhase=true addingPhase=false +2021-01-17 15:16:35,766 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2021-01-17 15:16:35,868 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-17 15:16:36,044 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2021-01-17 15:16:36,058 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2021-01-17 15:16:36,067 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.094 seconds (JVM running for 4.813) +2021-01-17 15:17:23,695 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-17 15:17:23,696 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2021-01-17 15:17:23,708 INFO [http-nio-8000-exec-1] Completed initialization in 11 ms +2021-01-17 15:17:23,733 WARN [http-nio-8000-exec-1] in Bounds +2021-01-17 15:17:30,136 WARN [http-nio-8000-exec-4] simon.bussmann@adolfinum.de +2021-01-17 15:17:42,309 WARN [http-nio-8000-exec-6] matched +2021-01-17 15:18:29,420 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-17 15:18:29,421 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2021-01-17 15:18:29,424 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2021-01-17 15:18:29,437 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2021-01-17 15:18:31,847 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 9761 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2021-01-17 15:18:31,850 INFO [restartedMain] No active profile set, falling back to default profiles: default +2021-01-17 15:18:31,907 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-17 15:18:31,908 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-17 15:18:32,319 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-01-17 15:18:32,372 INFO [restartedMain] Finished Spring Data repository scanning in 47ms. Found 5 JPA repository interfaces. +2021-01-17 15:18:33,086 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2021-01-17 15:18:33,096 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2021-01-17 15:18:33,097 INFO [restartedMain] Starting service [Tomcat] +2021-01-17 15:18:33,097 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2021-01-17 15:18:33,157 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2021-01-17 15:18:33,157 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1249 ms +2021-01-17 15:18:33,334 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2021-01-17 15:18:33,371 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2021-01-17 15:18:33,477 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2021-01-17 15:18:33,577 INFO [restartedMain] HikariPool-1 - Starting... +2021-01-17 15:18:33,998 INFO [restartedMain] HikariPool-1 - Start completed. +2021-01-17 15:18:34,029 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2021-01-17 15:18:34,724 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-01-17 15:18:34,730 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-01-17 15:18:34,744 INFO [restartedMain] LiveReload server is running on port 35729 +2021-01-17 15:18:35,270 INFO [restartedMain] Program started with arguments: votingPhase=true addingPhase=false +2021-01-17 15:18:35,589 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2021-01-17 15:18:35,735 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-17 15:18:35,936 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2021-01-17 15:18:35,950 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2021-01-17 15:18:35,961 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.494 seconds (JVM running for 5.13) +2021-01-17 15:18:40,203 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-17 15:18:40,204 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2021-01-17 15:18:40,216 INFO [http-nio-8000-exec-1] Completed initialization in 12 ms +2021-01-17 15:18:40,244 WARN [http-nio-8000-exec-1] in Bounds +2021-01-17 15:18:46,736 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2021-01-17 15:18:56,942 WARN [http-nio-8000-exec-5] matched +2021-01-17 15:19:49,251 WARN [http-nio-8000-exec-7] in Bounds +2021-01-17 15:19:55,903 WARN [http-nio-8000-exec-9] simon.bussmann@adolfinum.de +2021-01-17 15:20:18,347 WARN [http-nio-8000-exec-3] matched +2021-01-17 15:23:22,895 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-17 15:23:22,897 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2021-01-17 15:23:22,902 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2021-01-17 15:23:22,910 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. +2021-01-17 15:23:25,390 INFO [restartedMain] Starting AbizeitungVotingSystemApplication on bitecoding-System-Product-Name with PID 10453 (/home/bitecoding/Code/GitHub/AbizeitungVotingSystem/target/classes started by bitecoding in /home/bitecoding/Code/GitHub/AbizeitungVotingSystem) +2021-01-17 15:23:25,393 INFO [restartedMain] No active profile set, falling back to default profiles: default +2021-01-17 15:23:25,466 INFO [restartedMain] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-17 15:23:25,467 INFO [restartedMain] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-17 15:23:25,907 INFO [restartedMain] Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-01-17 15:23:25,965 INFO [restartedMain] Finished Spring Data repository scanning in 51ms. Found 5 JPA repository interfaces. +2021-01-17 15:23:26,765 INFO [restartedMain] Tomcat initialized with port(s): 8000 (http) +2021-01-17 15:23:26,775 INFO [restartedMain] Initializing ProtocolHandler ["http-nio-8000"] +2021-01-17 15:23:26,776 INFO [restartedMain] Starting service [Tomcat] +2021-01-17 15:23:26,777 INFO [restartedMain] Starting Servlet engine: [Apache Tomcat/9.0.38] +2021-01-17 15:23:26,848 INFO [restartedMain] Initializing Spring embedded WebApplicationContext +2021-01-17 15:23:26,848 INFO [restartedMain] Root WebApplicationContext: initialization completed in 1381 ms +2021-01-17 15:23:27,067 INFO [restartedMain] HHH000204: Processing PersistenceUnitInfo [name: default] +2021-01-17 15:23:27,099 INFO [restartedMain] HHH000412: Hibernate ORM core version 5.4.21.Final +2021-01-17 15:23:27,192 INFO [restartedMain] HCANN000001: Hibernate Commons Annotations {5.1.0.Final} +2021-01-17 15:23:27,264 INFO [restartedMain] HikariPool-1 - Starting... +2021-01-17 15:23:27,633 INFO [restartedMain] HikariPool-1 - Start completed. +2021-01-17 15:23:27,655 INFO [restartedMain] HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect +2021-01-17 15:23:28,377 INFO [restartedMain] HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-01-17 15:23:28,382 INFO [restartedMain] Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-01-17 15:23:28,396 INFO [restartedMain] LiveReload server is running on port 35729 +2021-01-17 15:23:28,943 INFO [restartedMain] Program started with arguments: votingPhase=true addingPhase=false +2021-01-17 15:23:29,269 WARN [restartedMain] spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2021-01-17 15:23:29,418 INFO [restartedMain] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-17 15:23:29,642 INFO [restartedMain] Starting ProtocolHandler ["http-nio-8000"] +2021-01-17 15:23:29,659 INFO [restartedMain] Tomcat started on port(s): 8000 (http) with context path '' +2021-01-17 15:23:29,672 INFO [restartedMain] Started AbizeitungVotingSystemApplication in 4.683 seconds (JVM running for 5.367) +2021-01-17 15:23:38,361 INFO [http-nio-8000-exec-1] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-17 15:23:38,362 INFO [http-nio-8000-exec-1] Initializing Servlet 'dispatcherServlet' +2021-01-17 15:23:38,372 INFO [http-nio-8000-exec-1] Completed initialization in 10 ms +2021-01-17 15:23:38,423 WARN [http-nio-8000-exec-1] wrong +2021-01-17 15:24:04,259 WARN [http-nio-8000-exec-6] matched +2021-01-17 15:24:18,325 WARN [http-nio-8000-exec-8] in Bounds +2021-01-17 15:24:23,870 WARN [http-nio-8000-exec-10] simon.bussmann@adolfinum.de +2021-01-17 15:24:42,834 WARN [http-nio-8000-exec-2] matched +2021-01-17 15:26:25,702 INFO [http-nio-8000-exec-8] simon.bussmann@adolfinum.de has voted! +2021-01-17 15:26:27,992 WARN [http-nio-8000-exec-10] in Bounds +2021-01-17 15:43:46,110 WARN [http-nio-8000-exec-2] in Bounds +2021-01-17 15:43:46,288 WARN [http-nio-8000-exec-5] Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation] +2021-01-17 15:43:46,294 WARN [http-nio-8000-exec-6] Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation] +2021-01-17 15:44:14,357 WARN [http-nio-8000-exec-7] Simon.bussmann@adolfinum.de +2021-01-17 15:44:14,360 WARN [http-nio-8000-exec-7] Simon.bussmann@adolfinum.de has already voted +2021-01-17 15:44:14,366 WARN [http-nio-8000-exec-8] Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation] +2021-01-17 15:44:14,375 WARN [http-nio-8000-exec-9] Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation] +2021-01-17 15:44:14,396 WARN [http-nio-8000-exec-1] Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation] +2021-01-17 15:44:14,403 WARN [http-nio-8000-exec-3] Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation] +2021-01-17 15:45:32,976 WARN [http-nio-8000-exec-5] Simon.bussmann@adolfinum.de +2021-01-17 15:45:32,978 WARN [http-nio-8000-exec-5] Simon.bussmann@adolfinum.de has already voted +2021-01-17 15:45:33,023 WARN [http-nio-8000-exec-7] Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation] +2021-01-17 15:45:33,030 WARN [http-nio-8000-exec-8] Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation] +2021-01-17 15:51:42,988 WARN [http-nio-8000-exec-1] in Bounds +2021-01-17 15:51:42,993 WARN [http-nio-8000-exec-3] Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation] +2021-01-17 15:51:43,016 WARN [http-nio-8000-exec-4] Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation] +2021-01-17 15:51:43,044 WARN [http-nio-8000-exec-5] Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation] +2021-01-17 15:51:43,052 WARN [http-nio-8000-exec-6] Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation] +2021-01-17 15:51:54,850 WARN [http-nio-8000-exec-7] in Bounds +2021-01-17 15:52:39,237 WARN [http-nio-8000-exec-3] simon.bussmann@adolfinum.de +2021-01-17 15:53:04,490 WARN [http-nio-8000-exec-4] Simon.bussmann@adolfinum.de +2021-01-17 15:53:04,498 WARN [http-nio-8000-exec-5] Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation] +2021-01-17 15:53:04,506 WARN [http-nio-8000-exec-6] Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation] +2021-01-17 15:53:04,537 WARN [http-nio-8000-exec-8] Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation] +2021-01-17 15:53:04,546 WARN [http-nio-8000-exec-10] Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation] +2021-01-17 15:53:29,699 WARN [http-nio-8000-exec-1] Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation] +2021-01-17 15:53:29,706 WARN [http-nio-8000-exec-3] Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation] +2021-01-17 15:53:29,707 WARN [http-nio-8000-exec-9] matched +2021-01-17 15:53:29,881 WARN [http-nio-8000-exec-5] Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation] +2021-01-17 15:53:29,889 WARN [http-nio-8000-exec-4] Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation] +2021-01-17 15:54:09,560 INFO [SpringContextShutdownHook] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-17 15:54:09,562 INFO [SpringContextShutdownHook] Closing JPA EntityManagerFactory for persistence unit 'default' +2021-01-17 15:54:09,564 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown initiated... +2021-01-17 15:54:09,570 INFO [SpringContextShutdownHook] HikariPool-1 - Shutdown completed. diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java index d301d80..2d95482 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java @@ -52,8 +52,8 @@ public class VotingController { @PostConstruct public void init() { - votingPhase = false; - addingPhase = true; + votingPhase = true; + addingPhase = false; LOGGER.info("Program started with arguments: votingPhase="+ votingPhase + " addingPhase=" + addingPhase); diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/table/TableAction.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/table/TableAction.java index c4bc283..b50e0f7 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/table/TableAction.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/table/TableAction.java @@ -99,7 +99,7 @@ public class TableAction { Collections.sort(possibleCandidatesPerCategory, Comparator.comparing(PossibleCandidate::getVotes)); Collections.reverse(possibleCandidatesPerCategory); for (int j = 0; j < getLimit(possibleCandidatesPerCategory); j++){ - if (j >= 10 && possibleCandidatesPerCategory.get(j).getVotes() == possibleCandidatesPerCategory.get(j-1).getVotes()){ + if (j >= 10 && possibleCandidatesPerCategory.get(j).getVotes() == possibleCandidatesPerCategory.get(9).getVotes()){ Candidate candidate = new Candidate(possibleCandidatesPerCategory.get(j).getName(), possibleCandidatesPerCategory.get(j).getCategory()); candidateRepository.save(candidate); } diff --git a/src/main/resources/static/styles/voting.css b/src/main/resources/static/styles/voting.css index e0ff00c..5c99db7 100644 --- a/src/main/resources/static/styles/voting.css +++ b/src/main/resources/static/styles/voting.css @@ -42,7 +42,8 @@ button { } .submitButton { - margin-top: 5%; + margin-top: 2%; + margin-bottom: 5%; padding: .25em 0; border: 0; outline: 0; @@ -56,6 +57,23 @@ button { text-shadow: 0 -2px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.2); } +@media only screen and (max-device-width: 480px) { + .submitButton { + margin-top: 2%; + padding: .25em 0; + border: 0; + outline: 0; + background: rgb(6, 216, 136); + color: rgba(255, 255, 255, 0.85); + font-size: 2rem; + width: 500px; + letter-spacing: .0625rem; + border-radius: 12px; + box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.25); + text-shadow: 0 -2px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.2); + } +} + html, body { width: 100%; diff --git a/src/main/resources/templates/errors/alreadyVoted.html b/src/main/resources/templates/errors/alreadyVoted.html index cea84dc..2fafb30 100644 --- a/src/main/resources/templates/errors/alreadyVoted.html +++ b/src/main/resources/templates/errors/alreadyVoted.html @@ -8,38 +8,15 @@ -
-

Du hast schon abgestimmt!

-

Nächste Abstimmung in:

- -
+
+

Du hast schon abgestimmt!

+ +
- From 179af51456753aef38c8ee80a0b57f7b24444227 Mon Sep 17 00:00:00 2001 From: Simon Date: Sun, 17 Jan 2021 16:19:26 +0100 Subject: [PATCH 34/35] Updated Datelock --- .../AbizeitungVotingSystem/controller/VotingController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java index 2d95482..98f55b0 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/controller/VotingController.java @@ -76,7 +76,7 @@ public class VotingController { @RequestMapping("/") public String WelcomeSite() { - LocalDate finishDate = LocalDate.of(2021, Month.JANUARY,17); + LocalDate finishDate = LocalDate.of(2021, Month.JANUARY,24); LocalDate now = LocalDate.now(); if(now.isAfter(finishDate)){ From bd288d4d1ce9d192f51ffec34c44877711bc98e9 Mon Sep 17 00:00:00 2001 From: Simon Date: Wed, 27 Jan 2021 18:26:35 +0100 Subject: [PATCH 35/35] Cleaning up for publication --- .gitignore | 3 + .../table/TableAction.java | 4 +- src/main/resources/Categories.txt | 42 ----- src/main/resources/Categories2.txt | 50 ------ src/main/resources/Email_Whitelist.txt | 0 src/main/resources/Mottos.txt | 11 -- src/main/resources/Q2_emails.txt | 163 ------------------ src/main/resources/application.properties | 14 +- 8 files changed, 12 insertions(+), 275 deletions(-) delete mode 100644 src/main/resources/Categories2.txt create mode 100644 src/main/resources/Email_Whitelist.txt delete mode 100644 src/main/resources/Mottos.txt delete mode 100644 src/main/resources/Q2_emails.txt diff --git a/.gitignore b/.gitignore index 27eb534..c249fa8 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,9 @@ target/ !.mvn/wrapper/maven-wrapper.jar !**/src/main/**/target/ !**/src/test/**/target/ +Databases/ +logs/ +Results/ ### STS ### .apt_generated diff --git a/src/main/java/com/github/cato447/AbizeitungVotingSystem/table/TableAction.java b/src/main/java/com/github/cato447/AbizeitungVotingSystem/table/TableAction.java index c4bc283..7685bc5 100644 --- a/src/main/java/com/github/cato447/AbizeitungVotingSystem/table/TableAction.java +++ b/src/main/java/com/github/cato447/AbizeitungVotingSystem/table/TableAction.java @@ -70,7 +70,7 @@ public class TableAction { } public void setUpVoters(VoterRepository voterRepository){ - try (InputStream inputStream = getClass().getResourceAsStream("/Q2_emails.txt"); + try (InputStream inputStream = getClass().getResourceAsStream("/Email_Whitelist.txt"); BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream))) { String line = ""; ArrayList voters = new ArrayList(); @@ -122,7 +122,7 @@ public class TableAction { } public void setUpCategories(CategoryRepository categoryRepository){ - try (InputStream inputStream = getClass().getResourceAsStream("/Categories2.txt"); + try (InputStream inputStream = getClass().getResourceAsStream("/Categories.txt"); BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream))) { String line = ""; ArrayList categories = new ArrayList(); diff --git a/src/main/resources/Categories.txt b/src/main/resources/Categories.txt index b533b46..e69de29 100644 --- a/src/main/resources/Categories.txt +++ b/src/main/resources/Categories.txt @@ -1,42 +0,0 @@ -Nesthocker -Beste Ausreden -Verfressenste -Ehre wem Ehre gebührt - Die Engagiertesten -Verhandlungskünstler -Stufenclown -Knacki -(x)Traumpaar -Lexikon -Harzer -Unvergesslich -Größter Klugscheißer -Future Celebrity -Pornhub als Abendbeschäftigung -Größte/r Schnorrer/in -Hat gefühlt die meisten Fehlstunden -Größte Diva -Weltherrschaft 2040 -Größte Labertasche -Sonnenschein -Kleinster Aufwand, größter Erfolg -Ziemlich beste Freunde -Am faulsten -Immer zu spät -Lehrers Liebling -Gleich geblieben -Größter Bonze -Verdient später am meisten -(x)Lehrerschreck -Augenschmaus (W) -Augenschmaus (M) -Lästermaul (Gossip Girl) -Notenwürfler -Macht alles außer Unterricht -Übermotiviert -Schülerschreck -Mathegötter (der/die beste Mathelehrer/in) -Falscher Beruf -Größte Sauklaue -Lehrerbuddies -Lebt den Beruf -Unvergesslich \ No newline at end of file diff --git a/src/main/resources/Categories2.txt b/src/main/resources/Categories2.txt deleted file mode 100644 index 204a4a2..0000000 --- a/src/main/resources/Categories2.txt +++ /dev/null @@ -1,50 +0,0 @@ -Sportler/in des Jahres -Best dressed student -Picasso Jr. -Verpeilt, verpeilter, ... -Große Klappe -Darf auf keiner Party fehlen -Stille Wasser sind tief -Patrick-Fragen-Steller -Ehrgeizig, ehrgeiziger, ... -Miss Make-Up -Meiste Punkte in Flensburg -Im Bundestag -Bimsstein als Leber -Bester Schwiegersohn -Beste Schwiegertochter -Lebt im Fitnessstudio -Koffeinjunkie -Erkennt man am Lachen -Dschungelkönig/in -Bei Geburt getrennte Zwillinge (Aussehen) -Future Rockstar -Schummelt sich durchs Abi -Organisationstalent -Gute Seele -Nobelpreisträger -Nachteule -Präsentationspro -Lehrerassistent für Technik -Meiste Screentime -Interessiert sich wirklich für den Unterricht -Kleiner Exentriker -Herrscht hart, aber gerecht -Niemand traut sich zu schwänzen -Man lernt nicht für die Schule sondern fürs Leben -Konntert am besten -Best dressed teacher -Eigentlich Motivationstrainer -Schlimmstes Tafelbild -Möchtegern Comedian -Führt ein Doppelleben -"Ich beende den Unterricht" -Schülerschwarm (M) -Schülerschwarm (W) -Harte Schale, weicher Kern -Sklaventreiber -Unterrichtet auch, wenn die Schule brennt -Ist immer da -Lebt in der Schule -Musste einen Wald für Arbeitsblätter roden lassen -Top gestylt \ No newline at end of file diff --git a/src/main/resources/Email_Whitelist.txt b/src/main/resources/Email_Whitelist.txt new file mode 100644 index 0000000..e69de29 diff --git a/src/main/resources/Mottos.txt b/src/main/resources/Mottos.txt deleted file mode 100644 index 645759b..0000000 --- a/src/main/resources/Mottos.txt +++ /dev/null @@ -1,11 +0,0 @@ -CannABIs - wir haben es durchgezogen! -ABI 2,010 ‰ - Meist dichter als Denker -KABItän Blaubär - Immer blau und trotzdem schlau -HABI Potter - Wir verlassen die Kammer des Schreckens -A BItch - Für einen Punkt tue ich alles! -ABIthur - Wenn das Elite von die Gymnahsium gehen tut -LABIrinth - Planlos zum Ziel -ABIcrombie & Fitch - Models gehen, Elche bleiben (Abercrombie & Fitch) -SemipermeABIlität - Nur die Besten kommen durch -KohlrABI - Wir machen uns vom Acker -ABIgasmus - Aber das war nur das Vorspiel \ No newline at end of file diff --git a/src/main/resources/Q2_emails.txt b/src/main/resources/Q2_emails.txt deleted file mode 100644 index 25d79ef..0000000 --- a/src/main/resources/Q2_emails.txt +++ /dev/null @@ -1,163 +0,0 @@ -negar.barzegar@adolfinum.de -simon.berger@adolfinum.de -nicolas.cunha@adolfinum.de -joline.hackstein@adolfinum.de -philip.heckhoff@adolfinum.de -simon.hormes@adolfinum.de -benjamin.vogt@adolfinum.de -taycan.arslan@adolfinum.de -luca.boom@adolfinum.de -leon.borgerding@adolfinum.de -lukas.boy@adolfinum.de -lukas.corell@adolfinum.de -cedric.damerow@adolfinum.de -amelie.david@adolfinum.de -zeynep.efe@adolfinum.de -melinda.hirschelmann@adolfinum.de -lars.hogardt@adolfinum.de -malin.kalnins@adolfinum.de -victor.kocksnchez@adolfinum.de -kamil.kowalczyk@adolfinum.de -romyna.gurny@adolfinum.de -noelia.kocksnchez@adolfinum.de -lili.schweitzer@adolfinum.de -jerome.laukamp@adolfinum.de -elisa.bahl@adolfinum.de -lisa.baumeister@adolfinum.de -johanna.boeckmann@adolfinum.de -svenja.fischer@adolfinum.de -lena.goehlich@adolfinum.de -paula.haub@adolfinum.de -daria.horstmann@adolfinum.de -melina.kascha@adolfinum.de -pia.kleinwegen@adolfinum.de -lauramarie.koenig@adolfinum.de -yarkin.kulaksiz@adolfinum.de -amelie.laake@adolfinum.de -noemi.malaponti@adolfinum.de -yara.mueser@adolfinum.de -paul.nowack@adolfinum.de -luca.ofiera@adolfinum.de -timo.otto@adolfinum.de -linnea.paulukuhn@adolfinum.de -isabelle.schneider@adolfinum.de -nico.scholzen@adolfinum.de -manon.schroff@adolfinum.de -carlotta.tueckmantel@adolfinum.de -simon.bussmann@adolfinum.de -luis.erpenbach@adolfinum.de -meret.fass@adolfinum.de -anna.feldmann@adolfinum.de -alina.fuenderich@adolfinum.de -joline.gilles@adolfinum.de -karolina.hein@adolfinum.de -robin.heldt@adolfinum.de -annika.koch@adolfinum.de -dusanka.djukanovic@adolfinum.de -aaron.glos@adolfinum.de -ayseguel.guelten@adolfinum.de -hamza.hasoumi@adolfinum.de -evelyn.hofmann@adolfinum.de -burakmustafa.kulac@adolfinum.de -dominik.kwitowski@adolfinum.de -julia.lener@adolfinum.de -paula.may@adolfinum.de -luca.mueller@adolfinum.de -mathieu.mueller@adolfinum.de -marie.puetter@adolfinum.de -hendrik.herffs@adolfinum.de -greta.bentgens@adolfinum.de -sven.mittmann@adolfinum.de -jan.hoevel@adolfinum.de -tim.krichel@adolfinum.de -milo.lehnen@adolfinum.de -lewis.lehner@adolfinum.de -nico.lipinski@adolfinum.de -luise.lu@adolfinum.de -maike.nawarotzky@adolfinum.de -rabea.peters@adolfinum.de -patrick.preuss@adolfinum.de -julius.preusser@adolfinum.de -marie.scheidung@adolfinum.de -lena.schlayer@adolfinum.de -emma.sprenger@adolfinum.de -klaudia.kapala@adolfinum.de -gabriel.schacht@adolfinum.de -delia.schmitz@adolfinum.de -katharina.schmitz@adolfinum.de -laurin.severith@adolfinum.de -julian.sievers@adolfinum.de -anna.siewert@adolfinum.de -chiara.welter@adolfinum.de -kira.winzen@adolfinum.de -tim.zentzis@adolfinum.de -justus.boesken@adolfinum.de -finia.brinkmann@adolfinum.de -anesa.cavcic@adolfinum.de -antonia.eigemann@adolfinum.de -nico.hahn@adolfinum.de -timo.kohlmann@adolfinum.de -alexander.kupillas@adolfinum.de -alexander.neumann@adolfinum.de -sophie.osterloh@adolfinum.de -clemens.palinsky@adolfinum.de -oliver.palinsky@adolfinum.de -hendrik.pierlo@adolfinum.de -lilly.schmidtke@adolfinum.de -mara.spicker@adolfinum.de -anhtrung.vo@adolfinum.de -ben.schwarz@adolfinum.de -luca.urbanczyk@adolfinum.de -helena.neukirch@adolfinum.de -nikita.lauff@adolfinum.de -jennifer.lengard@adolfinum.de -julia.mueller@adolfinum.de -philipp.nothers@adolfinum.de -judith.oppenberg@adolfinum.de -dilan.oeztuerk@adolfinum.de -malo.soulier@adolfinum.de -mery.stern@adolfinum.de -nouel.verberkt@adolfinum.de -leon.viktora@adolfinum.de -pia.anthes@adolfinum.de -eray.arici@adolfinum.de -christian.beutel@adolfinum.de -mara.blanke@adolfinum.de -lilly.ventzke@adolfinum.de -luzi.weichert@adolfinum.de -moritz.weihnacht@adolfinum.de -leony.wittmann@adolfinum.de -annika.lieblang@adolfinum.de -leonie.wallusch@adolfinum.de -felix.kirsten@adolfinum.de -moritz.liebisch@adolfinum.de -christian.pickardt@adolfinum.de -jan.schliekmann@adolfinum.de -elsa.piplack@adolfinum.de -jolan.gerritzen@adolfinum.de -lorena.garau@adolfinum.de -matthias.karl@adolfinum.de -justin.kauschke@adolfinum.de -leonie.kramer@adolfinum.de -laura.kurreck@adolfinum.de -maya.lueck@adolfinum.de -sean.mccormick-silex@adolfinum.de -tim.mueller@adolfinum.de -lana.peric@adolfinum.de -jan.pintostrohhaeusl@adolfinum.de -laura.ruettershoff@adolfinum.de -charlotte.schirmer@adolfinum.de -lavinia.schmitz@adolfinum.de -victor.schroers@adolfinum.de -gerrit.schulz@adolfinum.de -clemens.spoo@adolfinum.de -simon.stavroulakis@adolfinum.de -ioannis.boerner@adolfinum.de -marwa.nafouti@adolfinum.de -niklas.klaffki@adolfinum.de -alessio.padovano@adolfinum.de -jonas.breder@adolfinum.de -ben.maas@adolfinum.de -mina.ercan@adolfinum.de -maya.springstein@adolfinum.de -can.patir@adolfinum.de \ No newline at end of file diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 74ff280..987925f 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -1,6 +1,6 @@ -spring.datasource.url=jdbc:mysql://localhost/VotingSystem -spring.datasource.username=bitecoding -spring.datasource.password=Cr@ckTh15 +spring.datasource.url=jdbc:mysql://hostadress/database +spring.datasource.username=mysql_username +spring.datasource.password=mysql_password spring.jpa.hibernate.ddl-auto=update @@ -8,11 +8,11 @@ spring.jpa.hibernate.ddl-auto=update server.port = 8000 ######Email Properties ###### -spring.mail.host=smtp.gmail.com -spring.mail.port=587 +spring.mail.host= +spring.mail.port= spring.mail.properties.mail.smtp.starttls.enable=true -spring.mail.username=abizeitungvoting@gmail.com -spring.mail.password=Voting2021 +spring.mail.username= +spring.mail.password= spring.mail.properties.mail.smtp.starttls.required=true spring.mail.properties.mail.smtp.auth=true spring.mail.properties.mail.smtp.connectiontimeout=5000