作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 spring-web 项目。但它不是一个 spring-boot 项目。当我运行该项目时,出现错误:No qualifying bean of type org.springframework.boot.info.BuildProperties
。我该如何解决?
最佳答案
看看将以下内容添加到您的 pom.xml(假设它是一个 Maven 项目)是否有帮助。
<build>
<finalName>{NAME_YOUR_PROJECT}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>build-info</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
关于spring-boot - 获取错误 : No qualifying bean of type org. springframework.boot.info.BuildProperties,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67150784/
我是一名优秀的程序员,十分优秀!