JackRabbit随笔

来源:互联网 发布:ps aux grep nginx 编辑:程序博客网 时间:2024/05/17 23:22
Node parentNode = session.getNodeByIdentifier(parentId);Node childNode = parentNode.addNode(name);childNode.setProperty("name", name);childNode.setProperty("themeIntroduction", themeIntroduction);childNode.setProperty("type", type);childNode.addMixin(NodeType.MIX_REFERENCEABLE);session.save();

根据property获取的时候

Node themeNode = session.getNodeByIdentifier(identifier);String name = themeNode.getName();String desc = themeNode.getProperty("themeIntroduction").getString();


0 0