I have a spring-boot web application running as a war file on tomcat using JSP's for templates.
If I try to output the UUID in my JSP using something like ${myObject.id} it displays the UUID.
Other things are working properly. If I put the converted UUID in the URL it gets converted. If I use the Spring Form tags using something like <form:input path="id" type="hidden"/> it gets converted to a friendly ID and when posting the form
I created a tag to do the conversion but was wondering if there was a better way?