Is it possible to run static content and java related code on different ports?
I have a spring boot project where my java code resides on src/main/java
and
web content on src/main/resources/static
.
Is there a possibility to run static content on port like 8080 and java (rest controller) on 8081 ?
I don't want to create a separate project for UI.