Spring Boot running java and web content on different ports in a single application -


is possible run static content , java related code on different ports?

i have spring boot project java code resides on src/main/java , web content on src/main/resources/static.

is there possibility run static content on port 8080 , java (rest controller) on 8081 ?

i don't want create separate project ui.


Comments

Popular posts from this blog

How to use SUM() in MySQL for calculated values -

loops - Spock: How to use test data with @Stepwise -