快速业务通道

集成Java内容仓库和Spring - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-17
受字符数组,使用Spring工厂声明作为一 种变通。

JcrTemplate

JcrTemplate是JCR模块的核心类之一,它提供了与JCR会话一起工作的方便方 法,将调用者从必须处理的打开和关闭会话、事务回滚(如果底层仓库提供)、 以及处理其它特性中的异常等工作中解放出来:

<bean id="jcrTemplate" class="org.springmodules.jcr.JcrTemplate">    <property name="sessionFactory" ref="jcrSessionFactory"/>    <property name="allowCreate" value="true"/> </bean>

模板定义非常简单,类似来自Spring框架的其它模板类,如 HibernateTemplate。

集成Java内容仓库和Spring(5)

时间:2011-05-20 infoq Costin Leau 译:胡键

例子

既然仓库已经配置了,接下来看看“Spring化”的例子之一,它来自 Jackrabbit的wiki页:

public Node importFile(final Node folderNode, final File file, final String mimeType,    final String encoding) {   return (Node) execute(new JcrCallback() {    /**    * @see org.springmodules.jcr.JcrCallback#doInJcr (javax.jcr.Session)    */    public Object doInJcr(Session session) throws    RepositoryException, IOException {        JcrConstants jcrConstants = new JcrConstants(session);    //create the file node - see section 6.7.22.6 of the spec    Node fileNode = folderNode.addNode(file.getName(),              jcrConstants.getNT_FILE());    //create the mandatory child node - jcr:content    Node resNode = fileNode.addNode(jcrConstants.getJCR_CONTENT (),              jcrConstants.getNT_RESOURCE());      resNode.setProperty(jcrConstants.getJCR_MIMETYPE(), mimeType);      resNode.setProperty(jcrConstants.getJCR_ENCODING(), encoding);    resNode.setProperty(jcrConstants.getJCR_DATA(), new FileInputStream(file));    Calendar lastModified = Calendar.getInstance();    lastModified.setTimeInMillis (file.lastModified ());    resNode.setProperty(jcrConstants.getJCR_LASTMODIFIED(), lastModified);    session.save();    return resNode;    }   }); }

主要区别是:代码被包装在一个JCR模板中,它将我们从不得不使用的 try/catch语句块(因为IO和Repository的需检查异常)和处理会话(和事务,如 果有的话)清除工作中解放出来。值得提及的是硬编码字符串,如“jcr:data” ,是通过JcrConstants工具类解析出来的。它知道名字空间的前缀变化,并提供 一种干净的方式处理JCR常数。正如你看到的,我只是使例子更加健壮,但是对于 实际业务代码影响最小。

集成Java内容仓库和Spring(6)

时间:2011-05-20 infoq Costin Leau 译:胡键

事务支持

使用JCR模块的一个好处就是能将Spring事务基础设施(包括声明性和编程性 )应用于Java内容仓库。JSR 170将事务支持视为可选特性,并没有强制一个标准 的方式来暴露事务钩子,因此每个实现可以选择不同的方法。在本文撰写时,只 有Jackrabbit支持事务(在它的大部分操作中),它通过为每个JcrSession暴露 一个javax.transaction.XAResource做到这一点。JCR模块提供 LocalTransactionManager用于本地事务:

<bean id="jcrTransactionManager" class="org.springmodules.jcr.jackrabbit.LocalTransactionManager">   <property name=&

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号