My SpringBoot Application dont start the TomCat

My programm compiles everything and i got no errors, but i actually expected that the tomcat should be on port 8080 permanently. Also there is no Spring in the Output. On a other project i did everything works fine. Thank u for helping me. My Parent-Pom: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0&quot; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance&quot; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"&gt; <modelVersion>4.0.0</modelVersion>… Read More My SpringBoot Application dont start the TomCat

HTML doesn't load JS files

i try to make a simple website with external js and css files. HTML: <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <script src="../js/main.js"></script> <title> John Doe </title> </head> <body> <div> <p>Landing Page in Progress</p> <button onclick="clickAlert()">Test</button> </div> </body> </html> JS: function clickAlert() { alert("Test") } Folder structure: But when i click the button i get… Read More HTML doesn't load JS files