cvc elt.1:找不到元素'beans'命名空间错误的声明

hlswsv35  于 2021-07-06  发布在  Java
关注(0)|答案(0)|浏览(166)

我正在尝试部署执行一个jar,将外部jar作为依赖项,并根据环境设置defaults.properties。我使用gradle创建了一个jar,并使用下面的任务添加了依赖项

task toJar(type: Jar) {
    zip64=true

    manifest {
        attributes  
                    'Main-Class': 'ThisIsMainClassName'
    }
    baseName = project.name + '-all'
    from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
    with jar
}

但是当我试图用
java-jar文件名
它给我一个名称空间错误,说下面的行有错误。

<?xml version="1.0" encoding="UTF-8"?>
<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:util="http://www.springframework.org/schema/util"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

我看了其他问题,但找不到答案。

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题