I have applications that I deploy to a shared UI, which in essence means they all share a database. I am trying to use external spring web mvc thymeleaf forms that use spring controller endpoints to load the ui as well as post to the backend.
I am having difficulty due to the fact my ui is deployed as one application and each of the applications are seperate deployments (different ports and endpoints as part of the deployment). due to this I cannot reference a controller endpoint using the formkey.
For example if my controller was pointing to a mapping of (“/test/form”) I cannot reference that using “/test/form” as the formkey.
Is there a good way to go about this when using a shared ui like this to be able to access get/post from the bpm deployments, rather than the ui I am deployed on?
Due to networking I cannot directly reference a deployment controller mapping as the UI would not be able to resolve the dns.
I have plans to move to a custom thymeleaf task list but I do not believe that will fix the issue I have either.