How chance base url context localhost:8080/flowable-modeler

hello,

how can i chance Flowable base url context. I mean, http://localhost:8080/flowable-modeler to --> http://localhost:8080/modeler
normally i think url in spring boot contain like this. but i couldnt find url.

@Controller
public class HelloWorldController {

    private static final String template = "Hello, %s!";
    private final AtomicLong counter = new AtomicLong();

    @GetMapping("/hello-world")
    @ResponseBody

or
/src/main/resources/application.properties

server.port=8080
server.contextPath=/mkyong

I haven’t tried this so be warned, but I start looking at modules/flowable-ui-modeler/flowable-ui-modeler-app/src/main/resources/flowable-default.properties where you will find near the top: server.servlet.context-path=/flowable-modeler

Hey @egemen,

It depends how you are deploying the flowable-modeler application. If you are deploying it as a Spring Boot executable jar then you need to set the server.servlet.context-path. If you are deploying it from a tomcat then you need to set the war in the webapps folder to be equal to ROOT.war that would deploy it under /

Cheers,
Filip

hello @filiphr,
thank you for your replay. i am chancing flowable-engine source code. then deploy to Tomcat. i dont need for war folder. i want to chance contex, when project compile and deploy time. i modify this floder;
/src/main/resources/application.properties