Ai框架Spring Cloud Alibaba Ai引入maven依赖报错Unresolved dependency: ‘org.springframework.ai:spring-ai-core:

07-21 1287阅读

项目场景:

引入spring-cloud-alibaba-ai依赖找不到!

原始的Spring AI并没有国内相关大模型的接入,对国内开发者不太友好。

总的来说,Spring Cloud Alibaba AI 目前基于Spring AI 0.8.1版本 API 完成通义系列大模型的接入。

于是,根据官方文档进行一次尝鲜体验!


问题描述

maven依赖引入找不到问题

官方文档要求引入以下依赖:

    
        
            
                com.alibaba.cloud
                spring-cloud-alibaba-dependencies
                2023.0.1.0
                pom
                import
            
        
    
    
        
            com.alibaba.cloud
            spring-cloud-starter-alibaba-ai
        
    

提示:Could not find artifact org.springframework.ai:spring-ai-core:pom:0.8.1 in aliyunmaven...... 或者Unresolved dependency: 'org.springframework.ai:spring-ai-core:jar:0.8.1'


原因分析:

由于该0.8.1版本是测试版本或者早期版本,

尚未发布到 Maven Central Repository,您需要在 Maven 中另外配置 Repository 地址:https://docs.spring.io/spring-ai/reference/0.8-SNAPSHOT/getting-started.html#repositories

搜了一下spring-ai-core这个包,发现没有0.8.1的版本!

Ai框架Spring Cloud Alibaba Ai引入maven依赖报错Unresolved dependency: ‘org.springframework.ai:spring-ai-core:

容易疏忽的是官方示例代码的pom文件最后,引入了远程仓库,所以spring-ai-core这个包应该在这个仓库可以找到:

Ai框架Spring Cloud Alibaba Ai引入maven依赖报错Unresolved dependency: ‘org.springframework.ai:spring-ai-core:

解决方案:

1.在pom文件中加入远程仓库:

    
        
            spring-milestones
            Spring Milestones
            https://repo.spring.io/milestone
            
                false
            
        
        
            spring-snapshots
            Spring Snapshots
            https://repo.spring.io/snapshot
            
                false
            
        
    

2.如果maven配置了阿里云镜像,需要在maven配置文件中进行屏蔽配置:

请注意,您需要更改maven配置文件中的 * ,因为此配置会将所有 maven 依赖请求重定向到 aliyun maven 仓库。您需要将其更改为 *,!spring-milestones 以排除spring-snapshots。请注意: , 和 ! 之间没有空格!

Ai框架Spring Cloud Alibaba Ai引入maven依赖报错Unresolved dependency: ‘org.springframework.ai:spring-ai-core:

VPS购买请点击我

文章版权声明:除非注明,否则均为主机测评原创文章,转载或复制请以超链接形式并注明出处。

目录[+]