skip to Main Content

Docker Host Not Found

I have two docker containers running, one with a Tomcat, one with an H2 database. To build the containers I use docker compose build with the following compose.yml: services: tomcat: build: tomcat ports: - "8080:8080" networks: - my-network h2: build:…

VIEW QUESTION

Debian – Spring Boot App not available on its path when deployed on standalone Tomcat

I have a Spring Boot webapp developed and tested with the Netbeans internal Tomcat server. I have setup the Application as a SpringBootServletInitializer public class ServletInitializer extends SpringBootServletInitializer { @Override protected SpringApplicationBuilder configure(SpringApplicationBuilder application) { return application.sources(Testspringboot2Application.class); } } @SpringBootApplication…

VIEW QUESTION
Back To Top
Search