2017-06-14 91 views
0

我想写一些简单的控制器。现在我有一个我无法理解的问题。请帮帮我。HTTP状态500 - 无法找到元素'豆'的声明

的pom.xml:

<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"> 
<modelVersion>4.0.0</modelVersion> 
<groupId>Diplom</groupId> 
<artifactId>Diplom</artifactId> 
<version>0.0.1-SNAPSHOT</version> 
<packaging>war</packaging> 
<properties> 
    <java-version>1.6</java-version> 
    <org.springframework-version>4.1.5.RELEASE</org.springframework-version> 
    <org.aspectj-version>1.7.4</org.aspectj-version> 
    <org.slf4j-version>1.7.5</org.slf4j-version> 
    <hibernate.version>4.3.5.Final</hibernate.version> 
    <mysql.version>5.1.29</mysql.version> 
</properties> 

<dependencies> 
    <dependency> 
     <groupId>org.springframework</groupId> 
     <artifactId>spring-context</artifactId> 
     <version>4.1.8.RELEASE</version> 
    </dependency> 
    <dependency> 
     <groupId>org.springframework</groupId> 
     <artifactId>spring-webmvc</artifactId> 
     <version>4.1.8.RELEASE</version> 
    </dependency> 
    <dependency> 
     <groupId>mysql</groupId> 
     <artifactId>mysql-connector-java</artifactId> 
     <version>5.1.36</version> 
    </dependency> 
    <dependency> 
     <groupId>javax.servlet</groupId> 
     <artifactId>jstl</artifactId> 
     <version>1.2</version> 
    </dependency> 
    <dependency> 
     <groupId>org.hibernate</groupId> 
     <artifactId>hibernate-core</artifactId> 
     <version>${hibernate.version}</version> 
    </dependency> 
    <dependency> 
     <groupId>org.hibernate</groupId> 
     <artifactId>hibernate-entitymanager</artifactId> 
     <version>${hibernate.version}</version> 
    </dependency> 
</dependencies> 

<build> 
    <plugins> 
     <plugin> 
      <groupId>org.apache.maven.plugins</groupId> 
      <artifactId>maven-compiler-plugin</artifactId> 
      <version>2.5.1</version> 
      <configuration> 
       <source>1.6</source> 
       <target>1.6</target> 
      </configuration> 
     </plugin> 

     <plugin> 
      <groupId>org.apache.maven.plugins</groupId> 
      <artifactId>maven-war-plugin</artifactId> 
      <version>2.1.1</version> 
      <configuration> 
       <failOnMissingWebXml>false</failOnMissingWebXml> 
      </configuration> 
     </plugin> 
    </plugins> 
</build> 
<name>Diplom</name> 
<description>Firth big project! :)</description> 

的web.xml:

<?xml version="1.0" encoding="UTF-8"?> 
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xmlns="http://java.sun.com/xml/ns/javaee" 
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" 
version="3.0"> 
<servlet> 
    <servlet-name>myServlet</servlet-name> 
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> 
    <init-param> 
     <param-name>contextConfigLocation</param-name> 
     <param-value>/WEB-INF/myServlet-servlet.xml</param-value> 
    </init-param> 
</servlet> 
<servlet-mapping> 
    <servlet-name>myServlet</servlet-name> 
    <url-pattern>/</url-pattern> 
</servlet-mapping> 
</web-app>` 

myServlet-servlet.xml中:

<beans xmlns="http:/www.springframework.org/schema/beans" 
xmlns:ctx="http://www.springframework.org/schema/context" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xmlns:mvc="http://www.springframework.org/schema/mvc" 
xsi:schemaLocation="http://www.springframework.org/schema/beans  
http://www.springframework.org/schema/beans/spring-beans.xsd  
http://www.springframework.org/schema/mvc  
http://www.springframework.org/schema/mvc/spring-mvc.xsd 
    http://www.springframework.org/schema/context  
http://www.springframework.org/schema/context/spring-context.xsd "> 
    <ctx:annotation-config> 
    </ctx:annotation-config> 
    <ctx:component-scan base-package="controllers"> 
    </ctx:component-scan> 
</beans> 

Exeption的文字:

org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 
7 in XML document from ServletContext resource [/WEB-INF/myServlet- 
servlet.xml] is invalid; nested exception is org.xml.sax.SAXParseException; 
lineNumber: 7; columnNumber: 59; cvc-elt.1: Cannot find the declaration of 
element 'beans'. 

我试图删除“7系”但后来我对“6号线”异常= d 请帮助我了解什么是错的

+0

提供您完整的包名嘿,看来这是因为缺少'/'HTTP后'的:'在第一行'<豆的xmlns =“HTTP:/www.springframework.org /模式/豆“'。您是否尝试添加架构的正确URL? –

+0

哦... 谢谢你!你是我的英雄! = D – BruceVVayne

+0

此外,您可能不需要那里的结束标记,请参阅下面的答案。 –

回答

0

您可能需要将spring-beans依赖添加到您的Maven 。

<dependency> 
    <groupId>org.springframework</groupId> 
    <artifactId>spring-beans</artifactId> 
    <version>4.1.8.RELEASE</version> 
</dependency> 
+0

没有帮助 并没有尝试添加“指定版本”(和此组合) – BruceVVayne

0

你需要指定春天的版本使用的是在你的servlet配置 - 你的情况弹簧豆-4.1.xsd

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

没有帮助 并没有尝试添加“依赖于maven”(和这个组合) – BruceVVayne

0

可以请你下面的尝试servlet xml?在此我删除了结束标记,而不是将它们用作<context:annotation-config /><context:component-scan />。也请在component-scan

<?xml version="1.0" encoding="UTF-8"?> 
<beans xmlns="http://www.springframework.org/schema/beans" 
    xmlns:context="http://www.springframework.org/schema/context" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:mvc="http://www.springframework.org/schema/mvc" 

    xsi:schemaLocation=" 
     http://www.springframework.org/schema/beans  
     http://www.springframework.org/schema/beans/spring-beans.xsd 
     http://www.springframework.org/schema/mvc 
     http://www.springframework.org/schema/mvc/spring-mvc.xsd 
     http://www.springframework.org/schema/context 
     http://www.springframework.org/schema/context/spring-context.xsd"> 
    <context:annotation-config /> 
    <context:component-scan base-package="controllers" /> 
</beans> 
相关问题