我的目标是将xml文件的sessionFactory部分重写为与xml文件中所有其他区域相同的格式。我需要使用p命名空间来使事物看起来一致和整洁。我遇到的问题是使用util / p命名空间。
感谢您让我编辑此帖子。这是我的整个xml文件:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:jee="http://www.springframework.org/schema/jee"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-2.5.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
<!-- DataSource Beans -->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close"
p:url="jdbc:hsqldb:file:database.dat;shutdown=true"
p:driverClassName="org.hsqldb.jdbcDriver"
p:username="sa"
p:password="" />
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="mappingResources">
<list>
<value>/com/bookstore/domain/Book.hbm.xml</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.HSQLDialect</prop>
<prop key="hibernate.hbm2ddl.auto">update</prop>
</props>
</property>
</bean>
<!-- Template Beans -->
<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate"
p:dataSource-ref="dataSource" />
<bean id="hibernateTemplate" class="org.springframework.orm.hibernate3.HibernateTemplate"
p:sessionFactory-ref="sessionFactory" />
<!-- DAO Beans -->
<bean id="bookDao" class="com.bookstore.data.BookDao"
p:hibernateTemplate-ref="hibernateTemplate" />
<bean id="accountDao" class="com.bookstore.data.AccountDao"
init-method="createTable"
p:jdbcTemplate-ref="jdbcTemplate" />
<!-- Service Beans -->
<bean id="bookService" class="com.bookstore.services.BookService"
p:bookDao-ref="bookDao" />
<bean id="purchasingService" class="com.bookstore.services.PurchasingService"
p:bookServiceInterface-ref="bookService"
p:accountServiceInterface-ref="accountService" ></bean>
<bean id="accountService" class="com.bookstore.services.AccountService"
p:accountDao-ref="accountDao" />
<!-- AOP Advice Beans -->
<bean id="loggingAdvice" class="com.bookstore.advice.LoggingAdvice" />
<bean id="performanceTimingAdvice" class="com.bookstore.advice.PerformanceTimingAdvice" />
<!-- Auto Proxy -->
<aop:aspectj-autoproxy />
</beans>
这是我到目前为止 - 使用util:list和util:properties:
的组合<util:list id="mappingResourcesList">
<value>/com/bookstore/domain/Book.hbm.xml</value>
</util:list>
<util:properties id="hibernatePropertiesProps">
<prop key="hibernate.dialect">org.hibernate.dialect.HSQLDialect</prop>
<prop key="hibernate.hbm2ddl.auto">update</prop>
</util:properties>
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"
p:dataSource-ref="dataSource"
p:mappingResources-ref="mappingResourcesList"
p:hibernateProperties-ref="hibernatePropertiesProps" />
我目前收到的错误消息属于util:列表,但我同样怀疑我的util:属性:
Exception in thread "main" org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException:
Line 22 in XML document from class path resource [application.xml] is invalid;
nested exception is org.xml.sax.SAXParseException: cvc-complex-type.2.4.c:
The matching wildcard is strict, but no declaration can be found for element 'util:list'.
我的util:list和util:属性的哪一部分必须更改才能使其工作?
答案 0 :(得分:35)
p
和util
映射到哪些XML命名空间?这些需要在XML元素中的某个地方使用xmlns:p="..."
和xmlns:util="..."
声明,或者使用它们的父元素。
(您收到的错误并非特定于SAX,但对于XML解析是通用的。)
例如,对于使用util
,您的XML应以以下内容开头:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd">
对于p
,您还需要添加:
xmlns:p="http://www.springframework.org/schema/p"
请注意,您无需使用p:
和util:
。这些只是按惯例使用。您可以重写XML以在任何地方使用a:
和b:
- 只要它们被定义为映射到相同的XML命名空间即可。 (这就是他们需要定义的原因。)
答案 1 :(得分:2)
xsi:schemaLocation中缺少以下条目: http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd
将它们放入XML中,你应该很好。