对于从Spring 4.1.7到Spring Boot 2.2.1的部分,我在父项目中添加了spring-boot-starter-parent
,如下所示。
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.1.RELEASE</version>
<relativePath/>
</parent>
当我尝试构建父子项目时,出现错误
Missing artifact com.microsoft.sqlserver:sqljdbc4:jar:4.0
.m2文件夹结构
我也参考以下链接 stackoverflow
如何解决此问题。
答案 0 :(得分:0)
我必须删除C:/Users/Administrator/.m2/repository/com/microsoft/sqlserver/sqljdbc4/4.0
文件夹,然后重建项目。现在它对我来说很好用。