Open daberber opened 6 years ago
application.yml是配置文件。 那么resources: static-locations: 是配置静态源。 我把前台放到新的文件夹下。 static-locations: file:./web-ui/,file:./static/,/,classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/, classpath:/public/
开发模式下,run Application是可以访问到前台的。 但是mvn打包后,用java -jar 部署运行后。 无法访问前台。一直被拦截到http://localhost:8089/admin/index.html
请问是还需要配置什么? application-dev.yml 和 application.yml是什么关系呀?
把 web-ui 这个目录复制到 和jar的同目录。
web-ui
application-dev.yml参照 spring-boot的 多环境配置,就是用来切换环境的。
application.yml是配置文件。 那么resources: static-locations: 是配置静态源。 我把前台放到新的文件夹下。 static-locations: file:./web-ui/,file:./static/,/,classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/, classpath:/public/
开发模式下,run Application是可以访问到前台的。 但是mvn打包后,用java -jar 部署运行后。 无法访问前台。一直被拦截到http://localhost:8089/admin/index.html
请问是还需要配置什么? application-dev.yml 和 application.yml是什么关系呀?