问题很简单,但我花了两天时间尝试部署我的应用程序。到目前为止还没有。
我的风格有一个 css 文件,当我执行 jar 时,找不到 css (404) 或者 jar 不会打包。
如此处所述:Spring Boot 可执行 jar 结构 “如果您的应用程序将被打包为 jar,请不要使用 src/main/webapp 文件夹”和“您应该将静态资源放在 src/main/resources 中。”
所以把css放在这里:src/main/resources/styles.css
在 Vaadin 文档中(关于如何打包非常多……)我像这样导入 css:
@StyleSheet("styles.css")
来源:https ://vaadin.com/docs/v11/flow/importing-dependencies/tutorial-include-css.html
然后我打包我的项目:
mvn clean package -Pproduction
我收到此错误:
[ERROR] Failed to execute goal com.vaadin:vaadin-maven-plugin:11.0.0:package-for-production (default) on project importparcoursup: Execution default of goal com.vaadin:vaadin-maven-plugin:11.0.0:package-for-production failed: An import that ends with 'styles.css' cannot be resolved: the corresponding file 'C:\Workspace\lasteclipeandjava10\parcoursup\target\frontend\styles.css' was not found.
[ERROR] Double check the corresponding import and verify the following:
[ERROR] * the import string is correct
[ERROR] * the file imported is either present in 'frontend://' directory of the project or in one of the project WebJar dependencies or in one of the regular jar dependencies
[ERROR] * if the file is present in one of the regular jar dependencies, it should be located in `META-INF/resources/frontend` directory in the jar
有人可以提供一个简单的示例,将“springboot + Vaadin10”应用程序打包为一个带有静态资源的 jar 包吗?
我尝试了很多配置(将css放在META-INF中,在maven构建过程中包含webapp资源......)但是2天后,我仍然无法在服务器上部署我的应用程序!