skip to Main Content

SpringBoot project failing to connect to PostgreSQL

I'm trying to execute a SpringBoot project, however I'm having this problem running: *************************** APPLICATION FAILED TO START *************************** Description: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Failed to…

VIEW QUESTION

Getting NoClassDefFound while running jar in docker

I have added 3 external jars which is not present on the maven repository. I mentioned external jars as a system scope in pom.xml file - <dependency> <groupId>org.suitetalk</groupId> <artifactId>suitetalk-axis-proxy-v2022_1</artifactId> <version>1.0.0</version> <scope>system</scope> <type>jar</type> <systemPath>${pom.basedir}/libs/suitetalk-axis-proxy-v2022_1-1.0.0.jar</systemPath> </dependency> In STS/Eclipse, the project is not…

VIEW QUESTION

Spring Boot Swagger through Nginx does not work correctly – Javascript

I have configured two services running in separate containers through nginx. Nginx configuration: server { listen 8080; location /template-order-service/ { proxy_pass_request_headers on; proxy_set_header Host $host; proxy_pass http://template-order-service:8082/; } location /template-product-service/ { proxy_pass_request_headers on; proxy_set_header Host $host; proxy_pass http://template-product-service:8083/; } }…

VIEW QUESTION
Back To Top
Search