spring.cache-xqj-context.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bagri-server-hazelcast Show documentation
Show all versions of bagri-server-hazelcast Show documentation
Bagri DB Cache: Hazelcast implementation
The newest version!
<?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.xsd"> <import resource="file:${bdb.config.path}/spring/cache-schema-context.xml" /> <!-- Beans Declaration --> <context:property-placeholder ignore-unresolvable="true" location="file:${bdb.config.path}/${bdb.config.properties.file}" /> <context:annotation-config /> <bean id="xqFactory" class="com.bagri.xqj.BagriXQDataFactory"> <property name="processor" ref="xqProcessor" /> </bean> <bean id="xqProcessor" class="com.bagri.xquery.saxon.XQProcessorServer" lazy-init="true" scope="prototype"> <property name="XQDataFactory" ref="xqFactory" /> <property name="properties"> <props> <prop key="xqj.schema.baseUri">${xqj.schema.baseUri}</prop> <prop key="xqj.schema.constructionMode">${xqj.schema.constructionMode}</prop> <prop key="xqj.schema.defaultCollationUri">${xqj.schema.defaultCollationUri}</prop> <prop key="xqj.schema.defaultElementTypeNamespace">${xqj.schema.defaultElementTypeNamespace}</prop> <prop key="xqj.schema.defaultFunctionNamespace">${xqj.schema.defaultFunctionNamespace}</prop> <prop key="xqj.schema.orderingMode">${xqj.schema.orderingMode}</prop> <prop key="xqj.schema.defaultOrderForEmptySequences">${xqj.schema.defaultOrderForEmptySequences}</prop> <prop key="xqj.schema.boundarySpacePolicy">${xqj.schema.boundarySpacePolicy}</prop> <prop key="xqj.schema.copyNamespacesModePreserve">${xqj.schema.copyNamespacesModePreserve}</prop> <prop key="xqj.schema.copyNamespacesModeInherit">${xqj.schema.copyNamespacesModeInherit}</prop> <prop key="xqj.schema.bindingMode">${xqj.schema.bindingMode}</prop> <prop key="xqj.schema.queryLanguageTypeAndVersion">${xqj.schema.queryLanguageTypeAndVersion}</prop> <prop key="xqj.schema.holdability">${xqj.schema.holdability}</prop> <prop key="xqj.schema.scrollability">${xqj.schema.scrollability}</prop> <prop key="xqj.schema.queryTimeout">${xqj.schema.queryTimeout}</prop> <!--prop key="xqj.schema.defaultNamespaces">${xqj.schema.defaultNamespaces}</prop--> </props> </property> </bean> </beans>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy