Я работаю с Spring 3.0.5 и пытаюсь прочитать файл конфигурации через элемент контекста:
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop" 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 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd"> <context:property-placeholder location="classpath:db_config.properties"/>
Когда приложение запускается, я получаю следующую ошибку:
Ресурс-нарушитель: ресурс ServletContext [/WEB-INF/spring/applicationContext.xml];вложенное исключение: org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: строка 20 в XML-документе из ресурса ServletContext [/WEB-INF/spring/db-config.xml] недопустима;вложенное исключение: org.xml.sax.SAXParseException: префикс «context» для элемента «context: property-placeholder» не связан.
Что я делаю не так?
Вы не определили, что такое "контекст".
Вам нужно добавить xmlns:context="http://www.springframework.org/schema/context"
xmlns:context="http://www.springframework.org/schema/context"
Измените конфигурацию вашего bean-компонента в applicationContext.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:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> </beans>