I have a test setup which is slightly different to production which works for me just fine If I execute it. However using my shadow jar on the Server I just get the log like above but its not hosting the Server. I verified that there is no Server running using netstat -tuln | grep LISTEN and other than port 25 I know exactly what everthing is.
It seems like Spring starts but it doesnt. I dont get a crash error either. The templates not being detected is also strange since it works like that on my test set up. no changes there.
How I start Spring Boot.
The Web Server is basically just an interface that I wanted to add. Due too this it is not the backbone but being instanced by my Core class on start up using the following Code in the constructor:
Thread springbootstarter = new Thread(() -> SpringApplication.run(WebsiteController.class));
springbootstarter.setName("BBSpring Boot Starter");
springbootstarter.start();