Spring boot with camunda started but Welcome-Pages are not accessible

Hello,

I got the project example-camunda-custom-identity-provider up and running. The server also starts fine with “mvn spring-boot:run”.
My problem is the following: The Camunda welcome pages are not accessible (404 Error):
http://localhost:8080/camunda/app/
http://localhost:8080/camunda/app/welcome/

The following Urls work:
http://localhost:8080/engine-rest/user
http://localhost:8080/engine-rest/group

I’ve tried many things but unfortunately without success.
any ideas?

Best Regards

Last Console lines:
INFO 3400 — [ main] org.camunda.bpm.connect : CNCT-01004 Discovered provider for connector id ‘http-connector’ and class ‘org.camunda.connect.httpclient.impl.HttpConnectorImpl’: ‘org.camunda.connect.httpclient.impl.HttpConnectorProviderImpl’

INFO 3400 — [ main] org.camunda.bpm.connect : CNCT-01004 Discovered provider for connector id ‘soap-http-connector’ and class ‘org.camunda.connect.httpclient.soap.impl.SoapHttpConnectorImpl’: ‘org.camunda.connect.httpclient.soap.impl.SoapHttpConnectorProviderImpl’

INFO 3400 — [ main] org.camunda.bpm.engine : ENGINE-00001 Process Engine default created.

INFO 3400 — [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ‘’

INFO 3400 — [ main] e.camunda.CamundaSpringBootApplication : Started CamundaSpringBootApplication in 10.69 seconds (JVM running for 11.237)

INFO 3400 — [ main] org.camunda.bpm.engine.jobexecutor : ENGINE-14014 Starting up the JobExecutor[org.camunda.bpm.engine.spring.components.jobexecutor.SpringJobExecutor].

INFO 3400 — [ingJobExecutor]] org.camunda.bpm.engine.jobexecutor : ENGINE-14018 JobExecutor[org.camunda.bpm.engine.spring.components.jobexecutor.SpringJobExecutor] starting to acquire jobs

Hello @ilyas ,

from here, I cannot tell what went wrong.

Do you have the source code on a github repo or did you copy your code from somewhere?

There are some reasons why you would not see the welcome page.

Having the source code would be helpful.

Anyway, do you have the correct dependency included - the spring boot starter webapp?

If yes, did you modify default settings regarding the context path in your application.properties or application.yaml?

Jonathan

Hi @jonathan.lukas ,

i uploaded the code to Github, which is the same example project from ashlah, but with recent versions and as a maven project instead of gradle.

thanks

Hello @ilyas ,

thank you for uploading. I can see that the webapp depdendency is missing:

<dependency>
      <groupId>org.camunda.bpm.springboot</groupId>
      <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId> 
    </dependency>

Please find it also here: https://mvnrepository.com/artifact/org.camunda.bpm.springboot/camunda-bpm-spring-boot-starter-webapp/7.17.0

Jonathan

1 Like

Thanks, it solve my Problem

Best Regards

1 Like