0%

用过 Spring Boot 的都知道在 Spring Boot 中有以下两种配置文件

  • bootstrap (.yml 或者 .properties)
  • application (.yml 或者 .properties)

为什么会有这两种配置文件呢?大家都清楚它们的区别和具体使用场景吗?

阅读全文 »

使用Maven编译项目时遇到如下错误:

1
2
[ERROR]   The project dfjr.generic:dfjr-generic:1.0-SNAPSHOT (F:\workspace\DFJR-PERSONNEL\dfjr-generic\pom.xml) has 1 error
[ERROR] Non-resolvable parent POM: Could not find artifact com.dfjr.generic:dfjr-generic-parent:pom:1.0-SNAPSHOT and 'parent.relativePath' points at wrong local POM @ line 12, column 13 -> [Help 2]

由提示可知是parent.relativePath出错。解决办法如下:

1
2
3
4
5
6
<parent>
<groupId>cn.joinhealth</groupId>
<artifactId>followup-job</artifactId>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>