Конфигурация Xml Spring: невозможно найти springframework.org/schema/security - PullRequest
0 голосов
/ 11 июня 2018

У меня есть конфигурация xml, и когда я пытаюсь импортировать пространство имен Spring-Security, он дает мне 2 варианта: springframework.org/schema/p и springframework.org/schema/c.Что мне нужно, это: http://www.springframework.org/schema/security (который не может быть найден).Это весенний загрузочный проект, и мне нужно настроить безопасность с помощью xml.Я думаю, что мне не хватает некоторой зависимости, но я не уверен, какая именно.

Это XML-файл конфигурации:

<beans xmlns="http://www.springframework.org/schema/beans"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns:aop="http://www.springframework.org/schema/aop"

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

    http://www.springframework.org/schema/security
    http://www.springframework.org/schema/security/spring-security.xsd">

И зависимости build.gradle:

dependencies {
  compile('org.springframework.boot:spring-boot-starter-aop')
  compile('org.springframework.boot:spring-boot-starter-data-jpa')
  compile('org.springframework.boot:spring-boot-starter-security')
  compile('org.springframework.boot:spring-boot-starter-web')
  runtime('org.postgresql:postgresql')
  testCompile('org.springframework.boot:spring-boot-starter-test')
  testCompile('org.springframework.security:spring-security-test')
  compile group: 'org.springframework', name: 'spring-jdbc', version: '5.0.6.RELEASE'
  compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.11.0' 
  compile group: 'org.springframework.security', name: 'spring-security-config', version: '5.0.5.RELEASE'
}

1 Ответ

0 голосов
/ 11 июня 2018

Вам не хватает ссылки на пространство имен весенней безопасности в верхней части вашего xml-файла, и у вас есть дополнительная цитата в ссылках схемы в нижней части.Попробуйте добавить следующее в xml-файл точно так, как показано ниже:

<beans xmlns="http://www.springframework.org/schema/beans"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns:aop="http://www.springframework.org/schema/aop"
   xmlns:security="http://www.springframework.org/schema/security"

   xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/aop
    http://www.springframework.org/schema/aop/spring-aop.xsd
    http://www.springframework.org/schema/security
    http://www.springframework.org/schema/security/spring-security.xsd">    
</beans>
...