gpt4 book ai didi

java - 我怎样才能使spring.xml的xsi :schemaLocation work when my app is offline (finished product is an offline artifact)

转载 作者:行者123 更新时间:2023-12-01 11:05:49 28 4
gpt4 key购买 nike

我有一个只能离线工作的应用程序,但由于项目的设置方式,它需要互联网连接启动。我知道问题出在 spring.xml 中的 xsi:schemaLocation 属性,但对 Spring 不太了解,不知道如何设置一个指向本地架构的项目。

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mongo="http://www.springframework.org/schema/data/mongo"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://www.springframework.org/schema/data/mongo http://www.springframework.org/schema/data/mongo/spring-mongo-1.5.xsd">

有人有这方面的经验吗?

最佳答案

如果您省略架构中的版本号,它们将从 jar 文件中加载,因此

xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/data/mongo http://www.springframework.org/schema/data/mongo/spring-mongo.xsd

在 Spring jar 发布之前,版本会被剥离,并且 schema 会与 jar 一起打包。在没有版本的情况下使用模式甚至是一个很好的做法,因为它可能会提前指出类路径/版本不匹配

关于java - 我怎样才能使spring.xml的xsi :schemaLocation work when my app is offline (finished product is an offline artifact),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32966049/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com