web-dev-qa-db-fra.com

aucune déclaration ne peut être trouvée pour l'élément 'context: annotation-config'

au printemps chaque fois que j'écris <context:annotation-config/> dans mon spring.xml j'obtiens cette erreur: -

Exception dans le fil "principal" org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: la ligne 81 du document XML de la ressource de chemin de classe [spring.xml] n'est pas valide; exception imbriquée est org.xml.sax.SAXParseException; numéro de ligne: 81; numéro de colonne: 30; cvc-complex-type.2.4.c: le caractère générique correspondant est strict, mais aucune déclaration ne peut être trouvée pour l'élément 'context: annotation-config'.

Et le contenu de mon spring.xml est

<?xml version="1.0" encoding="UTF-8"?>

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

<bean id="circle" class="com.mysite.Circle">
</bean>

 ...

<context:annotation-config/>

Quelqu'un voudrait-il me dire où je me trompe?

22
sasuke

Vous utilisez un espace de noms XML (dans ce contexte) sans le déclarer

Changez votre xml en ceci: 

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

Vous faisiez également référence http://www.springframework.org/schema/beans/spring-beans-4.0.xsd , ce qui, à mon avis, n'existe pas.

41
Frederic Close

Si vous utilisez Spring 4.0, voici ce que j'ai trouvé:

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

Cela a fonctionné pour moi. Trouvez la référence ici: http://javahash.com/spring-4-mvc-hello-world-tutorial-full-example/

4
haileymow

Attention: lorsque vous utilisez l'espace de noms context, vous devez effectuer la mise à jour au format XML head2attributs: 

  • xmlns:context 
  • xsi:schemaLocation

Les débutants n’utilisaient que xmlns:context et oubliaient 2 nouvelles entrées pour xsi:schemaLocation:

<beans xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
                    http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
                    http://www.springframework.org/schema/context 
                    http://www.springframework.org/schema/context/spring-context-4.0.xsd"
......
>
3
radistao

Ajoutez ces lignes dans votre fichier XML.

<xmlns:context="http://www.springframework.org/schema/context"

Et

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

.

0
Yash