skip to Main Content

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

Placeholder in PostgreSQL query with double colon :: cast

I have this SQL query: select date_trunc('month',created_at-'6d 18:06:56'::interval) +'6d 18:06:56'::interval as created_at, count(*)filter(where status='ACTIVE') as active, count(*)filter(where status='BLOCKED') as blocked from companies where now()-'12 months'::interval < created_at group by 1 order by 1; I tried to use it into Spring…

VIEW QUESTION
Back To Top
Search