spring castor

Castor是一个开源的Java项目。其主要目标是在XML数据、Java对象和数据库关系数据之间提供一种直接的映射,使得这三种对象数据可以相互之间自由转换。

<bean id="resolver" class="org.springframework.xml.castor.CastorResolverFactoryBean"/>

<bean id="marshaller"
      class="org.springframework.xml.castor.CastorMarshallerFactoryBean">
   <property name="resolver"><ref local="resolver"/></property>
</bean>

<bean id="unmarshaller"      class="org.springframework.xml.castor.CastorUnmarshallerFactoryBean">
   <property name="resolver"><ref local="resolver"/></property>
</bean>
http://www.castor.org/spring-xml-intro.html

你可能感兴趣的:(java,spring,html,bean,xml)