<?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" xmlns:hsf="http://www.taobao.com/hsf"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
http://www.taobao.com/hsf http://www.taobao.com/hsf/hsf.xsd">
<hsf:consumer id="fcAccountQueryService"
interface="com.aliexpress.finance.open.fcaccount.share.service.FcAccountQueryService"
version="1.0.0" group="DUBBO" />
</beans>
This is my xml file, but when I deploy, I got error Caused by: org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 6 in XML document from class path resource [biz/consumer/services/spring_fc_account_services.xml] is invalid; nested exception is org.xml.sax.SAXParseException: Invalid byte 2 of 2-byte UTF-8 sequence.
. Why?
And the other xml line 6 is
<beans>
<import resource="/consumer/services/spring_fc_account_services.xml" />
</beans>