I\'ve got problems migrating a war application to a spring boot jar application.
I\'m using spring boot 1.4.1 and swagger 2.6.0.
To customize swagger ui in a war
Solution if you are using maven:
You should copy swagger-ui.html into src/main/webapp
swagger-ui.html
src/main/webapp
Make your editions or replace screen.css by your theme.css
screen.css
theme.css
Than add these code into your pom.xml:
pom.xml
org.apache.maven.plugins maven-war-plugin ${basedir}/src/main/webapp true *.css *.html