#spring webserver not starting up | no Exception thrown

6 messages Β· Page 1 of 1 (latest)

subtle gale
#

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();
raven spireBOT
#

βŒ› This post has been reserved for your question.

Hey @subtle gale! Please use /close or the Close Post button above when your problem is solved. Please remember to follow the help guidelines. This post will be automatically closed after 300 minutes of inactivity.

TIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here.

subtle gale
#

spring webserver not starting up | no Exception thrown

raven spireBOT
#

πŸ’€ Post marked as dormant

This post has been inactive for over 300 minutes, thus, it has been archived.
If your question was not answered yet, feel free to re-open this post or create a new one.
In case your post is not getting any attention, you can try to use /help ping.
Warning: abusing this will result in moderative actions taken against you.

subtle gale
#

T