其他分享
首页 > 其他分享> > 具有Spring和Thymleaf自己的UI的微服务

具有Spring和Thymleaf自己的UI的微服务

作者:互联网

我有三个Web应用程序微服务和一个包含UI的网关.因此,我想做的就是更改应用程序,使每个微服务都有自己的UI,并且网关应使服务器端包括在内.我使用Thymeleaf作为模板引擎,并执行以下操作:

< div th:replace =“ http:// localhost:8080 /#/ organizations”>< / div>

我的问题是原始的localhost:8080服务器不包含CSS和JS文件,而是包含内容localhost:9090的服务器不包含CSS和JS文件.

这就是我在*:8080包含JS和CSS文件的方式:

< script th:src =“ @ {webjars / jquery / $jquery.version $/ jquery.min.js}”“< / script>

希望您理解我的问题,有人可以帮助您…

解决方法:

这个${#httpServletRequest.requestURL}起到了作用…

< link th:href =“ @ {__ ${#httpServletRequest.requestURL} __ webjars / bootstrap /?{bootstrap.version} /css/bootstrap.min.css}” rel =“ stylesheet” />

现在一切正常.

标签:ssi,thymeleaf,microservices,spring
来源: https://codeday.me/bug/20191119/2032458.html