无法获取我的bean XML配置文件的c-namespace和p-namespace

时间:2019-05-24 07:40:46

标签: xml spring configuration

我最近开始了一些春季教程。当我尝试在我的XML配置文件中添加c-namespace和p-namespace并从外部资源获取它时,出现错误。

我试图去到应该在哪里的链接,但是我得到404,在其他地方找不到它可以将其包含在本地文件中。我没有找到有关迁移或其他任何信息。

我的XML:

<?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:c="http://www.springframework.org/schema/c"
  xmlns:p="http://www.springframework.org/schema/p"
  xsi:schemaLocation="http://www.springframework.org/schema/beans
   http://www.springframework.org/schema/beans/spring-beans.xsd">

</beans>

我的pom:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <parent>
    <artifactId>Spring</artifactId>
    <groupId>drusil</groupId>
    <version>1.0-SNAPSHOT</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>

  <artifactId>InsideBeans</artifactId>

  <dependencies>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-context</artifactId>
      <version>5.1.7.RELEASE</version>
    </dependency>
  </dependencies>


</project>

0 个答案:

没有答案