Tag Archives: spring-boot

Running Spring Boot application with springdoc-openapi behind NGINX

Suppose you want all requests prefixed with /api to be forwarded by NGINX to spring boot. There are 2 common options: So when a request like GET /api/foo is made when it reaches spring boot, spring boot sees a request … Continue reading

Posted in Computers, programming, Software | Tagged , | Leave a comment

Spring Boot controller not working

Some tips to help you debug Spring controller not working. There can be many reasons why this can happen. Here is a checklist: In separate terminal window type: Now you want to set a breakpoint at org.springframework.context.annotation.ClassPathBeanDefinitionScanner.doScan: Then run the … Continue reading

Posted in Computers, programming, Software | Tagged , , | Leave a comment